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
listlengths
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
listlengths
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
listlengths
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
4078c4499453a3efc73c41617d322f80482c4509
2,323
py
Python
changeling/pathfinder.py
trashtatur/wonderdraft-profile-manager
80f9e74781b4c890d41e2d14fa915ee683584b68
[ "MIT" ]
3
2020-04-13T04:44:39.000Z
2021-06-06T18:24:59.000Z
changeling/pathfinder.py
trashtatur/wonderdraft-profile-manager
80f9e74781b4c890d41e2d14fa915ee683584b68
[ "MIT" ]
null
null
null
changeling/pathfinder.py
trashtatur/wonderdraft-profile-manager
80f9e74781b4c890d41e2d14fa915ee683584b68
[ "MIT" ]
null
null
null
import os from changeling.file_interactions.YMLConfigReader import YMLConfigReader from changeling.init import Initial class Pathfinder: @staticmethod def get_profile_directory(): return Initial.CHANGELING_PROFILES_PATH @staticmethod def __appdata_path(): return os.getenv('APPDATA') @staticmethod def get_wonderdraft_userfolder(): return os.path.join(Pathfinder.__appdata_path(), 'Wonderdraft') @staticmethod def get_wonderdraft_asset_folder(): return os.path.join(Pathfinder.get_wonderdraft_userfolder(), 'assets') @staticmethod def get_wonderdraft_themes_folder(): return os.path.join(Pathfinder.get_wonderdraft_userfolder(), 'themes') @staticmethod def get_wonderdraft_brushes_folder(): return os.path.join(Pathfinder.get_wonderdraft_userfolder(), 'brushes') @staticmethod def get_deactivated_assets_folder_path(): return os.path.join( Pathfinder.get_wonderdraft_userfolder(), YMLConfigReader.get_changeling_manager_directory_name(), YMLConfigReader.get_deactivated_assets_folder_name() ) @staticmethod def get_deactivated_brushes_folder_path(): return os.path.join( Pathfinder.get_wonderdraft_userfolder(), YMLConfigReader.get_changeling_manager_directory_name(), YMLConfigReader.get_deactivated_brushes_folder_name() ) @staticmethod def get_deactivated_themes_folder_path(): return os.path.join( Pathfinder.get_wonderdraft_userfolder(), YMLConfigReader.get_changeling_manager_directory_name(), YMLConfigReader.get_deactivated_themes_folder_name() ) @staticmethod def get_logger_directory_path(): return os.path.join( Pathfinder.get_wonderdraft_userfolder(), YMLConfigReader.get_changeling_manager_directory_name(), YMLConfigReader.get_logger_directory_name() ) @staticmethod def get_changeling_manager_directory_path(): return os.path.join( Pathfinder.get_wonderdraft_userfolder(), YMLConfigReader.get_changeling_manager_directory_name(), )
30.973333
80
0.68489
1e4614742e3f6cd580666ffad5116e9b25c77e0a
4,524
swift
Swift
Team UI/Browser/Browser/SettingsModel.swift
SECH-Tag-EEXCESS-Browser/closed---iOSX-App---
3a64a707978a238715cfcd48058b2c594748f67b
[ "MIT" ]
2
2015-12-17T17:26:46.000Z
2016-01-03T22:53:28.000Z
Team UI/Browser/Browser/SettingsModel.swift
SECH-Tag-EEXCESS-Browser/closed---iOSX-App---
3a64a707978a238715cfcd48058b2c594748f67b
[ "MIT" ]
30
2015-10-23T07:25:48.000Z
2016-01-22T21:10:13.000Z
Team UI/Browser/Browser/SettingsModel.swift
SECH-Tag-EEXCESS-Browser/closed---iOSX-App---
3a64a707978a238715cfcd48058b2c594748f67b
[ "MIT" ]
null
null
null
// // SettingsModel.swift // Browser // // Created by Andreas Ziemer on 13.11.15. // Copyright © 2015 SECH-Tag-EEXCESS-Browser. All rights reserved. // import Foundation class SettingsModel : NSObject, NSCoding{ var homeURL: String //Sech-Daten var age: Int var gender: String var city: String var country: String var language: String init(homeURL:String, age:Int, gender: String, city: String, country: String, language: String){ self.homeURL = homeURL self.age = age self.gender = gender self.city = city self.country = country self.language = language } override init(){ self.homeURL = "http://sech-browser.de/" self.age = 0 self.gender = "Geschlecht" self.city = "Stadt" self.country = "Land" self.language = "Sprache" } required init(coder aCoder:NSCoder){ homeURL = aCoder.decodeObjectForKey("homeURL") as! String age = aCoder.decodeObjectForKey("age") as! Int gender = aCoder.decodeObjectForKey("gender") as! String city = aCoder.decodeObjectForKey("city") as! String country = aCoder.decodeObjectForKey("country") as! String language = aCoder.decodeObjectForKey("language") as! String } func encodeWithCoder(aCoder:NSCoder){ aCoder.encodeObject(homeURL, forKey:"homeURL") aCoder.encodeObject(age, forKey:"age") aCoder.encodeObject(gender, forKey:"gender") aCoder.encodeObject(city, forKey:"city") aCoder.encodeObject(country, forKey:"country") aCoder.encodeObject(language, forKey:"language") } } extension SettingsModel { var extHome : String { get { return homeURL } set(newURL) { homeURL = newURL } } var extAge : Int { get { return age } set(newAge){ age = newAge } } var extGender : String { get { return gender } set(newGender) { gender = newGender } } var extCity : String{ get { return city } set(newCity) { city = newCity } } var extCountry : String { get { return country } set(newCountry){ country = newCountry } } var extLanguage : String { get { return language } set(newLanguage) { language = newLanguage } } } class SettingsPersistency { private let fileName = "settings.plist" private let dataKey = "SettingsObj" func loadDataObject()-> SettingsModel { var item : SettingsModel! let file = dataFileForName(fileName) if(!NSFileManager.defaultManager().fileExistsAtPath(file)){ return SettingsModel() } if let data = NSData(contentsOfFile: file){ let unarchiver = NSKeyedUnarchiver(forReadingWithData: data) item = unarchiver.decodeObjectForKey(dataKey) as! SettingsModel unarchiver.finishDecoding() } return item } func saveDataObject(items: SettingsModel){ let file = dataFileForName(fileName) let data = NSMutableData() let archiver = NSKeyedArchiver(forWritingWithMutableData: data) archiver.encodeObject(items, forKey: dataKey) archiver.finishEncoding() data.writeToFile(file, atomically: true) } private func documentPath() -> String{ let allPathes = NSSearchPathForDirectoriesInDomains(.DocumentDirectory, .UserDomainMask, true) return allPathes[0] } private func tmpPath() -> String{ return NSTemporaryDirectory() } private func dataFileForName(fileName:String)->String { return (documentPath() as NSString).stringByAppendingPathComponent(fileName) } private func tmpFileForName(fileName:String)->String { return (tmpPath() as NSString).stringByAppendingPathComponent(fileName) } } //<Settings.bundle> ---------------------------------------------------------------------------------------- class SettingsManager { func getPreferencesValues(){ let a = NSUserDefaults.standardUserDefaults().floatForKey("slider_preference") print("slider_preference: \(a)") } }
25.133333
108
0.577144
282c21e9af88e1c316e4fb2db3ee1b9ab917d288
6,734
go
Go
pkg/controller/cluster.go
schrodit/gardener-extensions
cd9b0f57ebc5e084b90f1833bd03d48a488ba1ee
[ "Apache-2.0" ]
null
null
null
pkg/controller/cluster.go
schrodit/gardener-extensions
cd9b0f57ebc5e084b90f1833bd03d48a488ba1ee
[ "Apache-2.0" ]
null
null
null
pkg/controller/cluster.go
schrodit/gardener-extensions
cd9b0f57ebc5e084b90f1833bd03d48a488ba1ee
[ "Apache-2.0" ]
null
null
null
// Copyright (c) 2019 SAP SE or an SAP affiliate company. All rights reserved. This file is licensed under the Apache Software License, v. 2 except as noted otherwise in the LICENSE file // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. package controller import ( "context" gardencorev1alpha1 "github.com/gardener/gardener/pkg/apis/core/v1alpha1" extensionsv1alpha1 "github.com/gardener/gardener/pkg/apis/extensions/v1alpha1" gardenv1beta1 "github.com/gardener/gardener/pkg/apis/garden/v1beta1" kutil "github.com/gardener/gardener/pkg/utils/kubernetes" "k8s.io/apimachinery/pkg/runtime" "k8s.io/apimachinery/pkg/runtime/serializer" "sigs.k8s.io/controller-runtime/pkg/client" ) // Cluster contains the decoded resources of Gardener's extension Cluster resource. // TODO: Remove `gardenv1beta1` after one release. type Cluster struct { CloudProfile *gardenv1beta1.CloudProfile Seed *gardenv1beta1.Seed Shoot *gardenv1beta1.Shoot CoreCloudProfile *gardencorev1alpha1.CloudProfile CoreSeed *gardencorev1alpha1.Seed CoreShoot *gardencorev1alpha1.Shoot } // GetCluster tries to read Gardener's Cluster extension resource in the given namespace. func GetCluster(ctx context.Context, c client.Client, namespace string) (*Cluster, error) { cluster := &extensionsv1alpha1.Cluster{} if err := c.Get(ctx, kutil.Key(namespace), cluster); err != nil { return nil, err } decoder, err := NewGardenDecoder() if err != nil { return nil, err } cloudProfile, err := CloudProfileFromCluster(decoder, cluster) if err != nil { return nil, err } seed, err := SeedFromCluster(decoder, cluster) if err != nil { return nil, err } shoot, err := ShootFromCluster(decoder, cluster) if err != nil { return nil, err } coreCloudProfile, err := CoreCloudProfileFromCluster(decoder, cluster) if err != nil { return nil, err } coreSeed, err := CoreSeedFromCluster(decoder, cluster) if err != nil { return nil, err } coreShoot, err := CoreShootFromCluster(decoder, cluster) if err != nil { return nil, err } return &Cluster{cloudProfile, seed, shoot, coreCloudProfile, coreSeed, coreShoot}, nil } // CloudProfileFromCluster returns the CloudProfile resource inside the Cluster resource. func CloudProfileFromCluster(decoder runtime.Decoder, cluster *extensionsv1alpha1.Cluster) (*gardenv1beta1.CloudProfile, error) { cloudProfile := &gardenv1beta1.CloudProfile{} if cluster.Spec.CloudProfile.Raw == nil { return nil, nil } if _, _, err := decoder.Decode(cluster.Spec.CloudProfile.Raw, nil, cloudProfile); err != nil { // If cluster.Spec.CloudProfile.Raw is not of type gardenv1beta1.CloudProfile then it is probably // of type gardencorev1alpha1.CloudProfile. We don't want to return an error in this case. return nil, nil } return cloudProfile, nil } // SeedFromCluster returns the Seed resource inside the Cluster resource. func SeedFromCluster(decoder runtime.Decoder, cluster *extensionsv1alpha1.Cluster) (*gardenv1beta1.Seed, error) { seed := &gardenv1beta1.Seed{} if cluster.Spec.Seed.Raw == nil { return nil, nil } if _, _, err := decoder.Decode(cluster.Spec.Seed.Raw, nil, seed); err != nil { // If cluster.Spec.Seed.Raw is not of type gardenv1beta1.Seed then it is probably // of type gardencorev1alpha1.Seed. We don't want to return an error in this case. return nil, nil } return seed, nil } // ShootFromCluster returns the Shoot resource inside the Cluster resource. func ShootFromCluster(decoder runtime.Decoder, cluster *extensionsv1alpha1.Cluster) (*gardenv1beta1.Shoot, error) { shoot := &gardenv1beta1.Shoot{} if cluster.Spec.Shoot.Raw == nil { return nil, nil } if _, _, err := decoder.Decode(cluster.Spec.Shoot.Raw, nil, shoot); err != nil { // If cluster.Spec.Shoot.Raw is not of type gardenv1beta1.Shoot then it is probably // of type gardencorev1alpha1.Shoot. We don't want to return an error in this case. return nil, nil } return shoot, nil } // CoreCloudProfileFromCluster returns the CloudProfile resource inside the Cluster resource. func CoreCloudProfileFromCluster(decoder runtime.Decoder, cluster *extensionsv1alpha1.Cluster) (*gardencorev1alpha1.CloudProfile, error) { cloudProfile := &gardencorev1alpha1.CloudProfile{} if cluster.Spec.CloudProfile.Raw == nil { return nil, nil } if _, _, err := decoder.Decode(cluster.Spec.CloudProfile.Raw, nil, cloudProfile); err != nil { // If cluster.Spec.CloudProfile.Raw is not of type gardencorev1alpha1.CloudProfile then it is probably // of type gardenv1beta1.CloudProfile. We don't want to return an error in this case. return nil, nil } return cloudProfile, nil } // CoreSeedFromCluster returns the Seed resource inside the Cluster resource. func CoreSeedFromCluster(decoder runtime.Decoder, cluster *extensionsv1alpha1.Cluster) (*gardencorev1alpha1.Seed, error) { seed := &gardencorev1alpha1.Seed{} if cluster.Spec.Seed.Raw == nil { return nil, nil } if _, _, err := decoder.Decode(cluster.Spec.Seed.Raw, nil, seed); err != nil { // If cluster.Spec.Seed.Raw is not of type gardencorev1alpha1.Seed then it is probably // of type gardenv1beta1.Seed. We don't want to return an error in this case. return nil, nil } return seed, nil } // CoreShootFromCluster returns the Shoot resource inside the Cluster resource. func CoreShootFromCluster(decoder runtime.Decoder, cluster *extensionsv1alpha1.Cluster) (*gardencorev1alpha1.Shoot, error) { shoot := &gardencorev1alpha1.Shoot{} if cluster.Spec.Shoot.Raw == nil { return nil, nil } if _, _, err := decoder.Decode(cluster.Spec.Shoot.Raw, nil, shoot); err != nil { // If cluster.Spec.Shoot.Raw is not of type gardencorev1alpha1.Shoot then it is probably // of type gardenv1beta1.Shoot. We don't want to return an error in this case. return nil, nil } return shoot, nil } // NewGardenDecoder returns a new Garden API decoder. func NewGardenDecoder() (runtime.Decoder, error) { scheme := runtime.NewScheme() if err := gardenv1beta1.AddToScheme(scheme); err != nil { return nil, err } if err := gardencorev1alpha1.AddToScheme(scheme); err != nil { return nil, err } return serializer.NewCodecFactory(scheme).UniversalDecoder(), nil }
35.442105
186
0.746213
efa4244ef8e170496b93b016b6e53a58af00ec3b
156
asm
Assembly
fact.asm
siraben/awk-vm
fd68d920de4a0347c9194c2255d1095aaa754a4c
[ "MIT" ]
8
2019-05-01T21:51:26.000Z
2022-01-21T02:00:54.000Z
fact.asm
siraben/awk-vm
fd68d920de4a0347c9194c2255d1095aaa754a4c
[ "MIT" ]
null
null
null
fact.asm
siraben/awk-vm
fd68d920de4a0347c9194c2255d1095aaa754a4c
[ "MIT" ]
2
2020-06-24T13:29:58.000Z
2020-07-29T00:16:46.000Z
;; Factorial get fact_loop jz done st c mul acc st acc ld c dec j fact_loop done ld acc put halt acc const 1 c const 0
7.428571
14
0.570513
7b8650310119d78533f46f449880e010c3fae815
22,529
css
CSS
dist/css/app.css
Sonne-Care/Sonne-Emails
0f069fbf78a55b5288223fa0d82a50a2edd822fe
[ "MIT" ]
null
null
null
dist/css/app.css
Sonne-Care/Sonne-Emails
0f069fbf78a55b5288223fa0d82a50a2edd822fe
[ "MIT" ]
null
null
null
dist/css/app.css
Sonne-Care/Sonne-Emails
0f069fbf78a55b5288223fa0d82a50a2edd822fe
[ "MIT" ]
null
null
null
@charset "UTF-8"; @media all { /* cyrillic-ext */ @font-face { font-family: 'Cormorant'; font-style: normal; font-weight: 400; src: local("Cormorant Regular"), local("Cormorant-Regular"), url(https://fonts.gstatic.com/s/cormorant/v6/H4clBXOCl9bbnla_nHIq4pu9qKS-awhq.woff2) format("woff2"); unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; } /* cyrillic */ @font-face { font-family: 'Cormorant'; font-style: normal; font-weight: 400; src: local("Cormorant Regular"), local("Cormorant-Regular"), url(https://fonts.gstatic.com/s/cormorant/v6/H4clBXOCl9bbnla_nHIq65u9qKS-awhq.woff2) format("woff2"); unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* vietnamese */ @font-face { font-family: 'Cormorant'; font-style: normal; font-weight: 400; src: local("Cormorant Regular"), local("Cormorant-Regular"), url(https://fonts.gstatic.com/s/cormorant/v6/H4clBXOCl9bbnla_nHIq4Ju9qKS-awhq.woff2) format("woff2"); unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @font-face { font-family: 'Cormorant'; font-style: normal; font-weight: 400; src: local("Cormorant Regular"), local("Cormorant-Regular"), url(https://fonts.gstatic.com/s/cormorant/v6/H4clBXOCl9bbnla_nHIq4Zu9qKS-awhq.woff2) format("woff2"); unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Cormorant'; font-style: normal; font-weight: 400; src: local("Cormorant Regular"), local("Cormorant-Regular"), url(https://fonts.gstatic.com/s/cormorant/v6/H4clBXOCl9bbnla_nHIq75u9qKS-aw.woff2) format("woff2"); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } /* cyrillic-ext */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 400; src: local("Roboto"), local("Roboto-Regular"), url(https://fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu72xKKTU1Kvnz.woff2) format("woff2"); unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; } /* cyrillic */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 400; src: local("Roboto"), local("Roboto-Regular"), url(https://fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu5mxKKTU1Kvnz.woff2) format("woff2"); unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* greek-ext */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 400; src: local("Roboto"), local("Roboto-Regular"), url(https://fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu7mxKKTU1Kvnz.woff2) format("woff2"); unicode-range: U+1F00-1FFF; } /* greek */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 400; src: local("Roboto"), local("Roboto-Regular"), url(https://fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu4WxKKTU1Kvnz.woff2) format("woff2"); unicode-range: U+0370-03FF; } /* vietnamese */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 400; src: local("Roboto"), local("Roboto-Regular"), url(https://fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu7WxKKTU1Kvnz.woff2) format("woff2"); unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 400; src: local("Roboto"), local("Roboto-Regular"), url(https://fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu7GxKKTU1Kvnz.woff2) format("woff2"); unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 400; src: local("Roboto"), local("Roboto-Regular"), url(https://fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu4mxKKTU1Kg.woff2) format("woff2"); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } /* cyrillic-ext */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 700; src: local("Roboto Bold"), local("Roboto-Bold"), url(https://fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmWUlfCRc4AMP6lbBP.woff2) format("woff2"); unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; } /* cyrillic */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 700; src: local("Roboto Bold"), local("Roboto-Bold"), url(https://fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmWUlfABc4AMP6lbBP.woff2) format("woff2"); unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* greek-ext */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 700; src: local("Roboto Bold"), local("Roboto-Bold"), url(https://fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmWUlfCBc4AMP6lbBP.woff2) format("woff2"); unicode-range: U+1F00-1FFF; } /* greek */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 700; src: local("Roboto Bold"), local("Roboto-Bold"), url(https://fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmWUlfBxc4AMP6lbBP.woff2) format("woff2"); unicode-range: U+0370-03FF; } /* vietnamese */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 700; src: local("Roboto Bold"), local("Roboto-Bold"), url(https://fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmWUlfCxc4AMP6lbBP.woff2) format("woff2"); unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 700; src: local("Roboto Bold"), local("Roboto-Bold"), url(https://fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmWUlfChc4AMP6lbBP.woff2) format("woff2"); unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 700; src: local("Roboto Bold"), local("Roboto-Bold"), url(https://fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmWUlfBBc4AMP6lQ.woff2) format("woff2"); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } } .wrapper { width: 100%; } body { width: 100% !important; min-width: 100%; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; margin: 0; Margin: 0; padding: 0; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; } img { outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; width: auto; max-width: 100%; clear: both; display: block; } center { width: 100%; min-width: 650px; } a img { border: none; } p { margin: 0 0 0 10px; Margin: 0 0 0 10px; } table { border-spacing: 0; border-collapse: collapse; } td { word-wrap: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; } table, tr, td { padding: 0; vertical-align: top; text-align: left; } @media only screen { html { min-height: 100%; background: #fefefe; } } table.body { background: #fefefe; height: 100%; width: 100%; } table.container { background: #F8F8F8; width: 650px; margin: 0 auto; Margin: 0 auto; text-align: inherit; } table.row { padding: 0; width: 100%; position: relative; } table.spacer { width: 100%; } table.spacer td { mso-line-height-rule: exactly; } table.container table.row { display: table; } th.columns { margin: 0 auto; Margin: 0 auto; padding-left: 30px; padding-bottom: 20px; } th.columns .columns { padding-left: 0 !important; padding-right: 0 !important; } th.columns.last { padding-right: 30px; } th.columns table:not(.button) { width: 100%; } th.large-1 { width: 24.16667px; padding-left: 15px; padding-right: 15px; } th.large-1.first { padding-left: 30px; } th.large-1.last { padding-right: 30px; } .collapse > tbody > tr > th.large-1 { padding-right: 0; padding-left: 0; width: 54.16667px; } .body .columns th.large-1 { width: 8.33333%; } th.large-2 { width: 78.33333px; padding-left: 15px; padding-right: 15px; } th.large-2.first { padding-left: 30px; } th.large-2.last { padding-right: 30px; } .collapse > tbody > tr > th.large-2 { padding-right: 0; padding-left: 0; width: 108.33333px; } .collapse th.large-2.first, .collapse th.large-2.last { width: 123.33333px; } th.large-3 { width: 132.5px; padding-left: 15px; padding-right: 15px; } th.large-3.first { padding-left: 30px; } th.large-3.last { padding-right: 30px; } th.large-4 { width: 186.66667px; padding-left: 15px; padding-right: 15px; } th.large-4.first { padding-left: 30px; } .collapse > tbody > tr > th.large-4 { padding-right: 0; padding-left: 0; width: 216.66667px; } .collapse th.large-4.first { width: 231.66667px; } th.large-4 center { min-width: 126.66667px; } .body .columns th.large-4 { width: 33.33333%; } th.large-5 { width: 240.83333px; padding-left: 15px; padding-right: 15px; } th.large-5.first { padding-left: 30px; } th.large-5.last { padding-right: 30px; } th.large-6 { width: 295px; padding-left: 15px; padding-right: 15px; } th.large-7 { width: 349.16667px; padding-left: 15px; padding-right: 15px; } th.large-7.last { padding-right: 30px; } .collapse > tbody > tr > th.large-7 { padding-right: 0; padding-left: 0; width: 379.16667px; } .collapse th.large-7.last { width: 394.16667px; } .body .columns th.large-7 { width: 58.33333%; } th.large-8 { width: 403.33333px; padding-left: 15px; padding-right: 15px; } th.large-8.last { padding-right: 30px; } .body .columns th.large-8 { width: 66.66667%; } th.large-10 { width: 511.66667px; padding-left: 15px; padding-right: 15px; } th.large-12 { width: 620px; padding-left: 15px; padding-right: 15px; } th.large-12.first { padding-left: 30px; } th.large-12.last { padding-right: 30px; } th.large-12 center { min-width: 560px; } td.expander, th.expander { visibility: hidden; width: 0; padding: 0 !important; } p.text-center { text-align: center; } table.float-center, th.float-center { margin: 0 auto; Margin: 0 auto; float: none; text-align: center; } body, table.body, h1, h2, h3, h4, h5, p, td, th, a { color: #7E7E7E; font-family: "Roboto", Helvetica, Arial, sans-serif; font-weight: normal; padding: 0; margin: 0; Margin: 0; text-align: left; line-height: 1.5; } h1, h2, h3, h4, h5 { color: inherit; word-wrap: normal; font-family: "Roboto", Helvetica, Arial, sans-serif; font-weight: normal; margin-bottom: 10px; Margin-bottom: 10px; } h1 { font-size: 34px; } h2 { font-size: 30px; } h3 { font-size: 28px; } h4 { font-size: 24px; } h5 { font-size: 13px; } body, table.body, p, td, th { font-size: 14px; line-height: 1.5; } p { margin-bottom: 10px; Margin-bottom: 10px; } small { font-size: 80%; color: #7E7E7E; } a { color: #A08059; text-decoration: none; } a:hover { color: #7f6647; } a:active { color: #7f6647; } a:visited { color: #A08059; } span.preheader { display: none !important; visibility: hidden; mso-hide: all !important; font-size: 1px; color: #fefefe; line-height: 1px; max-height: 0px; max-width: 0px; opacity: 0; overflow: hidden; } table.button { width: auto; margin: 0 0 20px 0; Margin: 0 0 20px 0; } table.button table td { text-align: left; color: #fefefe; background: #A08059; border: 0; } table.button table td a { font-family: "Roboto", Helvetica, Arial, sans-serif; font-size: 12px; font-weight: normal; color: #fefefe; text-decoration: none; display: inline-block; padding: 8px 16px 8px 16px; border: 0 solid #A08059; border-radius: 3px; } table.button:hover table tr td a, table.button:active table tr td a, table.button table tr td a:visited { color: #fefefe; } table.button.expand { width: 100% !important; } table.button.expand table { width: 100%; } table.button.expand table a { text-align: center; width: 100%; padding-left: 0; padding-right: 0; } table.button.expand center { min-width: 0; } table.button:hover table td, table.button:visited table td, table.button:active table td { background: #7f6647; color: #fefefe; } table.button:hover table a, table.button:visited table a, table.button:active table a { border: 0 solid #7f6647; } table.button.secondary table td { background: #c6b299; color: #fefefe; border: 0px solid #c6b299; } table.button.secondary table a { color: #fefefe; border: 0 solid #c6b299; } table.button.secondary:hover table td { background: #d8cbba; color: #fefefe; } table.button.secondary:hover table a { border: 0 solid #d8cbba; } table.button.secondary:hover table td a { color: #fefefe; } table.button.secondary:active table td a { color: #fefefe; } table.button.secondary table td a:visited { color: #fefefe; } table.callout { margin-bottom: 20px; Margin-bottom: 20px; } th.callout-inner { width: 100%; border: 1px solid #cbcbcb; padding: 10px; background: #fefefe; } table.menu { width: 650px; } table.menu th.menu-item { padding: 10px; padding-right: 10px; } table.menu th.menu-item a { color: #A08059; } table.menu.vertical th.menu-item { padding: 10px; padding-right: 0; display: block; } table.menu.vertical th.menu-item a { width: 100%; } .menu[align="center"] { width: auto !important; } @media only screen and (max-width: 680px) { table.body img { width: auto; height: auto; } table.body center { min-width: 0 !important; } table.body .container { width: 95% !important; } table.body .columns { height: auto !important; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; padding-left: 30px !important; padding-right: 30px !important; } table.body .columns .columns { padding-left: 0 !important; padding-right: 0 !important; } table.body .collapse .columns { padding-left: 0 !important; padding-right: 0 !important; } th.small-1 { display: inline-block !important; width: 8.33333% !important; } th.small-2 { display: inline-block !important; width: 16.66667% !important; } th.small-4 { display: inline-block !important; width: 33.33333% !important; } th.small-5 { display: inline-block !important; width: 41.66667% !important; } th.small-7 { display: inline-block !important; width: 58.33333% !important; } th.small-8 { display: inline-block !important; width: 66.66667% !important; } th.small-12 { display: inline-block !important; width: 100% !important; } table.menu { width: 100% !important; } table.menu td, table.menu th { width: auto !important; display: inline-block !important; } table.menu.vertical td, table.menu.vertical th, table.menu.small-vertical td, table.menu.small-vertical th { display: block !important; } table.menu[align="center"] { width: auto !important; } } body, html { -webkit-font-smoothing: antialiased; } td { word-break: break-word; -webkit-hyphens: none; -moz-hyphens: none; hyphens: none; border-collapse: collapse !important; } .button a { text-transform: uppercase; letter-spacing: 1px; } .header .container { background-color: #fefefe; } .header img { display: block; margin: 20px auto; width: 89px; height: auto; } @media only screen and (max-width: 680px) { .header img { display: block !important; margin: 20px auto !important; width: 89px !important; height: auto !important; } } .headlines h1 { margin: 0 40px 10px; text-align: center; font-family: cormorant, times, serif; font-size: 60px; line-height: 1; color: #A08059; letter-spacing: -2px; } @media only screen and (max-width: 680px) { .headlines h1 { font-size: 48px !important; margin: 0 !important; margin-bottom: 10px !important; hyphens: auto !important; } } .headlines h3 { margin: 0 40px !important; text-align: center; font-family: cormorant, times, serif; line-height: 1.3; font-size: 27px !important; } @media only screen and (max-width: 680px) { .headlines h3 { font-size: 23px !important; margin: 0 !important; font-weight: 500 !important; } } .headlines .columns { padding-bottom: 0; } .buttons .button { margin-bottom: 0; } .buttons .button a { text-transform: uppercase; letter-spacing: 1px; font-size: 12px !important; } @media only screen and (max-width: 680px) { .buttons .button a { font-size: 10px !important; } } .buttons .columns { padding-bottom: 0; } .info hr { border: 0; height: 1px; background-color: #A08059; } .info p { text-align: center; margin-bottom: 0; } .info .columns { padding-bottom: 0; } .bodycopy h2 { margin: 0 100px; text-align: center; font-family: cormorant, times, serif; line-height: 1.3; color: #A08059; font-size: 32px; } @media only screen and (max-width: 680px) { .bodycopy h2 { font-size: 28px !important; margin: 0 !important; margin-bottom: 10px !important; hyphens: auto !important; } } .bodycopy h3 { margin: 0 40px !important; text-align: center; font-family: cormorant, times, serif; line-height: 1.3; font-size: 25px; } @media only screen and (max-width: 680px) { .bodycopy h3 { font-size: 23px !important; margin: 0 !important; font-weight: 500 !important; } } .bodycopy .columns { padding-bottom: 0; } .quote .avatar { border: 2px solid #fff; border-radius: 50%; width: 100px; height: 100px; margin: auto; margin-top: -50px; position: relative; z-index: 2; } .quote .callout { margin: 0px; text-align: center; } @media only screen and (max-width: 680px) { .quote .callout { margin: 0 !important; } } .quote .callout { position: relative; z-index: 2; background: #A08059; } .quote .callout .callout-inner { border: 0; padding: 65px; background-color: transparent; color: #fff; font-family: cormorant, times, serif; font-size: 2.5rem; line-height: 1.2; letter-spacing: -1px; position: relative; text-align: center; z-index: 2; } @media only screen and (max-width: 680px) { .quote .callout .callout-inner { font-size: 1.75rem !important; padding: 35px !important; padding-bottom: 75px !important; letter-spacing: 0px !important; } } .quote .callout::before { content: "❞"; font-family: times, serif; display: block; position: absolute; top: -30px; right: 0; margin-top: -0px; font-size: 24rem; line-height: 1; z-index: 1; color: rgba(0, 0, 0, 0.1); } .paragraphs p { margin: 0 100px; text-align: center; } @media only screen and (max-width: 680px) { .paragraphs p { margin: 0 30px !important; } } .paragraphs p.quote { font-size: 1.35rem; font-weight: 500; font-family: cormorant, times, serif; } .paragraphs hr.horizontal-divider { margin-left: 100px; margin-right: 100px; } .paragraphs h2 { margin: 0 100px; text-align: center; font-family: cormorant, times, serif; line-height: 1.1; letter-spacing: -1px; font-size: 42px !important; color: #A08059; } @media only screen and (max-width: 680px) { .paragraphs h2 { font-size: 26px !important; margin: 0px !important; } } .paragraphs h3 { margin: 0 40px !important; text-align: center; font-family: cormorant, times, serif; line-height: 1.1; font-size: 28px; color: #A08059; } @media only screen and (max-width: 680px) { .paragraphs h3 { font-size: 24px !important; margin: 0 !important; } } .paragraphs h4 { margin: 10px 0 10px; text-align: center; font-family: roboto, times, serif; line-height: 1.3; color: #A08059; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; } @media only screen and (max-width: 680px) { .paragraphs h4 { font-size: 13px !important; margin: 0 !important; margin-bottom: 10px !important; hyphens: auto !important; } } .paragraphs .button { margin: 10px 0; } .socials h4 { margin: 0; text-align: center; font-family: roboto, times, serif; line-height: 1.3; color: #A08059; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; } @media only screen and (max-width: 680px) { .socials h4 { font-size: 13px !important; margin: 0 !important; margin-bottom: 10px !important; hyphens: auto !important; } } @media only screen and (max-width: 680px) { .socials img { display: block !important; height: 22px !important; width: auto !important; } } .order h3 { margin: 0 40px !important; text-align: center; font-family: cormorant, times, serif; line-height: 1.1; font-size: 28px; color: #A08059; } @media only screen and (max-width: 680px) { .order h3 { font-size: 24px !important; margin: 0 !important; } } .tables h5 { text-align: center; } .tables p { margin-bottom: 0; border-top: 1px solid #eee; padding: 5px 0; text-align: center; } .footer .container { background-color: #fefefe; } .footer .menu-item { font-size: 10px; text-transform: uppercase; letter-spacing: 1px; } .footer .menu-item a { color: #7E7E7E !important; } .vertical-divider { border: 0; background-color: #c6b299; width: 1px; height: 60px; margin: 0 auto; } .horizontal-divider { border: 0; margin: 15px 0; background-color: #eee; height: 1px; } .line-items h4 { text-align: left; } .line-items h4.gray { color: #999; } .line-items .row .columns { padding-bottom: 0; }
24.329374
178
0.643304
2704dc94dc861e72eb12206aa7213f44a2783be4
10,170
sql
SQL
util/src/main/resources/org/killbill/billing/util/ddl.sql
ning/killbill
e3ec4ab20fa55f4fe47d05813f9965895f2eba2f
[ "Apache-2.0" ]
2
2015-04-07T14:05:36.000Z
2019-06-27T07:56:54.000Z
util/src/main/resources/org/killbill/billing/util/ddl.sql
ning/killbill
e3ec4ab20fa55f4fe47d05813f9965895f2eba2f
[ "Apache-2.0" ]
null
null
null
util/src/main/resources/org/killbill/billing/util/ddl.sql
ning/killbill
e3ec4ab20fa55f4fe47d05813f9965895f2eba2f
[ "Apache-2.0" ]
null
null
null
/*! SET storage_engine=INNODB */; DROP TABLE IF EXISTS custom_fields; CREATE TABLE custom_fields ( record_id int(11) unsigned NOT NULL AUTO_INCREMENT, id char(36) NOT NULL, object_id char(36) NOT NULL, object_type varchar(30) NOT NULL, is_active bool DEFAULT true, field_name varchar(30) NOT NULL, field_value varchar(255), created_by varchar(50) NOT NULL, created_date datetime NOT NULL, updated_by varchar(50) DEFAULT NULL, updated_date datetime DEFAULT NULL, account_record_id int(11) unsigned default null, tenant_record_id int(11) unsigned default null, PRIMARY KEY(record_id) ) /*! CHARACTER SET utf8 COLLATE utf8_bin */; CREATE UNIQUE INDEX custom_fields_id ON custom_fields(id); CREATE INDEX custom_fields_object_id_object_type ON custom_fields(object_id, object_type); CREATE INDEX custom_fields_tenant_account_record_id ON custom_fields(tenant_record_id, account_record_id); DROP TABLE IF EXISTS custom_field_history; CREATE TABLE custom_field_history ( record_id int(11) unsigned NOT NULL AUTO_INCREMENT, id char(36) NOT NULL, target_record_id int(11) unsigned NOT NULL, object_id char(36) NOT NULL, object_type varchar(30) NOT NULL, is_active bool DEFAULT true, field_name varchar(30), field_value varchar(255), change_type char(6) NOT NULL, created_by varchar(50) NOT NULL, created_date datetime NOT NULL, updated_by varchar(50) NOT NULL, updated_date datetime NOT NULL, account_record_id int(11) unsigned default null, tenant_record_id int(11) unsigned default null, PRIMARY KEY(record_id) ) /*! CHARACTER SET utf8 COLLATE utf8_bin */; CREATE INDEX custom_field_history_target_record_id ON custom_field_history(target_record_id); CREATE INDEX custom_field_history_object_id_object_type ON custom_fields(object_id, object_type); CREATE INDEX custom_field_history_tenant_account_record_id ON custom_field_history(tenant_record_id, account_record_id); DROP TABLE IF EXISTS tag_definitions; CREATE TABLE tag_definitions ( record_id int(11) unsigned NOT NULL AUTO_INCREMENT, id char(36) NOT NULL, name varchar(20) NOT NULL, description varchar(200) NOT NULL, is_active bool DEFAULT true, created_by varchar(50) NOT NULL, created_date datetime NOT NULL, updated_by varchar(50) NOT NULL, updated_date datetime NOT NULL, tenant_record_id int(11) unsigned default null, PRIMARY KEY(record_id) ) /*! CHARACTER SET utf8 COLLATE utf8_bin */; CREATE UNIQUE INDEX tag_definitions_id ON tag_definitions(id); CREATE INDEX tag_definitions_tenant_record_id ON tag_definitions(tenant_record_id); DROP TABLE IF EXISTS tag_definition_history; CREATE TABLE tag_definition_history ( record_id int(11) unsigned NOT NULL AUTO_INCREMENT, id char(36) NOT NULL, target_record_id int(11) unsigned NOT NULL, name varchar(30) NOT NULL, description varchar(200), is_active bool DEFAULT true, change_type char(6) NOT NULL, created_by varchar(50) NOT NULL, created_date datetime NOT NULL, updated_by varchar(50) NOT NULL, updated_date datetime NOT NULL, account_record_id int(11) unsigned default null, tenant_record_id int(11) unsigned default null, PRIMARY KEY(record_id) ) /*! CHARACTER SET utf8 COLLATE utf8_bin */; CREATE INDEX tag_definition_history_id ON tag_definition_history(id); CREATE INDEX tag_definition_history_target_record_id ON tag_definition_history(target_record_id); CREATE INDEX tag_definition_history_name ON tag_definition_history(name); CREATE INDEX tag_definition_history_tenant_record_id ON tag_definition_history(tenant_record_id); DROP TABLE IF EXISTS tags; CREATE TABLE tags ( record_id int(11) unsigned NOT NULL AUTO_INCREMENT, id char(36) NOT NULL, tag_definition_id char(36) NOT NULL, object_id char(36) NOT NULL, object_type varchar(30) NOT NULL, is_active bool DEFAULT true, created_by varchar(50) NOT NULL, created_date datetime NOT NULL, updated_by varchar(50) NOT NULL, updated_date datetime NOT NULL, account_record_id int(11) unsigned default null, tenant_record_id int(11) unsigned default null, PRIMARY KEY(record_id) ) /*! CHARACTER SET utf8 COLLATE utf8_bin */; CREATE UNIQUE INDEX tags_id ON tags(id); CREATE INDEX tags_by_object ON tags(object_id); CREATE INDEX tags_tenant_account_record_id ON tags(tenant_record_id, account_record_id); DROP TABLE IF EXISTS tag_history; CREATE TABLE tag_history ( record_id int(11) unsigned NOT NULL AUTO_INCREMENT, id char(36) NOT NULL, target_record_id int(11) unsigned NOT NULL, object_id char(36) NOT NULL, object_type varchar(30) NOT NULL, tag_definition_id char(36) NOT NULL, is_active bool DEFAULT true, change_type char(6) NOT NULL, created_by varchar(50) NOT NULL, created_date datetime NOT NULL, updated_by varchar(50) NOT NULL, updated_date datetime NOT NULL, account_record_id int(11) unsigned default null, tenant_record_id int(11) unsigned default null, PRIMARY KEY(record_id) ) /*! CHARACTER SET utf8 COLLATE utf8_bin */; CREATE INDEX tag_history_target_record_id ON tag_history(target_record_id); CREATE INDEX tag_history_by_object ON tags(object_id); CREATE INDEX tag_history_tenant_account_record_id ON tag_history(tenant_record_id, account_record_id); DROP TABLE IF EXISTS audit_log; CREATE TABLE audit_log ( record_id int(11) unsigned NOT NULL AUTO_INCREMENT, id char(36) NOT NULL, target_record_id int(11) NOT NULL, table_name varchar(50) NOT NULL, change_type char(6) NOT NULL, created_date datetime NOT NULL, created_by varchar(50) NOT NULL, reason_code varchar(255) DEFAULT NULL, comments varchar(255) DEFAULT NULL, user_token char(36), account_record_id int(11) unsigned default null, tenant_record_id int(11) unsigned default null, PRIMARY KEY(record_id) ) /*! CHARACTER SET utf8 COLLATE utf8_bin */; CREATE INDEX audit_log_fetch_target_record_id ON audit_log(table_name, target_record_id); CREATE INDEX audit_log_user_name ON audit_log(created_by); CREATE INDEX audit_log_tenant_account_record_id ON audit_log(tenant_record_id, account_record_id); CREATE INDEX audit_log_via_history ON audit_log(target_record_id, table_name, tenant_record_id); DROP TABLE IF EXISTS notifications; CREATE TABLE notifications ( record_id int(11) unsigned NOT NULL AUTO_INCREMENT, class_name varchar(256) NOT NULL, event_json varchar(2048) NOT NULL, user_token char(36), created_date datetime NOT NULL, creating_owner char(50) NOT NULL, processing_owner char(50) DEFAULT NULL, processing_available_date datetime DEFAULT NULL, processing_state varchar(14) DEFAULT 'AVAILABLE', error_count int(11) unsigned DEFAULT 0, search_key1 int(11) unsigned default null, search_key2 int(11) unsigned default null, queue_name char(64) NOT NULL, effective_date datetime NOT NULL, future_user_token char(36), PRIMARY KEY(record_id) ) /*! CHARACTER SET utf8 COLLATE utf8_bin */; CREATE INDEX `idx_comp_where` ON notifications (`effective_date`, `processing_state`,`processing_owner`,`processing_available_date`); CREATE INDEX `idx_update` ON notifications (`processing_state`,`processing_owner`,`processing_available_date`); CREATE INDEX `idx_get_ready` ON notifications (`effective_date`,`created_date`); CREATE INDEX notifications_tenant_account_record_id ON notifications(search_key2, search_key1); DROP TABLE IF EXISTS notifications_history; CREATE TABLE notifications_history ( record_id int(11) unsigned NOT NULL AUTO_INCREMENT, class_name varchar(256) NOT NULL, event_json varchar(2048) NOT NULL, user_token char(36), created_date datetime NOT NULL, creating_owner char(50) NOT NULL, processing_owner char(50) DEFAULT NULL, processing_available_date datetime DEFAULT NULL, processing_state varchar(14) DEFAULT 'AVAILABLE', error_count int(11) unsigned DEFAULT 0, search_key1 int(11) unsigned default null, search_key2 int(11) unsigned default null, queue_name char(64) NOT NULL, effective_date datetime NOT NULL, future_user_token char(36), PRIMARY KEY(record_id) ) /*! CHARACTER SET utf8 COLLATE utf8_bin */; DROP TABLE IF EXISTS bus_events; CREATE TABLE bus_events ( record_id int(11) unsigned NOT NULL AUTO_INCREMENT, class_name varchar(128) NOT NULL, event_json varchar(2048) NOT NULL, user_token char(36), created_date datetime NOT NULL, creating_owner char(50) NOT NULL, processing_owner char(50) DEFAULT NULL, processing_available_date datetime DEFAULT NULL, processing_state varchar(14) DEFAULT 'AVAILABLE', error_count int(11) unsigned DEFAULT 0, search_key1 int(11) unsigned default null, search_key2 int(11) unsigned default null, PRIMARY KEY(record_id) ) /*! CHARACTER SET utf8 COLLATE utf8_bin */; CREATE INDEX `idx_bus_where` ON bus_events (`processing_state`,`processing_owner`,`processing_available_date`); CREATE INDEX bus_events_tenant_account_record_id ON bus_events(search_key2, search_key1); DROP TABLE IF EXISTS bus_events_history; CREATE TABLE bus_events_history ( record_id int(11) unsigned NOT NULL AUTO_INCREMENT, class_name varchar(128) NOT NULL, event_json varchar(2048) NOT NULL, user_token char(36), created_date datetime NOT NULL, creating_owner char(50) NOT NULL, processing_owner char(50) DEFAULT NULL, processing_available_date datetime DEFAULT NULL, processing_state varchar(14) DEFAULT 'AVAILABLE', error_count int(11) unsigned DEFAULT 0, search_key1 int(11) unsigned default null, search_key2 int(11) unsigned default null, PRIMARY KEY(record_id) ) /*! CHARACTER SET utf8 COLLATE utf8_bin */; drop table if exists sessions; create table sessions ( record_id int(11) unsigned not null auto_increment , start_timestamp datetime not null , last_access_time datetime default null , timeout int(11) , host varchar(100) default null , session_data mediumblob default null , primary key(record_id) ) /*! CHARACTER SET utf8 COLLATE utf8_bin */;
42.19917
134
0.771485
2a721fb0b5e0668693f583312c3659b843a6062e
2,020
java
Java
src/GameXchange/app/src/main/java/ca/ualberta/cmput301w16t18/gamexchange/Constants.java
CMPUT301W16T18/StockXchange
d19d5f639328ef6b654872087f7baabd4e4e1827
[ "MIT" ]
null
null
null
src/GameXchange/app/src/main/java/ca/ualberta/cmput301w16t18/gamexchange/Constants.java
CMPUT301W16T18/StockXchange
d19d5f639328ef6b654872087f7baabd4e4e1827
[ "MIT" ]
null
null
null
src/GameXchange/app/src/main/java/ca/ualberta/cmput301w16t18/gamexchange/Constants.java
CMPUT301W16T18/StockXchange
d19d5f639328ef6b654872087f7baabd4e4e1827
[ "MIT" ]
null
null
null
package ca.ualberta.cmput301w16t18.gamexchange; /** * Created by Vassili Minaev on 2/29/2016. * This is a class that holds constants */ class Constants { public static boolean testing = false; public static final boolean DEBUG = false; public static final String serverURL = "http://cmput301.softwareprocess.es:8080/"; // TODO: Change this later public static final String index = "gamexchange"; public static final String testingIndex = "gamexchangetest"; public static String getPrefix() { if (testing) { return serverURL + testingIndex + "/"; } return serverURL + index + "/"; } public static final String GAME_ID = "GAME_ID"; public static final String USER_ID = "USER_ID"; public static User CURRENT_USER = new User(); public static String SEARCHLIST_CONTEXT = ""; public static final int REQUEST_IMAGE_CAPTURE = 1; public static final int SWIPE_MIN_DISTANCE = 300; public static final int SWIPE_THRESHOLD_VELOCITY = 150; public static final String ALL_GAMES = "ALL_GAMES"; public static final String MY_GAMES = "MY_GAMES"; public static final String BORROWED_GAMES = "BORROWED_GAMES"; public static final String WATCH_LIST = "WATCH_LIST"; public static final String MY_BIDS = "MY_BIDS"; public static final String NOTIFICATIONS = "NOTIFICATIONS"; public static final String ACCEPTED = "ACCEPTED"; public static final String REJECTED = "REJECTED"; public static final String PENDING = "PENDING"; public static final String AVAILABLE = "Available"; public static final String BORROWED = "Borrowed"; public static final String SEARCH_LIST_ACTIVITY_ACTION = "SEARCH_LIST_ACTIVITY_ACTION"; public static final String FILENAME = "cache.sav"; public static int iterator = 0; public static boolean isEmailValid(String email) { return email.contains("@"); } public static boolean isPasswordValid(String password) { return password.length() > 4; } }
36.727273
113
0.711881
32a67c11daafcf7e6ad3f0e6c87242cd836863f3
3,985
swift
Swift
Tipper/ViewController.swift
madelio/TipCalc
6d0aa4a582ba5f888e26f57532cd006c05d020df
[ "Apache-2.0" ]
null
null
null
Tipper/ViewController.swift
madelio/TipCalc
6d0aa4a582ba5f888e26f57532cd006c05d020df
[ "Apache-2.0" ]
1
2016-12-30T17:17:28.000Z
2017-01-06T15:58:22.000Z
Tipper/ViewController.swift
madelio/TipCalc
6d0aa4a582ba5f888e26f57532cd006c05d020df
[ "Apache-2.0" ]
null
null
null
// // ViewController.swift // Tipper // // Created by Jie-Anne Asistio on 12/12/16. // Copyright © 2016 Jie-Anne Asistio. All rights reserved. // import UIKit class ViewController: UIViewController { let formatter = NumberFormatter() let defaults = UserDefaults.standard // label that shows the tip @IBOutlet weak var tipLabel: UILabel! // label that shows the total @IBOutlet weak var totalLabel: UILabel! // field where user types in bill amount @IBOutlet weak var billField: UITextField! // tip segments @IBOutlet weak var tipController: UISegmentedControl! // array of tip percentages var tipPercentages = [0.14, 0.16, 0.18, 0.20] // shifts the decimal value to change to // the proper type for display let shiftDec = 0.01 // changes the button labels to proper values // on the segment control every time it appears override func viewWillAppear(_ animated: Bool) { // makes it so that the keypad is visible from the start billField.becomeFirstResponder() var defVals = [0.14, 0.16, 0.18, 0.20] var index = 0 // loops through the tip array and changes the segment control labels to settings while (index < 4) { if defaults.double(forKey: "bttn\(index + 1)") == 0 { tipPercentages[index] = defVals[index] } else { tipPercentages[index] = defaults.double(forKey: "bttn\(index + 1)") } tipController.setTitle(String(format: "%.0f%%", tipPercentages[index] * 100), forSegmentAt: index) index += 1 } self.calculateTip(UIButton()) } override func viewDidLoad() { super.viewDidLoad() var counter = 0 // loops through the tip percentages array to load the correct numbers for percent in tipPercentages { tipController.setTitle(String(format: "%.0f%%", percent * 100), forSegmentAt: counter) counter += 1 } } override func didReceiveMemoryWarning() { super.didReceiveMemoryWarning() // Dispose of any resources that can be recreated. } @IBAction func OnTap(_ sender: AnyObject) { // gets rid of the keyboard on tap view.endEditing(true) } // function calculates tip @IBAction func calculateTip(_ sender: AnyObject) { // calculates the tip and total using the tip percentages array and the input bill let bill = Double(billField.text!) ?? 0 let tip = bill * tipPercentages[tipController.selectedSegmentIndex] let total = bill + tip let formatted = chgFormat (tipVal: tip, totalVal: total) // puts the correct value on the tip and total labels tipLabel.text = formatted.tipFormatted totalLabel.text = formatted.totalFormatted } func chgFormat (tipVal: Double, totalVal: Double) -> (tipFormatted: String, totalFormatted: String) { let tip = tipVal as NSNumber let total = totalVal as NSNumber formatter.numberStyle = .currency formatter.locale = Locale(identifier: defaults.string(forKey: "updatedRegion") ?? "United States") return (formatter.string(from: tip)!, formatter.string(from:total)!) } // inputs the settings view controller with the values from the tip percentages override func prepare(for segue: UIStoryboardSegue, sender: Any?) { if segue.identifier == "settingVCSeg" { defaults.set(defaults.string(forKey: "updatedRegion") ?? "en_US", forKey: "region") defaults.set(defaults.integer(forKey: "updateCheck"), forKey: "lastChecked") defaults.synchronize() } } }
31.132813
110
0.600502
eddd75cc26c3c3d4cdee26348e9a4e6763bbe011
6,803
psm1
PowerShell
StackWrangler/CreateEc2Instance/CreateEc2Instance.psm1
ChadRoesler/StackWrangler
42603f267669c0b1df1644215425db1da9344dbd
[ "Apache-2.0" ]
null
null
null
StackWrangler/CreateEc2Instance/CreateEc2Instance.psm1
ChadRoesler/StackWrangler
42603f267669c0b1df1644215425db1da9344dbd
[ "Apache-2.0" ]
null
null
null
StackWrangler/CreateEc2Instance/CreateEc2Instance.psm1
ChadRoesler/StackWrangler
42603f267669c0b1df1644215425db1da9344dbd
[ "Apache-2.0" ]
null
null
null
function Create-Ec2Instance { param( [string] $instanceName, [string] $instanceType, [string] $amiName, [string] $amiId, [string] $userData, [string] $userDataFileLocation, [string] $iamRoleName, [System.Object] $iamRoleWithInstanceProfile, [array] $securityGroupIds, [System.Object] $securityGroups, [string] $subnetId, [string] $keyName, [string] $templateLocation = "$($PSScriptRoot)\..\Templates\Ec2\InstanceTemplate.json" ) if(![string]::IsNullOrWhiteSpace($amiName) -and ![string]::IsNullOrWhiteSpace($amiId)) { Write-ErrorLog -message "You may only specifiy either the amiName or the amiId" } elseif(![string]::IsNullOrWhiteSpace($userData) -and ![string]::IsNullOrWhiteSpace($userDataFileLocation)) { Write-ErrorLog -message "You may only specifiy either the userData or the userDataFileLocation" } elseif(![string]::IsNullOrWhiteSpace($iamRoleName) -and $null -ne $iamRole) { Write-ErrorLog -message "You may only specifiy either the iamRoleName or the iamRole" } else { if($null -ne $iamRoleWithInstanceProfile) { $iamRoleInstanceProfileCount = 0 foreach($instanceProfile in $iamRoleWithInstanceProfile.Resources.PsObject.Properties) { if($iamRoleWithInstanceProfile.Resources."$($instanceProfile.Name)".Type -eq "AWS::IAM::InstanceProfile") { $iamRoleInstanceProfileCount++ } } if($iamRoleInstanceProfileCount -gt 1) { Write-ErrorLog "More than one role has been passed in the Object" } } if(![string]::IsNullOrWhiteSpace($userDataFileLocation)) { $userData = [System.IO.File]::ReadAllText($userDataFileLocation) } $transformedUserData = $userData -replace "\r\n","#{Return}" $transformedUserData = $transformedUserData -replace "\n\r","#{Return}" $transformedUserData = $transformedUserData -replace "\r","#{Return}" $transformedUserData = $transformedUserData -replace "\n","#{Return}" $transformedUserData = $transformedUserData -replace "\#\{Return\}", "`",#{Return}`"" $transformedUserData = $transformedUserData -split "#{Return}" $transformedUserData = $transformedUserData -join "`r`n" $transformedUserData = $transformedUserData -replace "`"`",", "" $transformedUserData = "`"$($transformedUserData)\n`"" $resourceName = ($instanceName -replace "[^a-zA-Z0-9]","") if(![string]::IsNullOrWhiteSpace($amiName)) { $amiObject = Get-Ec2ImageByName -Name $amiName if($null -eq $amiObject) { Write-ErrorLog -message "The specified ami $($amiName) does not exist" } else { $amiId = $amiObject.ImageId } } $depeondsOnList = @() $instanceObject = New-Object System.Object $securityGroupObject = New-Object System.Object $securityGroupObject | Add-Member -MemberType NoteProperty -Name "SecurityGroupIds" -Value @() $iamRoleObject = New-Object System.Object $iamRoleObject | Add-Member -MemberType Noteproperty -Name "IamRole" -Value "" $instanceVarDictionary = New-Object Octostache.VariableDictionary $instanceVarDictionary.Add("Instance", $resourceName) $instanceVarDictionary.Add("InstanceName", $instanceName) $instanceVarDictionary.Add("InstanceType", $instanceType) $instanceVarDictionary.Add("ImageId", $amiId) $instanceVarDictionary.Add("SubnetId", $subnetId) $instanceVarDictionary.Add("KeyName", $keyName) $instanceVarDictionary.Add("UserDataLines", $transformedUserData) if($securityGroups.Resources.PsObject.Properties.Count -gt 0) { foreach($securityGroup in $securityGroups.Resources.PsObject.Properties) { if($securityGroups.Resources."$($securityGroup.Name)".Type -eq "AWS::EC2::SecurityGroup") { if($depeondsOnList -notcontains $securityGroup.Name) { $depeondsOnList += $securityGroup.Name } if($securityGroupObject.SecurityGroupIds -notcontains $securityGroup.Name) { $refObject = New-Object System.Object $refObject | Add-Member -MemberType NoteProperty -Name "Ref" -Value $securityGroup.Name $securityGroupObject.SecurityGroupIds += $refObject } } } } if($securityGroupIds.Count -gt 0) { foreach($securityGroupId in $securityGroupIds) { if($securityGroupObject.SecurityGroupIds -notcontains $securityGroupId) { $securityGroupObject.SecurityGroupIds += $securityGroupId } } } if($null -ne $iamRoleWithInstanceProfile) { foreach($instanceProfile in $iamRoleWithInstanceProfile.Resources.PsObject.Properties) { if($iamRoleWithInstanceProfile.Resources."$($instanceProfile.Name)".Type -eq "AWS::IAM::InstanceProfile") { if($depeondsOnList -notcontains $instanceProfile.Name) { $depeondsOnList += $instanceProfile.Name } $refObject = New-Object System.Object $refObject | Add-Member -MemberType NoteProperty -Name "Ref" -Value $instanceProfile.Name $iamRoleObject.IamRole = $refObject } } } else { $iamRoleObject.IamRole = $iamRoleName } $dependsOnString = "`"$($depeondsOnList -join '","')`"" $instanceVarDictionary.Add("ResourceList", $dependsOnString) $instanceFile = Get-Item $templateLocation $instanceText = [System.IO.File]::ReadAllText($instanceFile) $instanceText = $instanceVarDictionary.Evaluate($instanceText) $instanceObject = ConvertFrom-Json $instanceText $instanceObject.Resources."$($resourceName)".Properties | Add-Member -MemberType NoteProperty -Name "SecurityGroupIds" -Value $securityGroupObject.SecurityGroupIds $instanceObject.Resources."$($resourceName)".Properties | Add-Member -MemberType NoteProperty -Name "IamInstanceProfile" -Value $iamRoleObject.IamRole return $instanceObject } }
43.608974
171
0.59709
266c11cc4263e068ef18d8a2de04063450f0a288
466
java
Java
src/main/java/org/kiwiproject/test/junit/jupiter/H2Database.java
kiwiproject/kiwi-test
9b40b9cd2e5d210a9d6ba26248648b1d160108aa
[ "MIT" ]
null
null
null
src/main/java/org/kiwiproject/test/junit/jupiter/H2Database.java
kiwiproject/kiwi-test
9b40b9cd2e5d210a9d6ba26248648b1d160108aa
[ "MIT" ]
253
2020-06-11T14:05:34.000Z
2022-03-08T01:52:06.000Z
src/main/java/org/kiwiproject/test/junit/jupiter/H2Database.java
kiwiproject/kiwi-test
9b40b9cd2e5d210a9d6ba26248648b1d160108aa
[ "MIT" ]
null
null
null
package org.kiwiproject.test.junit.jupiter; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * {@link H2Database} can be used to annotate a parameter of type {@link org.kiwiproject.test.h2.H2FileBasedDatabase} * in lifecycle or test methods. */ @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.PARAMETER) public @interface H2Database { }
29.125
117
0.798283
850a54e84f264fe99a15ed472449daab049c19de
11,999
asm
Assembly
deps/gmp.js/mpn/x86/k7/sqr_basecase.asm
6un9-h0-Dan/cobaul
11115a7a77924d6e1642f847c613efb25f217e56
[ "MIT" ]
184
2020-04-15T14:28:37.000Z
2020-09-22T15:57:55.000Z
deps/gmp.js/mpn/x86/k7/sqr_basecase.asm
6un9-h0-Dan/cobaul
11115a7a77924d6e1642f847c613efb25f217e56
[ "MIT" ]
3
2020-09-22T05:09:36.000Z
2020-09-22T11:56:00.000Z
deps/gmp.js/mpn/x86/k7/sqr_basecase.asm
6un9-h0-Dan/cobaul
11115a7a77924d6e1642f847c613efb25f217e56
[ "MIT" ]
5
2020-04-21T19:50:23.000Z
2020-09-22T10:58:02.000Z
dnl AMD K7 mpn_sqr_basecase -- square an mpn number. dnl Copyright 1999, 2000, 2001, 2002 Free Software Foundation, Inc. dnl dnl This file is part of the GNU MP Library. dnl dnl The GNU MP Library is free software; you can redistribute it and/or dnl modify it under the terms of the GNU Lesser General Public License as dnl published by the Free Software Foundation; either version 3 of the dnl License, or (at your option) any later version. dnl dnl The GNU MP Library is distributed in the hope that it will be useful, dnl but WITHOUT ANY WARRANTY; without even the implied warranty of dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU dnl Lesser General Public License for more details. dnl dnl You should have received a copy of the GNU Lesser General Public License dnl along with the GNU MP Library. If not, see http://www.gnu.org/licenses/. include(`../config.m4') C K7: approx 2.3 cycles/crossproduct, or 4.55 cycles/triangular product C (measured on the speed difference between 25 and 50 limbs, which is C roughly the Karatsuba recursing range). dnl These are the same as mpn/x86/k6/sqr_basecase.asm, see that code for dnl some comments. deflit(SQR_TOOM2_THRESHOLD_MAX, 66) ifdef(`SQR_TOOM2_THRESHOLD_OVERRIDE', `define(`SQR_TOOM2_THRESHOLD',SQR_TOOM2_THRESHOLD_OVERRIDE)') m4_config_gmp_mparam(`SQR_TOOM2_THRESHOLD') deflit(UNROLL_COUNT, eval(SQR_TOOM2_THRESHOLD-3)) C void mpn_sqr_basecase (mp_ptr dst, mp_srcptr src, mp_size_t size); C C With a SQR_TOOM2_THRESHOLD around 50 this code is about 1500 bytes, C which is quite a bit, but is considered good value since squares big C enough to use most of the code will be spending quite a few cycles in it. defframe(PARAM_SIZE,12) defframe(PARAM_SRC, 8) defframe(PARAM_DST, 4) TEXT ALIGN(32) PROLOGUE(mpn_sqr_basecase) deflit(`FRAME',0) movl PARAM_SIZE, %ecx movl PARAM_SRC, %eax cmpl $2, %ecx movl PARAM_DST, %edx je L(two_limbs) ja L(three_or_more) C------------------------------------------------------------------------------ C one limb only C eax src C ecx size C edx dst movl (%eax), %eax movl %edx, %ecx mull %eax movl %edx, 4(%ecx) movl %eax, (%ecx) ret C------------------------------------------------------------------------------ C C Using the read/modify/write "add"s seems to be faster than saving and C restoring registers. Perhaps the loads for the first set hide under the C mul latency and the second gets store to load forwarding. ALIGN(16) L(two_limbs): C eax src C ebx C ecx size C edx dst deflit(`FRAME',0) pushl %ebx FRAME_pushl() movl %eax, %ebx C src movl (%eax), %eax movl %edx, %ecx C dst mull %eax C src[0]^2 movl %eax, (%ecx) C dst[0] movl 4(%ebx), %eax movl %edx, 4(%ecx) C dst[1] mull %eax C src[1]^2 movl %eax, 8(%ecx) C dst[2] movl (%ebx), %eax movl %edx, 12(%ecx) C dst[3] mull 4(%ebx) C src[0]*src[1] popl %ebx addl %eax, 4(%ecx) adcl %edx, 8(%ecx) adcl $0, 12(%ecx) ASSERT(nc) addl %eax, 4(%ecx) adcl %edx, 8(%ecx) adcl $0, 12(%ecx) ASSERT(nc) ret C------------------------------------------------------------------------------ defframe(SAVE_EBX, -4) defframe(SAVE_ESI, -8) defframe(SAVE_EDI, -12) defframe(SAVE_EBP, -16) deflit(STACK_SPACE, 16) L(three_or_more): subl $STACK_SPACE, %esp cmpl $4, %ecx jae L(four_or_more) deflit(`FRAME',STACK_SPACE) C------------------------------------------------------------------------------ C Three limbs C C Writing out the loads and stores separately at the end of this code comes C out about 10 cycles faster than using adcls to memory. C eax src C ecx size C edx dst movl %ebx, SAVE_EBX movl %eax, %ebx C src movl (%eax), %eax movl %edx, %ecx C dst movl %esi, SAVE_ESI movl %edi, SAVE_EDI mull %eax C src[0] ^ 2 movl %eax, (%ecx) movl 4(%ebx), %eax movl %edx, 4(%ecx) mull %eax C src[1] ^ 2 movl %eax, 8(%ecx) movl 8(%ebx), %eax movl %edx, 12(%ecx) mull %eax C src[2] ^ 2 movl %eax, 16(%ecx) movl (%ebx), %eax movl %edx, 20(%ecx) mull 4(%ebx) C src[0] * src[1] movl %eax, %esi movl (%ebx), %eax movl %edx, %edi mull 8(%ebx) C src[0] * src[2] addl %eax, %edi movl %ebp, SAVE_EBP movl $0, %ebp movl 4(%ebx), %eax adcl %edx, %ebp mull 8(%ebx) C src[1] * src[2] xorl %ebx, %ebx addl %eax, %ebp adcl $0, %edx C eax C ebx zero, will be dst[5] C ecx dst C edx dst[4] C esi dst[1] C edi dst[2] C ebp dst[3] adcl $0, %edx addl %esi, %esi adcl %edi, %edi movl 4(%ecx), %eax adcl %ebp, %ebp adcl %edx, %edx adcl $0, %ebx addl %eax, %esi movl 8(%ecx), %eax adcl %eax, %edi movl 12(%ecx), %eax movl %esi, 4(%ecx) adcl %eax, %ebp movl 16(%ecx), %eax movl %edi, 8(%ecx) movl SAVE_ESI, %esi movl SAVE_EDI, %edi adcl %eax, %edx movl 20(%ecx), %eax movl %ebp, 12(%ecx) adcl %ebx, %eax ASSERT(nc) movl SAVE_EBX, %ebx movl SAVE_EBP, %ebp movl %edx, 16(%ecx) movl %eax, 20(%ecx) addl $FRAME, %esp ret C------------------------------------------------------------------------------ L(four_or_more): C First multiply src[0]*src[1..size-1] and store at dst[1..size]. C Further products are added in rather than stored. C eax src C ebx C ecx size C edx dst C esi C edi C ebp defframe(`VAR_COUNTER',-20) defframe(`VAR_JMP', -24) deflit(EXTRA_STACK_SPACE, 8) movl %ebx, SAVE_EBX movl %edi, SAVE_EDI leal (%edx,%ecx,4), %edi C &dst[size] movl %esi, SAVE_ESI movl %ebp, SAVE_EBP leal (%eax,%ecx,4), %esi C &src[size] movl (%eax), %ebp C multiplier movl $0, %ebx decl %ecx negl %ecx subl $EXTRA_STACK_SPACE, %esp FRAME_subl_esp(EXTRA_STACK_SPACE) L(mul_1): C eax scratch C ebx carry C ecx counter C edx scratch C esi &src[size] C edi &dst[size] C ebp multiplier movl (%esi,%ecx,4), %eax mull %ebp addl %ebx, %eax movl %eax, (%edi,%ecx,4) movl $0, %ebx adcl %edx, %ebx incl %ecx jnz L(mul_1) C Add products src[n]*src[n+1..size-1] at dst[2*n-1...], for each n=1..size-2. C C The last two products, which are the bottom right corner of the product C triangle, are left to the end. These are src[size-3]*src[size-2,size-1] C and src[size-2]*src[size-1]. If size is 4 then it's only these corner C cases that need to be done. C C The unrolled code is the same as in mpn_addmul_1, see that routine for C some comments. C C VAR_COUNTER is the outer loop, running from -size+4 to -1, inclusive. C C VAR_JMP is the computed jump into the unrolled code, stepped by one code C chunk each outer loop. C C K7 does branch prediction on indirect jumps, which is bad since it's a C different target each time. There seems no way to avoid this. dnl This value also hard coded in some shifts and adds deflit(CODE_BYTES_PER_LIMB, 17) dnl With the unmodified &src[size] and &dst[size] pointers, the dnl displacements in the unrolled code fit in a byte for UNROLL_COUNT dnl values up to 31, but above that an offset must be added to them. deflit(OFFSET, ifelse(eval(UNROLL_COUNT>31),1, eval((UNROLL_COUNT-31)*4), 0)) dnl Because the last chunk of code is generated differently, a label placed dnl at the end doesn't work. Instead calculate the implied end using the dnl start and how many chunks of code there are. deflit(UNROLL_INNER_END, `L(unroll_inner_start)+eval(UNROLL_COUNT*CODE_BYTES_PER_LIMB)') C eax C ebx carry C ecx C edx C esi &src[size] C edi &dst[size] C ebp movl PARAM_SIZE, %ecx movl %ebx, (%edi) subl $4, %ecx jz L(corner) negl %ecx ifelse(OFFSET,0,,`subl $OFFSET, %edi') ifelse(OFFSET,0,,`subl $OFFSET, %esi') movl %ecx, %edx shll $4, %ecx ifdef(`PIC',` call L(pic_calc) L(here): ',` leal UNROLL_INNER_END-eval(2*CODE_BYTES_PER_LIMB)(%ecx,%edx), %ecx ') C The calculated jump mustn't come out to before the start of the C code available. This is the limit UNROLL_COUNT puts on the src C operand size, but checked here directly using the jump address. ASSERT(ae, `movl_text_address(L(unroll_inner_start), %eax) cmpl %eax, %ecx') C------------------------------------------------------------------------------ ALIGN(16) L(unroll_outer_top): C eax C ebx high limb to store C ecx VAR_JMP C edx VAR_COUNTER, limbs, negative C esi &src[size], constant C edi dst ptr, high of last addmul C ebp movl -12+OFFSET(%esi,%edx,4), %ebp C next multiplier movl -8+OFFSET(%esi,%edx,4), %eax C first of multiplicand movl %edx, VAR_COUNTER mull %ebp define(cmovX,`ifelse(eval(UNROLL_COUNT%2),0,`cmovz($@)',`cmovnz($@)')') testb $1, %cl movl %edx, %ebx C high carry movl %ecx, %edx C jump movl %eax, %ecx C low carry cmovX( %ebx, %ecx) C high carry reverse cmovX( %eax, %ebx) C low carry reverse leal CODE_BYTES_PER_LIMB(%edx), %eax xorl %edx, %edx leal 4(%edi), %edi movl %eax, VAR_JMP jmp *%eax ifdef(`PIC',` L(pic_calc): addl (%esp), %ecx addl $UNROLL_INNER_END-eval(2*CODE_BYTES_PER_LIMB)-L(here), %ecx addl %edx, %ecx ret_internal ') C Must be an even address to preserve the significance of the low C bit of the jump address indicating which way around ecx/ebx should C start. ALIGN(2) L(unroll_inner_start): C eax next limb C ebx carry high C ecx carry low C edx scratch C esi src C edi dst C ebp multiplier forloop(`i', UNROLL_COUNT, 1, ` deflit(`disp_src', eval(-i*4 + OFFSET)) deflit(`disp_dst', eval(disp_src - 4)) m4_assert(`disp_src>=-128 && disp_src<128') m4_assert(`disp_dst>=-128 && disp_dst<128') ifelse(eval(i%2),0,` Zdisp( movl, disp_src,(%esi), %eax) adcl %edx, %ebx mull %ebp Zdisp( addl, %ecx, disp_dst,(%edi)) movl $0, %ecx adcl %eax, %ebx ',` dnl this bit comes out last Zdisp( movl, disp_src,(%esi), %eax) adcl %edx, %ecx mull %ebp Zdisp( addl, %ebx, disp_dst,(%edi)) ifelse(forloop_last,0, ` movl $0, %ebx') adcl %eax, %ecx ') ') C eax next limb C ebx carry high C ecx carry low C edx scratch C esi src C edi dst C ebp multiplier adcl $0, %edx addl %ecx, -4+OFFSET(%edi) movl VAR_JMP, %ecx adcl $0, %edx movl %edx, m4_empty_if_zero(OFFSET) (%edi) movl VAR_COUNTER, %edx incl %edx jnz L(unroll_outer_top) ifelse(OFFSET,0,,` addl $OFFSET, %esi addl $OFFSET, %edi ') C------------------------------------------------------------------------------ L(corner): C esi &src[size] C edi &dst[2*size-5] movl -12(%esi), %ebp movl -8(%esi), %eax movl %eax, %ecx mull %ebp addl %eax, -4(%edi) movl -4(%esi), %eax adcl $0, %edx movl %edx, %ebx movl %eax, %esi mull %ebp addl %ebx, %eax adcl $0, %edx addl %eax, (%edi) movl %esi, %eax adcl $0, %edx movl %edx, %ebx mull %ecx addl %ebx, %eax movl %eax, 4(%edi) adcl $0, %edx movl %edx, 8(%edi) C Left shift of dst[1..2*size-2], high bit shifted out becomes dst[2*size-1]. L(lshift_start): movl PARAM_SIZE, %eax movl PARAM_DST, %edi xorl %ecx, %ecx C clear carry leal (%edi,%eax,8), %edi notl %eax C -size-1, preserve carry leal 2(%eax), %eax C -(size-1) L(lshift): C eax counter, negative C ebx C ecx C edx C esi C edi dst, pointing just after last limb C ebp rcll -4(%edi,%eax,8) rcll (%edi,%eax,8) incl %eax jnz L(lshift) setc %al movl PARAM_SRC, %esi movl %eax, -4(%edi) C dst most significant limb movl PARAM_SIZE, %ecx C Now add in the squares on the diagonal, src[0]^2, src[1]^2, ..., C src[size-1]^2. dst[0] hasn't yet been set at all yet, and just gets the C low limb of src[0]^2. movl (%esi), %eax C src[0] mull %eax leal (%esi,%ecx,4), %esi C src point just after last limb negl %ecx movl %eax, (%edi,%ecx,8) C dst[0] incl %ecx L(diag): C eax scratch C ebx scratch C ecx counter, negative C edx carry C esi src just after last limb C edi dst just after last limb C ebp movl (%esi,%ecx,4), %eax movl %edx, %ebx mull %eax addl %ebx, -4(%edi,%ecx,8) adcl %eax, (%edi,%ecx,8) adcl $0, %edx incl %ecx jnz L(diag) movl SAVE_ESI, %esi movl SAVE_EBX, %ebx addl %edx, -4(%edi) C dst most significant limb movl SAVE_EDI, %edi movl SAVE_EBP, %ebp addl $FRAME, %esp ret EPILOGUE()
19.1984
79
0.646887
27292fc1e029fa9a4f815c46b84dad67866c04db
540
sql
SQL
sql/seedscan/postgres_database/functions/fnsclgetchannels.sql
jholland-usgs/asl-java-tools
7a7d99dfcd5645f3fe25aaafc0c96e873c1e216a
[ "PostgreSQL", "Apache-2.0" ]
1
2021-05-18T18:14:05.000Z
2021-05-18T18:14:05.000Z
sql/seedscan/postgres_database/functions/fnsclgetchannels.sql
jholland-usgs/asl-java-tools
7a7d99dfcd5645f3fe25aaafc0c96e873c1e216a
[ "PostgreSQL", "Apache-2.0" ]
null
null
null
sql/seedscan/postgres_database/functions/fnsclgetchannels.sql
jholland-usgs/asl-java-tools
7a7d99dfcd5645f3fe25aaafc0c96e873c1e216a
[ "PostgreSQL", "Apache-2.0" ]
null
null
null
CREATE OR REPLACE FUNCTION public.fnsclgetchannels(integer[]) RETURNS text LANGUAGE plpgsql STABLE AS $function$ DECLARE stationIDs alias for $1; channelString TEXT; BEGIN SELECT INTO channelString string_agg( CONCAT( 'C,' , pkchannelID , ',' , name , ',' , tblSensor.location , ',' , fkStationID ) , E'\n' ) FROM tblChannel JOIN tblSensor ON tblChannel.fkSensorID = tblSensor.pkSensorID WHERE tblSensor.fkStationID = any(stationIDs) ; RETURN channelString; END; $function$
15.882353
61
0.672222
d001df3653d58b0672a49fc95da4377fce12ea16
282
sql
SQL
mysql_config/WebMonitoring/functions/resource_statistics_time/resource_statistics_all_time/resource_statistic_standard_deviation_time.sql
raresraf/rafMetrics
21eb5e8210364bf70eee746d71c45f3e353dcb10
[ "MIT" ]
15
2019-11-03T18:01:27.000Z
2021-05-05T20:54:57.000Z
mysql_config/WebMonitoring/functions/resource_statistics_time/resource_statistics_all_time/resource_statistic_standard_deviation_time.sql
raresraf/rafMetrics
21eb5e8210364bf70eee746d71c45f3e353dcb10
[ "MIT" ]
392
2019-11-09T21:28:01.000Z
2022-03-31T13:04:45.000Z
mysql_config/WebMonitoring/functions/resource_statistics_time/resource_statistics_all_time/resource_statistic_standard_deviation_time.sql
raresraf/rafMetrics
21eb5e8210364bf70eee746d71c45f3e353dcb10
[ "MIT" ]
1
2021-03-11T18:35:16.000Z
2021-03-11T18:35:16.000Z
delimiter // DROP FUNCTION IF EXISTS resource_statistic_standard_deviation_time; CREATE FUNCTION resource_statistic_standard_deviation_time() RETURNS FLOAT BEGIN DECLARE STD_DEV FLOAT; select STD(ResponseTime) into STD_DEV from PING; RETURN STD_DEV; END// delimiter ;
23.5
74
0.808511
b4e91567d054c29dc52a721d2c766fbd2c4ac849
4,430
lua
Lua
examples/example-4b.lua
remyroez/DxLua
ac3dcdae6c3c10035a5cf9cdcfebc9e71020b396
[ "MIT" ]
2
2020-04-08T17:35:04.000Z
2020-04-14T13:11:55.000Z
examples/example-4b.lua
remyroez/DxLua
ac3dcdae6c3c10035a5cf9cdcfebc9e71020b396
[ "MIT" ]
1
2020-04-11T09:30:51.000Z
2020-04-11T09:30:51.000Z
examples/example-4b.lua
remyroez/DxLua
ac3dcdae6c3c10035a5cf9cdcfebc9e71020b396
[ "MIT" ]
null
null
null
-- マップスクロール基本(滑らか) local band = bit.band local MAP_SIZE = 64 -- マップチップ一つのドットサイズ local MAP_WIDTH = 20 -- マップの幅 local MAP_HEIGHT = 16 -- マップの縦長さ local MOVE_FRAME = 32 -- 移動にかけるフレーム数 -- マップのデータ local MapData = { { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, { 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0 }, { 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0 }, { 0, 1, 1, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0 }, { 0, 1, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 0, 1, 0 }, { 0, 1, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 1, 1, 0, 1, 0 }, { 0, 1, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 1, 1, 0, 1, 0 }, { 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 0, 1, 0 }, { 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 1, 0 }, { 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 1, 0 }, { 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 1, 0 }, { 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 1, 0 }, { 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0 }, { 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0 }, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, } -- 画面モードのセット dx.SetGraphMode(640, 480, 16) -- プレイヤーの位置 local PlayerX, PlayerY -- 移動しているかどうかのフラグ( 0:停止中 1:移動中 ) local Move -- 各方向に移動する量 local MoveX, MoveY -- 移動し始めてから何フレーム経過したかを保持する変数 local MoveCounter -- マップとプレイヤーの描画関数 function GraphDraw(ScrollX, ScrollY) local j, i local MapDrawPointX, MapDrawPointY -- 描画するマップ座標値 local DrawMapChipNumX, DrawMapChipNumY -- 描画するマップチップの数 -- 描画するマップチップの数をセット -- DxLua: 数値は double 型のため小数点以下切り捨て DrawMapChipNumX = math.floor(640 / MAP_SIZE) + 2 DrawMapChipNumY = math.floor(480 / MAP_SIZE) + 2 -- 画面左上に描画するマップ座標をセット MapDrawPointX = PlayerX - math.floor(DrawMapChipNumX / 2 - 1) - 1 MapDrawPointY = PlayerY - math.floor(DrawMapChipNumY / 2 - 1) - 1 -- マップを描く for i = 0, DrawMapChipNumY do for j = 0, DrawMapChipNumX do local x, y = j - 1, i - 1 -- DxLua: Lua の配列のインデックスは 1 からのため調整 -- 画面からはみ出た位置なら描画しない if (x + MapDrawPointX < 0 or y + MapDrawPointY < 0 or x + MapDrawPointX >= MAP_WIDTH or y + MapDrawPointY >= MAP_HEIGHT) then -- DxLua: Lua に continue はない elseif MapData[i + MapDrawPointY][j + MapDrawPointX] == 0 then -- マップデータが0だったら四角を描画する dx.DrawBox(x * MAP_SIZE + ScrollX, y * MAP_SIZE + ScrollY, x * MAP_SIZE + MAP_SIZE + ScrollX, y * MAP_SIZE + MAP_SIZE + ScrollY, dx.GetColor(255, 0, 0), true) end end end -- プレイヤーの描画 dx.DrawBox((PlayerX - MapDrawPointX - 1) * MAP_SIZE, (PlayerY - MapDrawPointY - 1) * MAP_SIZE, (PlayerX - MapDrawPointX) * MAP_SIZE, (PlayerY - MapDrawPointY) * MAP_SIZE, dx.GetColor(255, 255, 255), true) end local Key local ScrollX, ScrollY -- DXライブラリ初期化処理 function dx.Init() -- 描画先画面を裏画面にする dx.SetDrawScreen(dx.DX_SCREEN_BACK) -- プレイヤーの初期位置をセット -- DxLua: Lua の配列のインデックスは 1 からのため調整 PlayerX = 3 PlayerY = 3 -- 最初は停止中(0)にしておく Move = 0 end -- ループ function dx.Update() -- 画面を初期化 dx.ClearDrawScreen() -- 移動中ではない場合キー入力を受け付ける if Move == 0 then -- キー入力を得る Key = dx.GetJoypadInputState(dx.DX_INPUT_KEY_PAD1) -- 移動する前のプレイヤーの位置を保存 OldX = PlayerX OldY = PlayerY -- キー入力に応じてプレイヤーの座標を移動 if band(Key, dx.PAD_INPUT_LEFT) ~= 0 then Move = 1 MoveX = -1 MoveY = 0 end if band(Key, dx.PAD_INPUT_RIGHT) ~= 0 then Move = 1 MoveX = 1 MoveY = 0 end if band(Key, dx.PAD_INPUT_UP) ~= 0 then Move = 1 MoveX = 0 MoveY = -1 end if band(Key, dx.PAD_INPUT_DOWN) ~= 0 then Move = 1 MoveX = 0 MoveY = 1 end -- 進入不可能なマップだった場合は移動できない if Move == 1 then if MapData[PlayerY + MoveY][PlayerX + MoveX] == 0 then Move = 0 else MoveCounter = 0 end end -- 停止中は画面のスクロールは行わない ScrollX = 0 ScrollY = 0 end -- 移動中の場合は移動処理を行う if Move == 1 then MoveCounter = MoveCounter + 1 -- 移動処理が終了したら停止中にする if MoveCounter == MOVE_FRAME then Move = 0 -- プレイヤーの位置を変更する PlayerX = PlayerX + MoveX PlayerY = PlayerY + MoveY -- 停止中は画面のスクロールは行わない ScrollX = 0 ScrollY = 0 else -- 経過時間からスクロール量を算出する ScrollX = -math.floor( MoveX * MAP_SIZE * MoveCounter / MOVE_FRAME ) ScrollY = -math.floor( MoveY * MAP_SIZE * MoveCounter / MOVE_FRAME ) end end -- マップとプレイヤーを描画 GraphDraw(ScrollX, ScrollY) -- 裏画面の内容を表画面に映す dx.ScreenFlip() end
24.20765
95
0.586907
3bfca9974fde0db9b92c8e24e2e6fc0fa20f4839
7,178
c
C
SOFTWARE/nokia5110.c
maperales/MAPESYNTH
a98228e2448f52111710328567ff6939f98f6613
[ "CC0-1.0" ]
null
null
null
SOFTWARE/nokia5110.c
maperales/MAPESYNTH
a98228e2448f52111710328567ff6939f98f6613
[ "CC0-1.0" ]
null
null
null
SOFTWARE/nokia5110.c
maperales/MAPESYNTH
a98228e2448f52111710328567ff6939f98f6613
[ "CC0-1.0" ]
null
null
null
/* * nokia5110.c * * Created on: 7 sept. 2017 * Author: ManoloP */ #include <mapesynth.h> #include <msp430.h> #include "nokia5110.h" void init_hw(void){ /*WDTCTL = WDTPW + WDTHOLD; // disable WDT BCSCTL1 = CALBC1_1MHZ; // 1MHz clock DCOCTL = CALDCO_1MHZ;*/ // //P3OUT |= LCD5110_SCE_PIN + LCD5110_DC_PIN; //P3OUT &= LCD5110_SCLK_PIN; //P3DIR |= LCD5110_SCE_PIN + LCD5110_DC_PIN+LCD5110_SCLK_PIN + LCD5110_DN_PIN; /*************** * SPI NOKIA: MSB, CLK en reposo a 0, lee en flanco de subida: * Poner CS, poner bit, poner CLK, quitar CLK poniendo siguiente bit, repetir... * **************/ } void initLCD() { writeToLCD(LCD5110_COMMAND, PCD8544_FUNCTIONSET | PCD8544_EXTENDEDINSTRUCTION); writeToLCD(LCD5110_COMMAND, PCD8544_SETVOP | 0x3F); writeToLCD(LCD5110_COMMAND, PCD8544_SETTEMP | 0x02); writeToLCD(LCD5110_COMMAND, PCD8544_SETBIAS | 0x03); writeToLCD(LCD5110_COMMAND, PCD8544_FUNCTIONSET); writeToLCD(LCD5110_COMMAND, PCD8544_DISPLAYCONTROL | PCD8544_DISPLAYNORMAL); } void writeToLCD(unsigned char dataCommand, unsigned char data) { unsigned char i; LCD5110_SELECT; if(dataCommand) { LCD5110_SET_DATA; } else { LCD5110_SET_COMMAND; } if(data&0x80) { P3OUT |= LCD5110_DN_PIN; } else { P3OUT &=~LCD5110_DN_PIN; } for(i=0x40;i;i=i>>1) { P3OUT |= LCD5110_SCLK_PIN; //Flanco de subida de reloj if(data&i) { P3OUT |= LCD5110_DN_PIN; //Si dato ==1: pongo D=1, CLK=0 P3OUT &=~LCD5110_SCLK_PIN; } else { P3OUT &=~(LCD5110_DN_PIN+LCD5110_SCLK_PIN); //si no, pongo D=0, CLK=0 } } P3OUT |= LCD5110_SCLK_PIN; //Flanco de subida de reloj P3OUT &=~LCD5110_SCLK_PIN; // Ultimo flanco de bajada LCD5110_DESELECT; } void writeStringToLCD(const char *string) { while(*string) { writeCharToLCD(*string++); } } void writeCharToLCD(char c) { unsigned char i; for(i = 0; i < 5; i++) { writeToLCD(LCD5110_DATA, font[c - 0x20][i]); } writeToLCD(LCD5110_DATA, 0); } void writeBlockToLCD(char *byte, unsigned int length) { unsigned int c = 0; while(c < length) { writeToLCD(LCD5110_DATA, *byte++); c++; } } void writeGraphicToLCD(char *byte, unsigned char transform) { int c = 0; char block[8]; if(transform & FLIP_V) { SPI_LSB_FIRST; } if(transform & ROTATE) { c = 1; while(c != 0) { (*byte & 0x01) ? (block[7] |= c) : (block[7] &= ~c); (*byte & 0x02) ? (block[6] |= c) : (block[6] &= ~c); (*byte & 0x04) ? (block[5] |= c) : (block[5] &= ~c); (*byte & 0x08) ? (block[4] |= c) : (block[4] &= ~c); (*byte & 0x10) ? (block[3] |= c) : (block[3] &= ~c); (*byte & 0x20) ? (block[2] |= c) : (block[2] &= ~c); (*byte & 0x40) ? (block[1] |= c) : (block[1] &= ~c); (*byte & 0x80) ? (block[0] |= c) : (block[0] &= ~c); *byte++; c <<= 1; } } else { while(c < 8) { block[c++] = *byte++; } } if(transform & FLIP_H) { c = 7; while(c > -1) { writeToLCD(LCD5110_DATA, block[c--]); } } else { c = 0; while(c < 8) { writeToLCD(LCD5110_DATA, block[c++]); } } SPI_MSB_FIRST; } void clearLCD() { int c = 0; setAddr(0, 0); while(c < PCD8544_MAXBYTES) { writeToLCD(LCD5110_DATA, 0); c++; } setAddr(0, 0); } void clearBank(unsigned char bank) { int c = 0; setAddr(0, bank); while(c < PCD8544_HPIXELS) { writeToLCD(LCD5110_DATA, 0); c++; } setAddr(0, bank); } void setAddr(unsigned char xAddr, unsigned char yAddr) { writeToLCD(LCD5110_COMMAND, PCD8544_SETXADDR | xAddr); writeToLCD(LCD5110_COMMAND, PCD8544_SETYADDR | yAddr); } void setChAddr(unsigned char xAddr, unsigned char yAddr) { if(xAddr<14){ xAddr=xAddr*6;} else {xAddr=0;} writeToLCD(LCD5110_COMMAND, PCD8544_SETYADDR | yAddr); writeToLCD(LCD5110_COMMAND, PCD8544_SETXADDR |xAddr); } void escribe(char col, char lin, char *cadena) { setAddr(col, lin); writeStringToLCD(cadena); } const unsigned char Logotipo [] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0xc0, 0xe0, 0xe0, 0xe0, 0xe0, 0xe0, 0xe0, 0xe0, 0xe0, 0xe0, 0xc0, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x80, 0xc0, 0xc0, 0xe0, 0xe0, 0x60, 0xe0, 0xe0, 0xe0, 0xe0, 0x00, 0x00, 0xe0, 0xe0, 0xe0, 0xe0, 0xe0, 0x60, 0x60, 0x60, 0x60, 0x60, 0xe0, 0xe0, 0xc0, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0xc0, 0xc0, 0xe0, 0xe0, 0x60, 0x60, 0x60, 0x60, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xfe, 0xff, 0xff, 0x0f, 0x03, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x03, 0x3f, 0xff, 0xff, 0xfc, 0xc0, 0x00, 0x00, 0xe0, 0xfc, 0xff, 0xff, 0xef, 0xe3, 0x61, 0x70, 0x70, 0x70, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x30, 0x30, 0x38, 0x38, 0x1c, 0x1c, 0x1f, 0x0f, 0x07, 0x03, 0x00, 0x00, 0xe0, 0xfc, 0xfe, 0xff, 0xff, 0xe7, 0x71, 0x70, 0x70, 0x30, 0x30, 0x30, 0x30, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1f, 0x3f, 0x3f, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x3f, 0x3f, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x3f, 0x3f, 0x3f, 0x1f, 0x00, 0x00, 0x1f, 0x3f, 0x3f, 0x1f, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3f, 0x3f, 0x3f, 0x1f, 0x00, 0x00, 0x1f, 0x3f, 0x3f, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x0f, 0x1f, 0x1f, 0x39, 0x38, 0x38, 0x38, 0x38, 0x38, 0x1c, 0x1e, 0x0e, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xe0, 0xf0, 0xf8, 0x38, 0x38, 0x18, 0x1c, 0x1c, 0x1c, 0x1c, 0x0c, 0x08, 0x00, 0x00, 0xf0, 0xfc, 0xfc, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0xfc, 0xfc, 0xf8, 0x00, 0x00, 0xf8, 0xfc, 0xfc, 0xfc, 0x1c, 0x18, 0x38, 0x78, 0xf0, 0xf0, 0xe0, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0c, 0x0c, 0x0c, 0x0c, 0xfc, 0xfc, 0xfc, 0xfc, 0x1c, 0x1c, 0x0c, 0x0c, 0x08, 0x00, 0x00, 0xf8, 0xfc, 0xfc, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0xfc, 0xfc, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x07, 0x07, 0x0f, 0x0e, 0x0c, 0x0c, 0x0c, 0x0c, 0x8c, 0xfc, 0xfc, 0xf8, 0x70, 0x00, 0x00, 0x01, 0x03, 0x07, 0x07, 0x0f, 0xfe, 0xfc, 0xfc, 0xfe, 0x0e, 0x0f, 0x07, 0x07, 0x03, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x0c, 0x0c, 0x1c, 0x1c, 0x3c, 0x78, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x07, 0x07, 0x03, 0x03, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x07, 0x07, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x07, 0x07, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x07, 0x07, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x07, 0x07, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x07, 0x07, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x07, 0x07, 0x07, 0x00, 0x00, 0x00};
31.902222
96
0.623015
dd7836a8dbc6b29552685561641cfd3a9cc2bb76
547
php
PHP
database/seeds/ProjectFeedbacksTableSeeder.php
timmyru/freelance
65f7f9ebf7cd594d32c4f1894b036f7cda578f06
[ "MIT" ]
null
null
null
database/seeds/ProjectFeedbacksTableSeeder.php
timmyru/freelance
65f7f9ebf7cd594d32c4f1894b036f7cda578f06
[ "MIT" ]
null
null
null
database/seeds/ProjectFeedbacksTableSeeder.php
timmyru/freelance
65f7f9ebf7cd594d32c4f1894b036f7cda578f06
[ "MIT" ]
null
null
null
<?php use Illuminate\Database\Seeder; use App\ProjectFeedback; class ProjectFeedbacksTableSeeder extends Seeder { /** * Run the database seeds. * * @return void */ public function run() { DB::table('projects')->delete(); for ($i=1; $i<21; $i++) { ProjectFeedback::create([ 'project_feedbacks_project_id' => rand(1,20), 'project_feedbacks_user_id' => rand(1,5), 'project_feedbacks_leading_status' => 'Заявка на рассмотрении', ]); } } }
21.038462
79
0.568556
9de35edf316e9fd33630f722a8ab6fb07aab0d2a
4,635
swift
Swift
Commun/Vendor/Base/Fetchers/ListFetcher.swift
communcom/ios-client
dee16bcd485846476379d09b5dea9e802abfc14d
[ "MIT" ]
null
null
null
Commun/Vendor/Base/Fetchers/ListFetcher.swift
communcom/ios-client
dee16bcd485846476379d09b5dea9e802abfc14d
[ "MIT" ]
null
null
null
Commun/Vendor/Base/Fetchers/ListFetcher.swift
communcom/ios-client
dee16bcd485846476379d09b5dea9e802abfc14d
[ "MIT" ]
3
2020-10-25T13:55:59.000Z
2021-01-28T21:14:58.000Z
// // ListFetcher.swift // Commun // // Created by Chung Tran on 10/23/19. // Copyright © 2019 Commun Limited. All rights reserved. // import Foundation import RxSwift import RxCocoa import CyberSwift typealias FilterType = Equatable enum ListFetcherState: Equatable { static func == (lhs: ListFetcherState, rhs: ListFetcherState) -> Bool { switch (lhs, rhs) { case (.loading(let loading1), .loading(let loading2)): return loading1 == loading2 case (.listEnded, .listEnded): return true case (.error(let error1), .error(let error2)): return error1.localizedDescription == error2.localizedDescription case (.listEmpty, .listEmpty): return true default: return false } } case loading(Bool) case listEnded case listEmpty case error(error: Error) var lastError: Error? { switch self { case .error(let error): return error default: return nil } } } class ListFetcher<T: ListItemType> { public typealias ItemIdentifier = T.Identity // MARK: - Constants var isPaginationEnabled: Bool {true} // MARK: - Parammeters var limit = UInt(Config.paginationLimit) var offset: UInt = 0 private var reloadClearedResult = true public lazy var rowHeights = [ItemIdentifier: CGFloat]() // MARK: - Properties let disposeBag = DisposeBag() let state = BehaviorRelay<ListFetcherState>(value: .loading(false)) var request: Single<[T]> { fatalError("Must override") } let items = BehaviorRelay<[T]>(value: []) // MARK: - Methods func reset(clearResult: Bool = true) { state.accept(.loading(false)) if clearResult { items.accept([]) } else { items.accept(Array(items.value.prefix(Int(limit)))) } reloadClearedResult = clearResult offset = 0 } func fetchNext(forceRetry: Bool = false) { // prevent dupplicate switch state.value { case .loading(let isLoading): if isLoading {return} case .listEnded, .listEmpty: return case .error: if !forceRetry { return } } // assign loading state state.accept(.loading(true)) // send request request .subscribe(onSuccess: { (items) in self.handleNewData(items) }, onError: {error in self.state.accept(.error(error: error)) }) .disposed(by: disposeBag) } func handleNewData(_ items: [T]) { self.items.accept(self.join(newItems: items)) // resign state self.modifyStateAfterRequest(itemsCount: items.count) // get next offset self.offset += self.limit } func modifyStateAfterRequest(itemsCount: Int) { if self.isPaginationEnabled { if itemsCount == 0 { if self.offset == 0 { self.state.accept(.listEmpty) } else { if self.items.value.count > 0 { self.state.accept(.listEnded) } } } else if itemsCount < self.limit { self.state.accept(.listEnded) } else if itemsCount > self.limit { self.state.accept(.listEnded) } else { self.state.accept(.loading(false)) } } else { self.state.accept(itemsCount == 0 ? .listEmpty: .listEnded) } } func join(newItems items: [T]) -> [T] { var updatedItems = [T]() // add new items if !reloadClearedResult { reloadClearedResult = true updatedItems = items updatedItems.joinUnique(self.items.value) } else { updatedItems = self.items.value updatedItems.joinUnique(items) } // update current items updatedItems = updatedItems.map { var mutableItem = $0 // if item exists in list, update it if let newItem = items.first(where: {$0.identity == mutableItem.identity}), let updatedItem = mutableItem.newUpdatedItem(from: newItem) { mutableItem = updatedItem } return mutableItem } return updatedItems } }
27.754491
87
0.535275
5b11f854bc849e34d2bd2e3cd2ca05770a1153e3
1,317
swift
Swift
TheMovieRxTests/Networking/ApiControllerTest.swift
sc010575/SCRXSwiftProject
55533e37a62c6bb50bb0a8e8ef64c54eb83574b7
[ "MIT" ]
1
2019-09-17T15:46:33.000Z
2019-09-17T15:46:33.000Z
TheMovieRxTests/Networking/ApiControllerTest.swift
sc010575/SCRXSwiftProject
55533e37a62c6bb50bb0a8e8ef64c54eb83574b7
[ "MIT" ]
null
null
null
TheMovieRxTests/Networking/ApiControllerTest.swift
sc010575/SCRXSwiftProject
55533e37a62c6bb50bb0a8e8ef64c54eb83574b7
[ "MIT" ]
null
null
null
import Quick import Nimble import RxSwift import RxBlocking @testable import TheMovieRx class ApiControllerTest: QuickSpec { var server: MockServer! var apiController = ApiController() let scheduler = ConcurrentDispatchQueueScheduler(qos: .default) override func spec() { describe("ApiResource Test") { context("When call load movie with a movie id") { beforeEach { self.server = MockServer() } afterEach { self.server.stop() } it("should return movie detail observable") { self.server.respondToMovieDetails().start() let s = self.apiController.loadFor(297802).asObservable().observeOn(self.scheduler).toBlocking(timeout: 1.0).materialize() switch s { case .completed(elements: let elements): let detail = elements.compactMap { return $0 } expect(detail[0].originalTitle).toEventually(equal("Aquaman")) expect(detail[0].homepage).toEventually(equal("http://www.aquamanmovie.com")) case .failed(_, error: _): break } } } } } }
35.594595
142
0.539863
dc1622075a86528aa0fc46381782fc1f41e91b6a
1,420
py
Python
rigl/experimental/jax/train_test.py
vishalbelsare/rigl
f18abc7d82ae3acc6736068408a0186c9efa575c
[ "Apache-2.0" ]
276
2019-11-25T22:05:45.000Z
2022-03-30T11:55:34.000Z
rigl/experimental/jax/train_test.py
vishalbelsare/rigl
f18abc7d82ae3acc6736068408a0186c9efa575c
[ "Apache-2.0" ]
10
2020-02-26T14:53:50.000Z
2021-09-08T16:27:28.000Z
rigl/experimental/jax/train_test.py
vishalbelsare/rigl
f18abc7d82ae3acc6736068408a0186c9efa575c
[ "Apache-2.0" ]
54
2019-11-26T18:50:33.000Z
2022-03-29T20:08:08.000Z
# coding=utf-8 # Copyright 2021 RigL Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # Lint as: python3 """Tests for weight_symmetry.train.""" import glob from os import path import tempfile from absl.testing import absltest from absl.testing import flagsaver from rigl.experimental.jax import train class TrainTest(absltest.TestCase): def test_train_driver_run(self): """Tests that the training driver runs, and outputs a TF summary.""" experiment_dir = tempfile.mkdtemp() eval_flags = dict( epochs=1, experiment_dir=experiment_dir, ) with flagsaver.flagsaver(**eval_flags): train.main([]) with self.subTest(name='tf_summary_file_exists'): outfile = path.join(experiment_dir, '*', 'events.out.tfevents.*') files = glob.glob(outfile) self.assertTrue(len(files) == 1 and path.exists(files[0])) if __name__ == '__main__': absltest.main()
29.583333
74
0.725352
95c2756aec58177ec28893fe9ef326dca82fc8ef
3,472
html
HTML
javadoc/allclasses-noframe.html
jakegoodman01/internet-investigators
d6cc33e98357394e699f259b4e8aa767bd572f88
[ "MIT" ]
null
null
null
javadoc/allclasses-noframe.html
jakegoodman01/internet-investigators
d6cc33e98357394e699f259b4e8aa767bd572f88
[ "MIT" ]
null
null
null
javadoc/allclasses-noframe.html
jakegoodman01/internet-investigators
d6cc33e98357394e699f259b4e8aa767bd572f88
[ "MIT" ]
null
null
null
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (10) on Thu Jun 07 05:36:40 EDT 2018 --> <title>All Classes</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta name="date" content="2018-06-07"> <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="jquery/jquery-ui.css" title="Style"> <script type="text/javascript" src="script.js"></script> <script type="text/javascript" src="jquery/jszip/dist/jszip.min.js"></script> <script type="text/javascript" src="jquery/jszip-utils/dist/jszip-utils.min.js"></script> <!--[if IE]> <script type="text/javascript" src="jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script> <![endif]--> <script type="text/javascript" src="jquery/jquery-1.10.2.js"></script> <script type="text/javascript" src="jquery/jquery-ui.js"></script> </head> <body> <h1 class="bar">All&nbsp;Classes</h1> <div class="indexContainer"> <ul> <li><a href="classes/BackgroundMusic.html" title="class in classes">BackgroundMusic</a></li> <li><a href="classes/Briefing1.html" title="class in classes">Briefing1</a></li> <li><a href="classes/Briefing2.html" title="class in classes">Briefing2</a></li> <li><a href="classes/Briefing3.html" title="class in classes">Briefing3</a></li> <li><a href="classes/Briefing4.html" title="class in classes">Briefing4</a></li> <li><a href="classes/Briefing5.html" title="class in classes">Briefing5</a></li> <li><a href="classes/Briefing6.html" title="class in classes">Briefing6</a></li> <li><a href="classes/Chatbox.html" title="class in classes">Chatbox</a></li> <li><a href="classes/Credits.html" title="class in classes">Credits</a></li> <li><a href="classes/Enter.html" title="class in classes">Enter</a></li> <li><a href="classes/FinalResults.html" title="class in classes">FinalResults</a></li> <li><a href="classes/HighScores.html" title="class in classes">HighScores</a></li> <li><a href="classes/Hint.html" title="class in classes">Hint</a></li> <li><a href="classes/Intro.html" title="class in classes">Intro</a></li> <li><a href="classes/LevelBuilder.html" title="class in classes">LevelBuilder</a></li> <li><a href="Main.html" title="class in &lt;Unnamed&gt;">Main</a></li> <li><a href="classes/MainMenu.html" title="class in classes">MainMenu</a></li> <li><a href="classes/Person.html" title="class in classes">Person</a></li> <li><a href="classes/Photo.html" title="class in classes">Photo</a></li> <li><a href="classes/PicturePost.html" title="class in classes">PicturePost</a></li> <li><a href="classes/Pinboard.html" title="class in classes">Pinboard</a></li> <li><a href="classes/Post.html" title="class in classes">Post</a></li> <li><a href="classes/Profile.html" title="class in classes">Profile</a></li> <li><a href="classes/Runner.html" title="class in classes">Runner</a></li> <li><a href="classes/Splashscreen.html" title="class in classes">Splashscreen</a></li> <li><a href="classes/TextArea.html" title="class in classes">TextArea</a></li> <li><a href="classes/TextPost.html" title="class in classes">TextPost</a></li> <li><a href="classes/TextScreen.html" title="class in classes">TextScreen</a></li> <li><a href="classes/Timeline.html" title="class in classes">Timeline</a></li> <li><a href="classes/Type.html" title="class in classes">Type</a></li> </ul> </div> </body> </html>
59.862069
102
0.702765
fbe3ba0444801d5fddab01abc582217386596f87
1,792
java
Java
src/main/java/com/MyUniApp/MyUniAppBack/Controller/MapController.java
ecingnovation/MyUniAppBack
6601f83c8630c6384be01b57e6e1ed52f85a2d6d
[ "MIT" ]
null
null
null
src/main/java/com/MyUniApp/MyUniAppBack/Controller/MapController.java
ecingnovation/MyUniAppBack
6601f83c8630c6384be01b57e6e1ed52f85a2d6d
[ "MIT" ]
null
null
null
src/main/java/com/MyUniApp/MyUniAppBack/Controller/MapController.java
ecingnovation/MyUniAppBack
6601f83c8630c6384be01b57e6e1ed52f85a2d6d
[ "MIT" ]
null
null
null
package com.MyUniApp.MyUniAppBack.Controller; import com.MyUniApp.MyUniAppBack.Model.InterestPoint; import com.MyUniApp.MyUniAppBack.Repositories.MapsRepository; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.http.HttpStatus; import org.springframework.http.ResponseEntity; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.RestController; import java.util.List; @RestController @RequestMapping(value = "/map") public class MapController { @Autowired MapsRepository ms; @RequestMapping(value = "/points", method = RequestMethod.GET) public List<InterestPoint> getAllInterestPoints() { List<InterestPoint> json = ms.findAll(); return json; } @RequestMapping(value = "/points/{id}", method = RequestMethod.GET) public InterestPoint getInterestPointById(@PathVariable("id") String id) { InterestPoint json = ms.findById(id).get(); return json; } @RequestMapping(value = "/points", produces = "application/json", method=RequestMethod.POST) public ResponseEntity<?> createPoint(String id, String title, String label, Double lng, Double lat, String description, String image){ ms.save(new InterestPoint(id,description,title,label,lng,lat,image)); return new ResponseEntity<>(HttpStatus.ACCEPTED); } @RequestMapping(path = "/points/{id}",method = RequestMethod.DELETE) public ResponseEntity<?> removePlayer(@PathVariable("id") String id) { ms.deleteById(id); return new ResponseEntity<>(HttpStatus.ACCEPTED); } }
37.333333
138
0.733259
7401adae0540cf943411d163a25ae3cf30f9a919
2,876
ps1
PowerShell
Microsoft.PowerShell_profile.ps1
mwanchap/stuff
dd010b9042733d749ee94a38cd9a52647050e6d6
[ "MIT" ]
null
null
null
Microsoft.PowerShell_profile.ps1
mwanchap/stuff
dd010b9042733d749ee94a38cd9a52647050e6d6
[ "MIT" ]
13
2018-08-20T04:49:13.000Z
2019-10-07T01:22:14.000Z
Microsoft.PowerShell_profile.ps1
mwanchap/stuff
dd010b9042733d749ee94a38cd9a52647050e6d6
[ "MIT" ]
1
2018-06-27T02:33:58.000Z
2018-06-27T02:33:58.000Z
Import-Module 'C:\tools\poshgit\dahlbyk-posh-git-9bda399\src\posh-git.psd1' # ALIASES Set-Alias csi "C:\Program Files (x86)\Microsoft Visual Studio\2019\**\MSBuild\Current\Bin\Roslyn\csi.exe" Set-Alias hex "C:\Program Files\HxD\HxD.exe" Set-Alias sfdx 'C:\Program Files\Salesforce CLI\bin\sfdx.cmd' Clear-Host [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]::Tls12 function prompt { #$p = Split-Path -leaf -path (Get-Location) #just gets last part of path $origLastExitCode = $LASTEXITCODE Write-Host $ExecutionContext.SessionState.Path.CurrentLocation -NoNewline Write-VcsStatus $LASTEXITCODE = $origLastExitCode "`n$('>' * ($nestedPromptLevel + 1))" } function search { #todo: need a way to exclude binary files param ( [string]$filePattern="*.*", [string]$searchStr ) get-childitem $filePattern -Recurse | sls $searchStr -Context 1,1 } function Obliterate { remove-item $args -force -recurse -confirm } function SFFields { (force describe -n="$($args[0])" -t=sobject | ConvertFrom-Json).Fields | Sort-Object name | Select-Object -ExpandProperty name } function SFUser { <# .SYNOPSIS Opens the Salesforce user profile page for the first user returned by a query for a partial username match .EXAMPLE SFUser matt.wanchap .PARAMETER The only parameter is the username, which does not need to be complete. The query uses LIKE so only part of the name needs to be provided. #> [CmdletBinding()] param ( [Parameter(Mandatory)] [string]$username ) $users = (force query --format csv "select id from user where username like '%$username%' and isactive=true" | convertfrom-csv) if($users.Count -eq 0) { Write-Host "No users found"; return; } else { foreach($user in $users) { Start-Process -filepath "https://cpal.my.salesforce.com/$($user.Id)?noredirect=1&isUserEntityOverride=1" } } } function SFUserID { (force query "SELECT Id FROM User WHERE Name LIKE '%$($args[0])%' LIMIT 1" --format:csv | ConvertFrom-Csv).Id } function SFQuery { force query --format json $args[0] | ConvertFrom-Json } function SFUpdate { Param($Type, $Where, $Update) #eg: SFUpdate -Type Contact -Where "OwnerId='$(sfuserid Kirsty)'" -Update "OwnerId:$(sfuserid Isabelle)" force query "select Id FROM $Type WHERE $Where" --format:csv | ConvertFrom-Csv | % {force record update $Type $_.Id $Update } } function SFRecTypes { force describe -t=sobject -n="$($args[0])" | convertfrom-json | Select-Object -ExpandProperty recordTypeInfos } # Chocolatey profile $ChocolateyProfile = "$env:ChocolateyInstall\helpers\chocolateyProfile.psm1" if (Test-Path($ChocolateyProfile)) { Import-Module "$ChocolateyProfile" }
27.653846
147
0.680111
13aca4f0e73f5cc400d1d6a47225e333c3ac6492
8,806
dart
Dart
practice_chat/lib/src/home_screen.dart
Atom735/surf-practice-chat
8a91f0eb89f54c16fe4401cd135206c0232d488e
[ "MIT" ]
null
null
null
practice_chat/lib/src/home_screen.dart
Atom735/surf-practice-chat
8a91f0eb89f54c16fe4401cd135206c0232d488e
[ "MIT" ]
null
null
null
practice_chat/lib/src/home_screen.dart
Atom735/surf-practice-chat
8a91f0eb89f54c16fe4401cd135206c0232d488e
[ "MIT" ]
null
null
null
import 'package:flutter/material.dart'; import 'profile_screen.dart'; void kVoid() {} class ProfileButtonWidget extends StatelessWidget { const ProfileButtonWidget({Key? key}) : super(key: key); @override Widget build(BuildContext context) => const CircleAvatar(); } class WelcomeUserTile extends StatelessWidget { const WelcomeUserTile({Key? key}) : super(key: key); @override Widget build(BuildContext context) { final theme = Theme.of(context); final styleTitle = theme.typography.englishLike.titleMedium! .copyWith(color: theme.colorScheme.onBackground.withOpacity(0.5)); final styleUserName = theme.typography.englishLike.titleLarge! .copyWith(color: theme.colorScheme.onBackground); return Row( children: [ Expanded( child: Padding( padding: const EdgeInsets.all(16), child: Column( crossAxisAlignment: CrossAxisAlignment.stretch, children: [ Text( 'Good morning', style: styleTitle, softWrap: false, maxLines: 1, overflow: TextOverflow.fade, ), Text( 'Gilyazeev Adel', style: styleUserName, softWrap: false, maxLines: 1, overflow: TextOverflow.fade, ), ], ), ), ), const IconButton(onPressed: kVoid, icon: Icon(Icons.search)), const SizedBox(width: 16), const ProfileButtonWidget(), const SizedBox(width: 16), ], ); } } class StoryOpenBtn extends StatelessWidget { const StoryOpenBtn({Key? key}) : super(key: key); @override Widget build(BuildContext context) => const Padding( padding: EdgeInsets.all(8), child: AvatarAnimated( child: CircleAvatar( radius: 32, child: Text('#'), ), ), ); } class StoriesTileWidget extends StatelessWidget { const StoriesTileWidget({Key? key}) : super(key: key); @override Widget build(BuildContext context) => ListView.builder( scrollDirection: Axis.horizontal, prototypeItem: const StoryOpenBtn(), padding: const EdgeInsets.symmetric(horizontal: 8), itemBuilder: (context, index) => const StoryOpenBtn(), itemCount: 16, ); } class ChatPreviewTileWidget extends StatelessWidget { const ChatPreviewTileWidget({Key? key}) : super(key: key); @override Widget build(BuildContext context) => const ListTile( isThreeLine: true, onTap: kVoid, title: Text( 'Chat name some people', maxLines: 1, softWrap: false, overflow: TextOverflow.fade, ), subtitle: Text( '''orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.''', maxLines: 2, softWrap: true, overflow: TextOverflow.fade, ), ); } class HomeScreenWidgetA extends StatelessWidget { const HomeScreenWidgetA({Key? key}) : super(key: key); @override Widget build(BuildContext context) => Column( children: [ const SafeArea(child: WelcomeUserTile()), Expanded( child: CustomScrollView( slivers: [ SliverPrototypeExtentList( delegate: SliverChildBuilderDelegate( (ctx, i) => const StoriesTileWidget(), childCount: 1, ), prototypeItem: const StoryOpenBtn(), ), SliverPrototypeExtentList( delegate: SliverChildBuilderDelegate( (ctx, i) => const ChatPreviewTileWidget(), childCount: 32, ), prototypeItem: const ChatPreviewTileWidget(), ), ], ), ), ], ); } class HomeScreenWidgetB extends StatelessWidget { const HomeScreenWidgetB({Key? key}) : super(key: key); @override Widget build(BuildContext context) => NestedScrollView( headerSliverBuilder: (context, innerBoxIsScrolled) => [ SliverOverlapAbsorber( handle: NestedScrollView.sliverOverlapAbsorberHandleFor(context), sliver: SliverAppBar( title: const WelcomeUserTile(), backgroundColor: Colors.transparent, shadowColor: Colors.transparent, foregroundColor: Colors.black, pinned: true, expandedHeight: 1024, forceElevated: innerBoxIsScrolled, flexibleSpace: const StoriesTileWidget(), ), ), ], body: Builder( builder: (context) => DecoratedBox( decoration: const BoxDecoration( color: Colors.white, borderRadius: BorderRadius.vertical(top: Radius.circular(24)), ), child: CustomScrollView( slivers: <Widget>[ SliverOverlapInjector( handle: NestedScrollView.sliverOverlapAbsorberHandleFor( context)), SliverPadding( padding: const EdgeInsets.only(top: 16), sliver: SliverPrototypeExtentList( delegate: SliverChildBuilderDelegate( (ctx, i) => const ChatPreviewTileWidget(), childCount: 32, ), prototypeItem: const ChatPreviewTileWidget(), ), ), ], ), ), ), ); } class HomeScreenWidgetC extends StatelessWidget { const HomeScreenWidgetC({Key? key}) : super(key: key); @override Widget build(BuildContext context) => Column( children: [ const SafeArea(child: WelcomeUserTile()), Expanded( child: NestedScrollView( headerSliverBuilder: (context, innerBoxIsScrolled) => [ SliverPrototypeExtentList( delegate: SliverChildBuilderDelegate( (ctx, i) => const StoriesTileWidget(), childCount: 1, ), prototypeItem: const StoryOpenBtn(), ), ], body: Builder( builder: (context) => DecoratedBox( decoration: const BoxDecoration( color: Colors.white, borderRadius: BorderRadius.vertical(top: Radius.circular(24)), ), child: CustomScrollView( slivers: <Widget>[ SliverPadding( padding: const EdgeInsets.only(top: 16), sliver: SliverPrototypeExtentList( delegate: SliverChildBuilderDelegate( (ctx, i) => const ChatPreviewTileWidget(), childCount: 32, ), prototypeItem: const ChatPreviewTileWidget(), ), ), ], ), ), ), ), ), ], ); } class HomeScreenWidget extends StatelessWidget { const HomeScreenWidget({Key? key}) : super(key: key); @override Widget build(BuildContext context) => Scaffold( backgroundColor: Colors.transparent, body: PageView( children: [ Image.asset( 'assets/images/chat-screen.jpeg', fit: BoxFit.fitWidth, alignment: Alignment.topLeft, ), Image.asset( 'assets/images/frineds-screen.jpeg', fit: BoxFit.fitWidth, alignment: Alignment.topLeft, ), const ProfileScreenA(), Image.asset( 'assets/images/home-page.jpeg', fit: BoxFit.fitWidth, alignment: Alignment.topLeft, ), const HomeScreenWidgetC(), const HomeScreenWidgetA(), const HomeScreenWidgetB(), ], ), ); }
33.105263
461
0.534408
7c6db01bf31dce8dfc7dbcba91076d944606b6e3
748
rs
Rust
examples/oblique_fix.rs
kingrongH/lpr-rust
b52abf4171b4a910191acd2322b6be8811daed0b
[ "Apache-2.0", "MIT" ]
null
null
null
examples/oblique_fix.rs
kingrongH/lpr-rust
b52abf4171b4a910191acd2322b6be8811daed0b
[ "Apache-2.0", "MIT" ]
null
null
null
examples/oblique_fix.rs
kingrongH/lpr-rust
b52abf4171b4a910191acd2322b6be8811daed0b
[ "Apache-2.0", "MIT" ]
null
null
null
use imageproc::window; use std::process; use std::env::args; use std::error::Error; use lpr_rust::image_process; fn main() -> Result<(), Box<dyn Error>> { let mut args = args(); args.next(); let path = args.next(); let path = match path { Some(path) => path, None => { eprintln!("didn't get a image from args"); process::exit(1); } }; let img = image::open(path)?; // original image display let rgb = img.to_rgb(); window::display_image("original image", &rgb, 500, 500); let after_fix = image_process::perspective_trans(&rgb).expect("fix failed"); // after fix image display window::display_image("after fix", &after_fix, 500, 500); Ok(()) }
24.129032
80
0.584225
51518f22b0a010b058e1f030276d1402a1d0bd23
8,713
lua
Lua
resources/[systems]/devices/apps/phone/sv_app.lua
Jameslroll/FiveM-Framework
4532e9dd6af1f4d2d371bc03ab862cf8aee2ade7
[ "MIT" ]
null
null
null
resources/[systems]/devices/apps/phone/sv_app.lua
Jameslroll/FiveM-Framework
4532e9dd6af1f4d2d371bc03ab862cf8aee2ade7
[ "MIT" ]
null
null
null
resources/[systems]/devices/apps/phone/sv_app.lua
Jameslroll/FiveM-Framework
4532e9dd6af1f4d2d371bc03ab862cf8aee2ade7
[ "MIT" ]
1
2022-03-31T17:22:28.000Z
2022-03-31T17:22:28.000Z
Phone = { phones = {}, players = {}, calls = {}, cache = {}, areaCodes = { "273", "323" }, tables = { phone = "phones", contacts = "phone_contacts", calls = "phone_calls", }, } --[[ Functions: Main Events ]]-- function Main.events:Call(source, number) if not tonumber(number) or not PlayerUtil:CheckCooldown(source, 3.0, true, "call") then return end if Phone:Call(source, number) then return true end Phone:SaveCall(Phone.players[source], number) end function Main.events:CallAnswer(source) PlayerUtil:UpdateCooldown(source, "call") return Phone:Answer(source) end function Main.events:CallEnd(source) PlayerUtil:UpdateCooldown(source, "call") return Phone:Hangup(source) end function Main.events:LoadContacts(source) if not PlayerUtil:WaitForCooldown(source, 1.0, true, "load") then return {} end local characterId = Main.players[source] if not characterId then return {} end local result = exports.GHMattiMySQL:QueryResult("SELECT * FROM `"..Phone.tables.contacts.."` WHERE `character_id`=@characterId", { ["@characterId"] = characterId, }) return result end function Main.events:SaveContact(source, data) if type(data) ~= "table" then return end local avatar = data.avatar local color = data.color or 0 local name = data.name local notes = data.notes local number = data.number if (type(name) ~= "string" or name:len() > 16) or (type(color) ~= "number" or color > 255 or color < 0) or (type(number) ~= "string" or not tonumber(number) or number:len() > 32) or (notes ~= nil and (type(notes) ~= "string" or notes:len() > 255)) or (avatar ~= nil and (type(avatar) ~= "string" or avatar:len() > 2048)) or not PlayerUtil:CheckCooldown(source, 3.0, true, "save") then return end if avatar and avatar:gsub("%s+", "") == "" then avatar = nil end if notes and notes:gsub("%s+", "") == "" then notes = nil end local characterId = Main.players[source] if not characterId then return end local setters = ("`name`=@name, `number`=@number, `color`=@color, `notes`=%s, `avatar`=%s"):format( notes and "@notes" or "NULL", avatar and "@avatar" or "NULL" ) exports.GHMattiMySQL:QueryAsync("INSERT INTO `"..Phone.tables.contacts.."` SET `character_id`=@characterId, "..setters.." ON DUPLICATE KEY UPDATE "..setters, { ["@characterId"] = characterId, ["@avatar"] = avatar, ["@color"] = color, ["@name"] = name, ["@notes"] = notes, ["@number"] = number, }) return true end function Main.events:DeleteContact(source, number) if not tonumber(number) or not PlayerUtil:CheckCooldown(source, 1.0, true, "save") then return end local characterId = Main.players[source] if not characterId then return end exports.GHMattiMySQL:QueryAsync("DELETE FROM `"..Phone.tables.contacts.."` WHERE `character_id`=@characterId AND `number`=@number", { ["@characterId"] = characterId, ["@number"] = number, }) return true end function Main.events:FavoriteContact(source, number, value) if not tonumber(number) or not PlayerUtil:CheckCooldown(source, 0.1, true, "save") then return end local characterId = Main.players[source] if not characterId then return end exports.GHMattiMySQL:QueryAsync("UPDATE `"..Phone.tables.contacts.."` SET `favorite`=@value WHERE `character_id`=@characterId AND `number`=@number", { ["@characterId"] = characterId, ["@number"] = number, ["@value"] = value == true, }) return true end function Main.events:LoadRecentCalls(source, offset) if type(offset) ~= "number" or not PlayerUtil:CheckCooldown(source, 1.0, true, "load") then return end local number = Phone.players[source] if not number then return end return exports.GHMattiMySQL:QueryResult([[ SELECT * FROM `]]..Phone.tables.calls..[[` WHERE `source_number`=@number OR `target_number`=@number ORDER BY time_stamp DESC LIMIT 10 OFFSET ]]..math.max(offset - 1, 0)..[[ ]], { ["@number"] = number, }) end --[[ Functions: Phone ]]-- function Phone:Init() WaitForTable("phones") -- Cache phone numbers. local result = exports.GHMattiMySQL:QueryResult("SELECT * FROM `"..Phone.tables.phone.."`") for k, row in ipairs(result) do self.phones[row.phone_number] = row.character_id end end function Phone:LoadPlayer(source, characterId) -- Load phone number. local phoneNumber = exports.GHMattiMySQL:QueryScalar("SELECT `phone_number` FROM `"..Phone.tables.phone.."` WHERE `character_id`=@characterId", { ["@characterId"] = characterId, }) -- Create phone number. if not phoneNumber then phoneNumber = self:GetRandomPhoneNumber() self.phones[phoneNumber] = characterId exports.GHMattiMySQL:QueryAsync("INSERT INTO `"..Phone.tables.phone.."` SET `phone_number`=@phoneNumber, `character_id`=@characterId", { ["@phoneNumber"] = phoneNumber, ["@characterId"] = characterId, }) end -- Set character. exports.character:Set(source, "phone", phoneNumber) -- Assign phone number. self.players[source] = phoneNumber end function Phone:UnloadPlayer(source, characterId) -- Uncache player. self.players[source] = nil -- Set character. exports.character:Set(source, "phone", nil) -- Hang up. self:Hangup(source) end function Phone:GetRandomPhoneNumber() local phoneNumber repeat local areaCode = self.areaCodes[GetRandomIntInRange(1, #self.areaCodes)] local leadingNumbers = GetRandomText(7, Numbers) phoneNumber = areaCode..leadingNumbers until phoneNumber and not self.phones[phoneNumber] return phoneNumber end function Phone:Call(source, number) -- Check source busy. if self.calls[source] then return false end -- Get and check source number. local sourceNumber = self.players[source] if not sourceNumber or sourceNumber == number then return false end -- Get character from number. local characterId = self.phones[number] if not characterId then return false end -- Get target. local target = Main.characters[characterId] if not target then return false end -- Check busy. if self.calls[target] then return false end -- Log it. exports.log:Add({ source = source, target = target, verb = "started", noun = "call", }) -- Cache target players. self.calls[source] = target self.calls[target] = source self.cache[source] = os.clock() -- Ring target. TriggerClientEvent(Main.event.."receiveCall", target, sourceNumber) return true end function Phone:Hangup(source) -- Get target. local target = self.calls[source] if not target then return false end -- Get sender and time. local startTime = self.cache[source] local isSender = startTime ~= nil if not startTime then startTime = self.cache[target] or os.clock() end -- Save call. self:SaveCall(self.players[isSender and source or target], self.players[isSender and target or source], math.ceil(os.clock() - startTime)) -- Log it. exports.log:Add({ source = source, target = target, verb = "ended", noun = "call", }) -- Clear cache. self.calls[source] = nil self.calls[target] = nil self.cache[isSender and source or target] = nil -- Inform target. TriggerClientEvent(Main.event.."endCall", source) TriggerClientEvent(Main.event.."endCall", target) -- Trigger events. TriggerEvent("phone:endCall", source, target) -- Return success. return true end function Phone:Answer(source) -- Get target. local target = self.calls[source] if not target then return false end -- Get numbers. local sourceNumber = self.players[source] local targetNumber = self.players[target] if not sourceNumber or not targetNumber then return false end -- Log it. exports.log:Add({ source = source, target = target, verb = "answered", noun = "call", }) -- Inform both. TriggerClientEvent(Main.event.."joinCall", target, sourceNumber) -- Trigger events. TriggerEvent("phone:joinCall", source, target) -- Return success. return targetNumber end function Phone:SaveCall(sourceNumber, targetNumber, duration) if not sourceNumber or not targetNumber then return end exports.GHMattiMySQL:QueryAsync("INSERT INTO `"..Phone.tables.calls.."` SET `source_number`=@source, `target_number`=@target, `duration`=@duration", { ["@source"] = sourceNumber, ["@target"] = targetNumber, ["@duration"] = duration or 0, }) end --[[ Hooks ]]-- Main:AddHook("LoadPlayer", function(self, ...) Phone:LoadPlayer(...) end) Main:AddHook("UnloadPlayer", function(self, ...) Phone:UnloadPlayer(...) end) --[[ Events: Net ]]-- RegisterNetEvent(Main.event.."call", function(snowflake, eventName, ...) local source = source if type(snowflake) ~= "number" or type(eventName) ~= "string" then return end Main:Call(source, snowflake, eventName, ...) end) --[[ Events ]]-- AddEventHandler(Main.event.."start", function() Phone:Init() end)
25.402332
160
0.70194
2f3fbf269e172c59139a07147f16f44c57c06baa
115
sql
SQL
0x0D-SQL_introduction/12-no_cheating.sql
malu17/alx-higher_level_programming
75a24d98c51116b737f339697c75855e34254d3a
[ "MIT" ]
null
null
null
0x0D-SQL_introduction/12-no_cheating.sql
malu17/alx-higher_level_programming
75a24d98c51116b737f339697c75855e34254d3a
[ "MIT" ]
null
null
null
0x0D-SQL_introduction/12-no_cheating.sql
malu17/alx-higher_level_programming
75a24d98c51116b737f339697c75855e34254d3a
[ "MIT" ]
null
null
null
-- updates the score of Bob to 10 in the table second_table UPDATE second_table SET score = 10 WHERE name = 'Bob';
38.333333
59
0.747826
749d78538188c718f9f81245fb7391d12b999aad
667
rs
Rust
basics/src/b_variables.rs
webbertakken/learning-rust
0b8713c0996b94888e00b76326161ba7bc0e33ee
[ "MIT" ]
null
null
null
basics/src/b_variables.rs
webbertakken/learning-rust
0b8713c0996b94888e00b76326161ba7bc0e33ee
[ "MIT" ]
null
null
null
basics/src/b_variables.rs
webbertakken/learning-rust
0b8713c0996b94888e00b76326161ba7bc0e33ee
[ "MIT" ]
null
null
null
const STARTING_MISSILES: u32 = 8; const READY_AMOUNT: u32 = 2; pub fn main() { println!("\nvariables..."); fire_missiles(); fire_missiles_more_efficiently(); } fn fire_missiles() { let mut missiles = STARTING_MISSILES; let ready = READY_AMOUNT; println!("Firing {} out of {} missiles...", ready, missiles); missiles -= ready; println!("There are {} missiles left.", missiles); } fn fire_missiles_more_efficiently() { let (missiles, ready) = (STARTING_MISSILES, READY_AMOUNT); println!("Firing {} out of {} efficient missiles...", ready, missiles); println!("There are {} efficient missiles left.", missiles - ready); }
29
75
0.664168
2f28dd23be65b449fbc46755480db3efe803260a
2,084
swift
Swift
SimpleWeather/SimpleWeather/Services/WeatherService.swift
burakakyalcin/SimpleWeather
e2af19a8f0a716f4dfb025a90dba8fa67a09b85c
[ "MIT" ]
null
null
null
SimpleWeather/SimpleWeather/Services/WeatherService.swift
burakakyalcin/SimpleWeather
e2af19a8f0a716f4dfb025a90dba8fa67a09b85c
[ "MIT" ]
null
null
null
SimpleWeather/SimpleWeather/Services/WeatherService.swift
burakakyalcin/SimpleWeather
e2af19a8f0a716f4dfb025a90dba8fa67a09b85c
[ "MIT" ]
null
null
null
// // DailyWeatherService.swift // SimpleWeather // // Created by Burak Akyalcin on 24.07.2019. // Copyright © 2019 Burak Akyalcin. All rights reserved. // import Alamofire typealias JSONDictionary = [String: Any] protocol WeatherServiceProtocol: class { func getDailyWeather(latitude: Double, longitude: Double, onSuccess: @escaping (DailyWeather) -> Void , onFailure: @escaping () -> Void) func getForecast(latitude: Double, longitude: Double, onSuccess: @escaping (Forecast) -> Void , onFailure: @escaping () -> Void) } class WeatherService: WeatherServiceProtocol { func getDailyWeather(latitude: Double, longitude: Double, onSuccess: @escaping (DailyWeather) -> Void , onFailure: @escaping () -> Void) { let urlString = "https://api.openweathermap.org/data/2.5/weather?lat=\(latitude)&lon=\(longitude)&appid=ea2d8ade8074b377463a35da1ce64e47" guard let url = URL(string: urlString) else { onFailure() return } Alamofire.request(url).responseJSON { response in do { guard let data = response.data else { return } let response = try JSONDecoder().decode(DailyWeather.self, from: data) onSuccess(response) } catch { onFailure() } } } func getForecast(latitude: Double, longitude: Double, onSuccess: @escaping (Forecast) -> Void , onFailure: @escaping () -> Void) { let urlString = "https://api.openweathermap.org/data/2.5/forecast?lat=\(latitude)&lon=\(longitude)&appid=ea2d8ade8074b377463a35da1ce64e47" guard let url = URL(string: urlString) else { onFailure() return } Alamofire.request(url).responseJSON { response in do { guard let data = response.data else { return } let response = try JSONDecoder().decode(Forecast.self, from: data) onSuccess(response) } catch { onFailure() } } } }
36.561404
146
0.607486
e0a4936768b2b137747cd09cc04ab91a6d79a51e
1,136
ps1
PowerShell
Configs/Wordpress/Resources/xPSDesiredStateConfiguration/Examples/Sample_xRemoteFile.ps1
grayzu/DSC_Examples
cd4b17ef540c104653b7dc6902d0ae7fd488ad13
[ "MIT" ]
null
null
null
Configs/Wordpress/Resources/xPSDesiredStateConfiguration/Examples/Sample_xRemoteFile.ps1
grayzu/DSC_Examples
cd4b17ef540c104653b7dc6902d0ae7fd488ad13
[ "MIT" ]
null
null
null
Configs/Wordpress/Resources/xPSDesiredStateConfiguration/Examples/Sample_xRemoteFile.ps1
grayzu/DSC_Examples
cd4b17ef540c104653b7dc6902d0ae7fd488ad13
[ "MIT" ]
3
2016-02-17T19:02:30.000Z
2016-11-23T00:46:42.000Z
configuration Sample_xRemoteFile_DownloadFile { param ( [string[]] $nodeName = 'localhost', [parameter(Mandatory = $true)] [ValidateNotNullOrEmpty()] [String] $destinationPath, [parameter(Mandatory = $true)] [ValidateNotNullOrEmpty()] [String] $uri, [String] $userAgent, [Hashtable] $headers ) Import-DscResource -Name MSFT_xRemoteFile -ModuleName xPSDesiredStateConfiguration Node $nodeName { xRemoteFile DownloadFile { DestinationPath = $destinationPath Uri = $uri UserAgent = $userAgent Headers = $headers } } } <# Sample use (parameter values need to be changed according to your scenario): Sample_xRemoteFile_DownloadFile -destinationPath "$env:SystemDrive\fileName.jpg" -uri "http://www.contoso.com/image.jpg" Sample_xRemoteFile_DownloadFile -destinationPath "$env:SystemDrive\fileName.jpg" -uri "http://www.contoso.com/image.jpg" ` -userAgent [Microsoft.PowerShell.Commands.PSUserAgent]::InternetExplorer -headers @{"Accept-Language" = "en-US"} #>
27.707317
122
0.65757
ac5b4fef19cd3614d1d713199d3c5aa68091f1c7
3,424
sql
SQL
censusreporter/api/data/demarcation_2009.sql
callmealien/wazimap_zambia
6595b8241d3e934e29508dfd57d92f289ed45450
[ "MIT" ]
null
null
null
censusreporter/api/data/demarcation_2009.sql
callmealien/wazimap_zambia
6595b8241d3e934e29508dfd57d92f289ed45450
[ "MIT" ]
null
null
null
censusreporter/api/data/demarcation_2009.sql
callmealien/wazimap_zambia
6595b8241d3e934e29508dfd57d92f289ed45450
[ "MIT" ]
null
null
null
-- -- PostgreSQL database dump -- SET statement_timeout = 0; SET lock_timeout = 0; SET client_encoding = 'UTF8'; SET standard_conforming_strings = on; SET check_function_bodies = false; SET client_min_messages = warning; SET search_path = public, pg_catalog; SET default_tablespace = ''; SET default_with_oids = false; -- -- Name: country; Type: TABLE; Schema: public; Owner: censusreporter_ke; Tablespace: -- CREATE TABLE country ( code character varying(2) NOT NULL, name character varying(32) NOT NULL, year integer NOT NULL, osm_area_id integer NOT NULL ); ALTER TABLE public.country OWNER TO censusreporter_ke; -- -- Name: county; Type: TABLE; Schema: public; Owner: censusreporter_ke; Tablespace: -- CREATE TABLE county ( code character varying(3) NOT NULL, name character varying(32) NOT NULL, year integer NOT NULL, osm_area_id integer NOT NULL ); ALTER TABLE public.county OWNER TO censusreporter_ke; -- -- Data for Name: country; Type: TABLE DATA; Schema: public; Owner: censusreporter_ke -- COPY country (code, name, year, osm_area_id) FROM stdin; KE Kenya 2009 662008 \. -- -- Data for Name: county; Type: TABLE DATA; Schema: public; Owner: censusreporter_ke -- COPY county (code, name, year, osm_area_id) FROM stdin; 1 Mombasa 2009 662784 2 Kwale 2009 509519 3 Kilifi 2009 662783 4 Tana River 2009 509533 5 Lamu 2009 509521 6 Taita-Taveta 2009 509532 7 Garissa 2009 662782 8 Wajir 2009 509538 9 Mandera 2009 509522 10 Marsabit 2009 509523 11 Isiolo 2009 509513 12 Meru 2009 509524 13 Tharaka-Nithi 2009 509534 14 Embu 2009 509511 15 Kitui 2009 509518 16 Machakos 2009 509501 17 Makueni 2009 509502 18 Nyandarua 2009 509528 19 Nyeri 2009 509529 20 Kirinyaga 2009 509517 21 Murang'a 2009 509526 22 Kiambu 2009 509515 23 Turkana 2009 509536 24 West Pokot 2009 509539 25 Samburu 2009 509530 26 Trans Nzoia 2009 509535 27 Uasin Gishu 2009 509537 28 Elgeyo-Marakwet 2009 509510 29 Nandi 2009 509527 30 Baringo 2009 509508 31 Laikipia 2009 509520 32 Nakuru 2009 509466 33 Narok 2009 509385 34 Kajiado 2009 662770 35 Kericho 2009 509468 36 Bomet 2009 509383 37 Kakamega 2009 509514 38 Vihiga 2009 509473 39 Bungoma 2009 509509 40 Busia 2009 509472 41 Siaya 2009 509471 42 Kisumu 2009 509469 43 Homa Bay 2009 509464 44 Migori 2009 662769 45 Kisii 2009 509384 46 Nyamira 2009 509470 47 Nairobi 2009 509503 \. -- -- Name: country_pkey; Type: CONSTRAINT; Schema: public; Owner: censusreporter_ke; Tablespace: -- ALTER TABLE ONLY country ADD CONSTRAINT country_pkey PRIMARY KEY (code); -- -- Name: county_pkey; Type: CONSTRAINT; Schema: public; Owner: censusreporter_ke; Tablespace: -- ALTER TABLE ONLY county ADD CONSTRAINT county_pkey PRIMARY KEY (code); -- -- Name: country_name_idx; Type: INDEX; Schema: public; Owner: censusreporter_ke; Tablespace: -- CREATE INDEX country_name_idx ON country USING btree (name); -- -- Name: country_year_idx; Type: INDEX; Schema: public; Owner: censusreporter_ke; Tablespace: -- CREATE INDEX country_year_idx ON country USING btree (year); -- -- Name: county_name_idx; Type: INDEX; Schema: public; Owner: censusreporter_ke; Tablespace: -- CREATE INDEX county_name_idx ON county USING btree (name); -- -- Name: county_year_idx; Type: INDEX; Schema: public; Owner: censusreporter_ke; Tablespace: -- CREATE INDEX county_year_idx ON county USING btree (year); -- -- PostgreSQL database dump complete --
21.670886
95
0.758178
1a639485b25d0f1f65033b75b93b42c3e79d3c73
1,132
kt
Kotlin
library/src/main/kotlin/com/a99/rxplaces/AutocompleteEntities.kt
sb15utah/RxPlaces
6c231a7ac0cd79d3f89ce6372a7860cc37df7e57
[ "Apache-2.0" ]
3
2019-10-31T12:39:56.000Z
2019-10-31T13:13:42.000Z
library/src/main/kotlin/com/a99/rxplaces/AutocompleteEntities.kt
sb15utah/RxPlaces
6c231a7ac0cd79d3f89ce6372a7860cc37df7e57
[ "Apache-2.0" ]
null
null
null
library/src/main/kotlin/com/a99/rxplaces/AutocompleteEntities.kt
sb15utah/RxPlaces
6c231a7ac0cd79d3f89ce6372a7860cc37df7e57
[ "Apache-2.0" ]
null
null
null
package com.a99.rxplaces import com.google.gson.annotations.SerializedName data class Prediction( val id: String, val description: String, @SerializedName("place_id") val placeId: String, val reference: String, val terms: List<Term> = listOf(), val types: List<String> = listOf(), @SerializedName("matched_substrings") val matchedSubstrings: List<MatchedSubstring> = listOf(), @SerializedName("structured_formatting") val structuredFormatting: StructuredFormatting = StructuredFormatting("") ) data class Term( val value: String, val offset: Int ) data class MatchedSubstring( val offset: Int, val length: Int ) data class StructuredFormatting( @SerializedName("main_text") val mainText: String, @SerializedName("main_text_matched_substrings") val mainTextMatchedSubstrings: List<MatchedSubstring> = listOf(), @SerializedName("secondary_text") val secondaryText: String = "" ) internal data class PlaceAutocompleteResponse( val status: String, val predictions: List<Prediction> ) enum class AutocompleteState { QUERYING, SUCCESS, FAILURE }
26.325581
77
0.732332
644d82221c6617f16787e4b00ec9b1f8313a6cf6
1,995
sql
SQL
MP_MODSPACK/Mods/SUPERPOWERS (v 6)/XML/Units/Mercs/EquitesSagittarii/05-IroquiosMusketRidder/IroquiosMRArtDefines.sql
TheKaranRawat/SUPERPOWERS
4c2aae30bd33056bd744590c6cdc4c07385b7073
[ "MIT" ]
1
2022-02-25T07:02:25.000Z
2022-02-25T07:02:25.000Z
MP_MODSPACK/Mods/SUPERPOWERS (v 6)/XML/Units/Mercs/EquitesSagittarii/05-IroquiosMusketRidder/IroquiosMRArtDefines.sql
TheKaranRawat/SUPERPOWERS
4c2aae30bd33056bd744590c6cdc4c07385b7073
[ "MIT" ]
null
null
null
MP_MODSPACK/Mods/SUPERPOWERS (v 6)/XML/Units/Mercs/EquitesSagittarii/05-IroquiosMusketRidder/IroquiosMRArtDefines.sql
TheKaranRawat/SUPERPOWERS
4c2aae30bd33056bd744590c6cdc4c07385b7073
[ "MIT" ]
null
null
null
-- Insert SQL Rules Here INSERT INTO ArtDefine_UnitInfos(Type, DamageStates, Formation) VALUES ('ART_DEF_UNIT_EXOTIC_UNIT_IROQUIOS_MUSKET_RIDER', 1, 'DefaultCavalry'); INSERT INTO ArtDefine_UnitInfoMemberInfos(UnitInfoType, UnitMemberInfoType, NumMembers) VALUES ('ART_DEF_UNIT_EXOTIC_UNIT_IROQUIOS_MUSKET_RIDER', 'ART_DEF_UNIT_MEMBER_EXOTIC_UNIT_IROQUIOS_MUSKET_RIDER', 5); INSERT INTO ArtDefine_StrategicView(StrategicViewType, TileType, Asset) VALUES ('ART_DEF_UNIT_EXOTIC_UNIT_IROQUIOS_MUSKET_RIDER', 'Unit', 'sv_auxilia.dds'); -- ================================================================================================================================================================== -- Member Infos INSERT INTO ArtDefine_UnitMemberInfos(Type, Scale, Model, MaterialTypeTag, MaterialTypeSoundOverrideTag) VALUES ('ART_DEF_UNIT_MEMBER_EXOTIC_UNIT_IROQUIOS_MUSKET_RIDER', 0.119999997317791, 'SMAN_EU_IMR.fxsxml', 'CLOTH', 'FLESH'); INSERT INTO ArtDefine_UnitMemberCombats(UnitMemberType, EnableActions, ShortMoveRadius, ShortMoveRate, TurnRateMin, TurnRateMax, TurnFacingRateMin, TurnFacingRateMax, TargetHeight, HasShortRangedAttack, HasStationaryMelee, HasRefaceAfterCombat, ReformBeforeCombat, OnlyTurnInMovementActions) VALUES ('ART_DEF_UNIT_MEMBER_EXOTIC_UNIT_IROQUIOS_MUSKET_RIDER', 'Idle Attack RunCharge AttackCity Bombard Death BombardDefend Run Fortify CombatReady Walk', 24.0, 0.349999994039536, 0.5, 0.75, 15.0, 20.0, 12.0, 1, 1, 1, 1, 1); INSERT INTO ArtDefine_UnitMemberCombatWeapons(UnitMemberType, "Index", SubIndex, WeaponTypeTag, WeaponTypeSoundOverrideTag, MissTargetSlopRadius) VALUES ('ART_DEF_UNIT_MEMBER_EXOTIC_UNIT_IROQUIOS_MUSKET_RIDER', 0, 0, 'ARROW', 'ARROW', 10.0); --INSERT INTO ArtDefine_UnitMemberCombatWeapons(UnitMemberType, "Index", SubIndex, VisKillStrengthMin, VisKillStrengthMax, WeaponTypeTag, MissTargetSlopRadius) -- VALUES ('ART_DEF_UNIT_MEMBER_EXOTIC_UNIT_IROQUIOS_MUSKET_RIDER', 1, 0, 10.0, 20.0, 'FLAMING_ARROW', 10.0);
76.730769
291
0.763409
753ccb19282aec9dc222b24d2a0f643025e72b96
14,038
h
C
dev/Code/CryEngine/Cry3DEngine/ParticleEmitter.h
brianherrera/lumberyard
f85344403c1c2e77ec8c75deb2c116e97b713217
[ "AML" ]
1,738
2017-09-21T10:59:12.000Z
2022-03-31T21:05:46.000Z
dev/Code/CryEngine/Cry3DEngine/ParticleEmitter.h
ArchitectureStudios/lumberyard
f85344403c1c2e77ec8c75deb2c116e97b713217
[ "AML" ]
427
2017-09-29T22:54:36.000Z
2022-02-15T19:26:50.000Z
dev/Code/CryEngine/Cry3DEngine/ParticleEmitter.h
ArchitectureStudios/lumberyard
f85344403c1c2e77ec8c75deb2c116e97b713217
[ "AML" ]
671
2017-09-21T08:04:01.000Z
2022-03-29T14:30:07.000Z
/* * All or portions of this file Copyright (c) Amazon.com, Inc. or its affiliates or * its licensors. * * For complete copyright and license terms please see the LICENSE at the root of this * distribution (the "License"). All use of this software is governed by the License, * or, if provided, by the license below or the license accompanying this file. Do not * remove or modify any license notices. This file is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * */ // Original file Copyright Crytek GMBH or its affiliates, used under license. #ifndef CRYINCLUDE_CRY3DENGINE_PARTICLEEMITTER_H #define CRYINCLUDE_CRY3DENGINE_PARTICLEEMITTER_H #pragma once #include "ParticleEffect.h" #include "ParticleEnviron.h" #include "ParticleContainer.h" #include "ParticleSubEmitter.h" #include "ParticleManager.h" #if !PARTICLES_USE_CRY_PHYSICS #include <AzFramework/Physics/CollisionNotificationBus.h> #endif // PARTICLES_USE_CRY_PHYSICS #undef PlaySound class CParticle; namespace AZ { class LegacyJobExecutor; } ////////////////////////////////////////////////////////////////////////// // A top-level emitter system, interfacing to 3D engine class CParticleEmitter : public IParticleEmitter , public CParticleSource #if !PARTICLES_USE_CRY_PHYSICS , public Physics::CollisionNotificationBus::Handler #endif { public: CParticleEmitter(const IParticleEffect* pEffect, const QuatTS& loc, uint32 uEmitterFlags = 0, const SpawnParams* pSpawnParams = NULL); ~CParticleEmitter(); ////////////////////////////////////////////////////////////////////////// // IRenderNode implementation. ////////////////////////////////////////////////////////////////////////// virtual void ReleaseNode(bool bImmediate) { Register(false, bImmediate); Kill(); } virtual EERType GetRenderNodeType() { return eERType_ParticleEmitter; } virtual char const* GetName() const { return m_pTopEffect->GetName(); } virtual char const* GetEntityClassName() const { return "ParticleEmitter"; } virtual string GetDebugString(char type = 0) const; virtual Vec3 GetPos(bool bWorldOnly = true) const { return GetLocation().t; } virtual const AABB GetBBox() const { return m_bbWorld; } virtual void SetBBox(const AABB& WSBBox) { m_bbWorld = WSBBox; } virtual void FillBBox(AABB& aabb) { aabb = GetBBox(); } virtual void GetLocalBounds(AABB& bbox); virtual float GetMaxViewDist(); virtual void SetMatrix(Matrix34 const& mat) { if (mat.IsValid()) { SetLocation(QuatTS(mat)); } } void SetMaterial(_smart_ptr<IMaterial> pMaterial) override { m_pMaterial = pMaterial; } virtual _smart_ptr<IMaterial> GetMaterial(Vec3* pHitPos = NULL); virtual _smart_ptr<IMaterial> GetMaterialOverride() { return m_pMaterial; } virtual void Render(SRendParams const& rParam, const SRenderingPassInfo& passInfo); virtual void OnEntityEvent(IEntity* pEntity, SEntityEvent const& event); virtual void OnPhysAreaChange() { m_PhysEnviron.m_nNonUniformFlags &= ~EFF_LOADED; } virtual void GetMemoryUsage(ICrySizer* pSizer) const; virtual AZ::EntityId GetEntityId() override; ////////////////////////////////////////////////////////////////////////// // IParticleEmitter implementation. ////////////////////////////////////////////////////////////////////////// void SetEffect(IParticleEffect const* pEffect) override; const IParticleEffect* GetEffect() const override { return m_pTopEffect.get(); }; void SetLocation(const QuatTS& loc) override; QuatTS GetLocationQuat() const override; //Eric@conffx ParticleTarget const& GetTarget() const { return m_Target; } void SetTarget(ParticleTarget const& target) override { if ((int)target.bPriority >= (int)m_Target.bPriority) { if (target.bTarget != m_Target.bTarget || target.vTarget != m_Target.vTarget) { InvalidateStaticBounds(); } m_Target = target; } } void SetSpawnParams(SpawnParams const& spawnParams, GeomRef geom = GeomRef()) override; void GetSpawnParams(SpawnParams& spawnParams) const override { spawnParams = m_SpawnParams; } bool IsAlive() const override; bool IsInstant() const override; virtual bool IsImmortal() const; void Prime() override; void Activate(bool bActive) override; void Kill() override; void Restart() override; void Update() override; void EmitParticle(const EmitParticleData* pData = NULL) override; void SetEntity(IEntity* pEntity, int nSlot) override; virtual void OffsetPosition(const Vec3& delta); bool UpdateStreamableComponents(float fImportance, Matrix34A& objMatrix, IRenderNode* pRenderNode, float fEntDistance, bool bFullUpdate, int nLod) override; EntityId GetAttachedEntityId() override { return m_nEntityId; } int GetAttachedEntitySlot() override { return m_nEntitySlot; } const uint32& GetEmitterFlags() const override { return m_nEmitterFlags; } void SetEmitterFlags(uint32 flags) override; bool GetPreviewMode() const override; #if !PARTICLES_USE_CRY_PHYSICS ////////////////////////////////////////////////////////////////////////// // CollisionNotificationBus implementation. ////////////////////////////////////////////////////////////////////////// virtual void OnCollisionBegin(const Physics::CollisionEvent& collisionEvent) override; #endif ////////////////////////////////////////////////////////////////////////// // Other methods. ////////////////////////////////////////////////////////////////////////// float GetEmitterAge() const override //Eric@conffx { return m_fAge; } float GetRelativeAge(float fStartAge = 0.f) const override { if (min(m_fAge - fStartAge, m_fResetAge - fStartAge) <= 0.f) { return 0.f; } return div_min(m_fAge - fStartAge, m_fResetAge - fStartAge, 1.f); } float GetAliveParticleCount() const override; bool IsActive() const // Has particles { return m_fAge <= m_fDeathAge; } const SpawnParams& GetSpawnParams() const { return m_SpawnParams; } void SetEmitGeom(GeomRef const& geom); void UpdateEmitCountScale(); float GetNearestDistance(const Vec3& vPos, float fBoundsScale) const; void SerializeState(TSerialize ser); void Register(bool b, bool bImmediate = false); ILINE float GetEmitCountScale() const { return m_fEmitCountScale; } void RefreshEffect(bool recreateContainer = false); void UpdateEffects(); void UpdateState(); void UpdateResetAge(); void CreateIndirectEmitters(CParticleSource* pSource, CParticleContainer* pCont); SPhysEnviron const& GetPhysEnviron() const { return m_PhysEnviron; } SVisEnviron const& GetVisEnviron() const { return m_VisEnviron; } void OnVisAreaDeleted(IVisArea* pVisArea) { m_VisEnviron.OnVisAreaDeleted(pVisArea); } void GetDynamicBounds(AABB& bb) const { bb.Reset(); for_all_ptrs (const CParticleContainer, c, m_Containers) bb.Add(c->GetDynamicBounds()); } ILINE uint32 GetEnvFlags() const { return m_nEnvFlags & CParticleManager::Instance()->GetAllowedEnvironmentFlags(); } void AddEnvFlags(uint32 nFlags) { m_nEnvFlags |= nFlags; } float GetParticleScale() const { // Somewhat obscure. But top-level emitters spawned from entities, // and not attached to other objects, should apply the entity scale to their particles. if (!GetEmitGeom()) { return m_SpawnParams.fSizeScale * GetLocation().s; } else { return m_SpawnParams.fSizeScale; } } #ifdef SHARED_GEOM SInstancingInfo* GetInstancingInfo() { return m_InstInfos.push_back(); } #endif void InvalidateStaticBounds() { m_bbWorld.Reset(); for_all_ptrs (CParticleContainer, c, m_Containers) { float fStableTime = c->InvalidateStaticBounds(); m_fBoundsStableAge = max(m_fBoundsStableAge, fStableTime); } } void RenderDebugInfo(); IEntity* GetEntity() const; void UpdateFromEntity(); uint32 IsIndependent() const { return m_nEmitterFlags & ePEF_Independent; } bool NeedSerialize() const { return (m_nEmitterFlags & ePEF_Independent) && !(m_nEmitterFlags & ePEF_TemporaryEffect); } float TimeNotRendered() const { return GetAge() - m_fAgeLastRendered; } void GetCounts(SParticleCounts& counts) const { for_all_ptrs (const CParticleContainer, c, m_Containers) { c->GetCounts(counts); } } void GetAndClearCounts(SParticleCounts& counts) { FUNCTION_PROFILER_SYS(PARTICLE); for_all_ptrs (CParticleContainer, c, m_Containers) { c->GetCounts(counts); c->ClearCounts(); } } ParticleList<CParticleContainer> const& GetContainers() const { return m_Containers; } bool IsEditSelected() const; void AddUpdateParticlesJob(); void SyncUpdateParticlesJob(); void UpdateAllParticlesJob(); void Reset() { Register(false); // Free unneeded memory. m_Containers.clear(); // Release and remove external geom refs. SEmitGeom::Release(); SEmitGeom::operator= (SEmitGeom()); } void SetUpdateParticlesJobState(AZ::LegacyJobExecutor* pJobExecutor) { m_pJobExecutorParticles = pJobExecutor; } void GetEmitterBounds(Vec3& totalBounds) override { for (ParticleList<CParticleContainer>::iterator container(m_Containers); container != m_Containers.end(); ++container) { Vec3 currentBounds(0.f); container->GetContainerBounds(currentBounds); totalBounds.CheckMax(currentBounds); } } private: // Internal emitter flags, extend EParticleEmitterFlags enum EFlags { ePEF_HasPhysics = BIT(6), ePEF_HasTarget = BIT(7), ePEF_HasAttachment = BIT(8), ePEF_NeedsEntityUpdate = BIT(9), ePEF_Registered = BIT(10), }; AZ::LegacyJobExecutor* m_pJobExecutorParticles; // Constant values, effect-related. _smart_ptr<CParticleEffect> m_pTopEffect; _smart_ptr<IMaterial> m_pMaterial; // Override material for this emitter. // Cache values derived from the main effect. float m_fMaxParticleSize; SpawnParams m_SpawnParams; // External settings modifying emission. float m_fEmitCountScale; // Composite particle count scale. ParticleList<CParticleContainer> m_Containers; uint32 m_nEnvFlags; // Union of environment flags affecting emitters. uint32 m_nRenObjFlags; // Union of render feature flags. ParticleTarget m_Target; // Target set from external source. AABB m_bbWorld; // World bbox. float m_fAgeLastRendered; float m_fBoundsStableAge; // Next age at which bounds stable. float m_fResetAge; // Age to purge unseen particles. float m_fStateChangeAge; // Next age at which a container's state changes. float m_fDeathAge; // Age when all containers (particles) dead. // Entity connection params. int m_nEntityId; int m_nEntitySlot; AZ::EntityId m_azEntityId; uint32 m_nEmitterFlags; SPhysEnviron m_PhysEnviron; // Common physical environment (uniform forces only) for emitter. SVisEnviron m_VisEnviron; bool m_isPrimed; // Indicates that Prime() was called on this frame. #ifdef SHARED_GEOM ParticleList<SInstancingInfo> m_InstInfos; // For geom particle rendering. #endif // SHARED_GEOM // Functions. void ResetUnseen(); void AllocEmitters(); void UpdateContainers(); void UpdateTimes(float fAgeAdjust = 0.f); // bInEditor indicates that the particle is being tweaked in the editor and prevents indirect particles from being deleted when they are active void AddEffect(CParticleContainer* pParentContainer, const CParticleEffect* pEffect, bool bUpdate = true, bool bInEditor = false, CLodInfo* startLod = nullptr, CLodInfo* endLod = nullptr); CParticleContainer* AddContainer(CParticleContainer* pParentContainer, const CParticleEffect* pEffect, CLodInfo* startLod = nullptr, CLodInfo* endLod = nullptr); }; #endif // CRYINCLUDE_CRY3DENGINE_PARTICLEEMITTER_H
32.570766
192
0.590611
9b8c0e0526990d3c1f91f39e02bdb0e5e5b68f36
686
js
JavaScript
gulpfile.js
SpikE4343/ham.radio
9661268558997fa7c37b76c21ddcdc838967ed7a
[ "MIT" ]
null
null
null
gulpfile.js
SpikE4343/ham.radio
9661268558997fa7c37b76c21ddcdc838967ed7a
[ "MIT" ]
null
null
null
gulpfile.js
SpikE4343/ham.radio
9661268558997fa7c37b76c21ddcdc838967ed7a
[ "MIT" ]
null
null
null
'use strict'; //require('./tasks/build'); //require('./tasks/release'); // get the dependencies var gulp = require('gulp'), childProcess = require('child_process'), electron = require('electron-prebuilt'), less = require('gulp-less'); var lessTask = function () { return gulp.src('app/stylesheets/main.less') .pipe(less()) .pipe(gulp.dest('app/stylesheets')); }; gulp.task('less', lessTask); gulp.task('less-watch', lessTask); gulp.task('build', ['less']); // create the gulp task gulp.task('run', ['build'], function () { childProcess.spawn(electron, ['--debug=5858','./app'], { stdio: 'inherit' }); }); gulp.task( 'default', ['run'])
22.866667
79
0.613703
84f38f54218229bf10c2f7e068cc65db1a69097b
244
ps1
PowerShell
AnalyticsEngineering/TsTabcmdTrigger.ps1
waterytowers/Tableau
4ecb1f927915c6c1bf4571b75bb1c44fbec91d98
[ "MIT" ]
2
2016-11-25T00:58:06.000Z
2020-08-01T00:53:28.000Z
AnalyticsEngineering/TsTabcmdTrigger.ps1
waterytowers/Tableau
4ecb1f927915c6c1bf4571b75bb1c44fbec91d98
[ "MIT" ]
null
null
null
AnalyticsEngineering/TsTabcmdTrigger.ps1
waterytowers/Tableau
4ecb1f927915c6c1bf4571b75bb1c44fbec91d98
[ "MIT" ]
1
2021-05-07T21:26:51.000Z
2021-05-07T21:26:51.000Z
tabcmd logout tabcmd login -s <your tableau server> -u <your ts username> --password-file <location to pw file> --no-certcheck tabcmd refreshextracts --datasource <data source> --project <project if not default> --no-certcheck tabcmd logout
40.666667
113
0.758197
e7818865ae8c48cc3993887f6ac9756ec8a3223a
4,528
js
JavaScript
strided/dispatch.js
stdlib-js/esm
e40d9dc228b49c18a94973ffdfdf4d64e1698d1b
[ "Apache-2.0" ]
12
2020-12-20T20:16:45.000Z
2022-01-30T03:08:18.000Z
strided/dispatch.js
stdlib-js/esm
e40d9dc228b49c18a94973ffdfdf4d64e1698d1b
[ "Apache-2.0" ]
1
2021-05-24T16:42:11.000Z
2021-05-24T17:51:24.000Z
strided/dispatch.js
stdlib-js/esm
e40d9dc228b49c18a94973ffdfdf4d64e1698d1b
[ "Apache-2.0" ]
null
null
null
// This file is a part of stdlib. License is Apache-2.0: http://www.apache.org/licenses/LICENSE-2.0 import e from"./../assert/is-nonnegative-integer.js";import r from"./../assert/is-positive-integer.js";import t from"./../assert/is-integer.js";import n from"./../assert/is-function-array.js";import a from"./../assert/is-function.js";import i from"./../assert/is-string-array.js";import o from"./../assert/is-array-like-object.js";import u from"./../math/base/special/abs.js";import s from"./../ndarray/base/buffer-dtype.js";function m(e,r,t,n,a,i,o,u,s){var m,d,f,g;for(m=i,f=0;f<e;f++){for(d=s,g=0;g<r&&t[m+g*a]===o[d];g++)d+=u;if(g===r)return f;m+=n}return-1}var d=e.isPrimitive,f=r,g=t.isPrimitive,p=n,l=a,h=i.primitives,v=o,y=u,w=s,c=m;function b(e,r,t,n,a,i){var o,u,s,m,b,E;if(l(e))E=e;else if(!p(e))throw new TypeError("invalid argument. First argument must be either a function or an array of functions. Value: `"+e+"`.");if(!h(r))throw new TypeError("invalid argument. Second argument must be an array of strings. Value: `"+r+"`.");if(!v(t)&&null!==t)throw new TypeError("invalid argument. Third argument must be an array-like object or `null`. Value: `"+t+"`.");if(!f(n))throw new TypeError("invalid argument. Fourth argument must be a positive integer. Value: `"+n+"`.");if(!d(a))throw new TypeError("invalid argument. Fifth argument must be a nonnegative integer. Value: `"+a+"`.");if(!d(i))throw new TypeError("invalid argument. Sixth argument must be a nonnegative integer. Value: `"+i+"`.");if(0===(s=a+i))throw new Error("invalid arguments. Interface must accept at least one strided input and/or output array. Based on the provided arguments, `nin+nout` equals `0`.");if(E){if(m=r.length/s,!g(m))throw new Error("invalid argument. Unexpected number of types. A type must be specified for each strided input and output array for each provided strided array function.")}else if(m=e.length,r.length!==m*s)throw new Error("invalid argument. Unexpected number of types. A type must be specified for each strided input and output array for each provided strided array function.");if(t&&t.length!==m)throw new Error("invalid argument. The third argument must have the same number of elements as the first argument.");if(2*s+1===n)u=!1;else{if(3*s+1!==n)throw new Error("invalid argument. Fourth argument is incompatible with the number of strided input and output arrays.");u=!0}return b=a*(o=u?3:2)+1,function(){var f,p,l,h,T,j,x,I,V,F,O,k;if((j=arguments.length)!==n){if(j<n)throw new Error("invalid invocation. Insufficient arguments.");throw new Error("invalid invocation. Too many arguments.")}if(!g(I=arguments[0]))throw new TypeError("invalid argument. First argument must be an integer.");for(T=[I],f=[],O=2;O<n;O+=o){if(!g(V=arguments[O]))throw O<b?new TypeError("invalid argument. Input array stride argument must be an integer."):new TypeError("invalid argument. Output array stride argument must be an integer.");f.push(V)}if(u)for(p=[],O=3;O<n;O+=o){if(!d(V=arguments[O]))throw O<b?new TypeError("invalid argument. Input array offset argument must be a nonnegative integer."):new TypeError("invalid argument. Output array offset argument must be a nonnegative integer.");p.push(V)}for(l=[],h=[],O=1;O<n;O+=o){if(!v(V=arguments[O]))throw O<b?new TypeError("invalid argument. Input array argument must be an array-like object."):new TypeError("invalid argument. Output array argument must be an array-like object.");if(k=(O-1)/o,u){if(x=p[k]+(I-1)*f[k],I>0&&(x<0||x>=V.length))throw O<b?new RangeError("invalid argument. Input array argument has insufficient elements based on the associated stride and the number of indexed elements."):new RangeError("invalid argument. Output array argument has insufficient elements based on the associated stride and the number of indexed elements.")}else if((I-1)*y(f[k])>=V.length)throw O<b?new RangeError("invalid argument. Input array argument has insufficient elements based on the associated stride and the number of indexed elements."):new RangeError("invalid argument. Output array argument has insufficient elements based on the associated stride and the number of indexed elements.");l.push(V),h.push(w(V))}if((x=c(m,s,r,s,1,0,h,1,0))<0)throw new TypeError("invalid arguments. Unable to resolve a strided array function supporting the provided array argument data types.");F=E||e[x];t?u?F(l,T,f,p,t[x]):F(l,T,f,t[x]):u?F(l,T,f,p):F(l,T,f);if(1===i)return l[s-1];if(0===i)return;return l.slice(a)}}var E=b;export default E; //# sourceMappingURL=dispatch.js.map
1,509.333333
4,391
0.724823
7d6770b99b02b91f3661dbfeafd3381f242643c5
1,053
html
HTML
manuscript/page-20/body.html
marvindanig/lady-audleys-secret
565d1e5a97b4d54c11d702f51e455da06ed61736
[ "BlueOak-1.0.0", "MIT" ]
null
null
null
manuscript/page-20/body.html
marvindanig/lady-audleys-secret
565d1e5a97b4d54c11d702f51e455da06ed61736
[ "BlueOak-1.0.0", "MIT" ]
null
null
null
manuscript/page-20/body.html
marvindanig/lady-audleys-secret
565d1e5a97b4d54c11d702f51e455da06ed61736
[ "BlueOak-1.0.0", "MIT" ]
null
null
null
<div class="leaf "><div class="inner justify"><p class="no-indent ">situation, and she taught the girls to play sonatas by Beethoven, and to paint from nature after Creswick, and walked through a dull, out-of-the-way village to the humble little church, three times every Sunday, as contentedly as if she had no higher aspiration in the world than to do so all the rest of her life.</p><p>People who observed this, accounted for it by saying that it was a part of her amiable and gentle nature always to be light-hearted, happy and contented under any circumstances.</p><p class=" stretch-last-line ">Wherever she went she seemed to take joy and brightness with her. In the cottages of the poor her fair face shone like a sunbeam. She would sit for a quarter of an hour talking to some old woman, and apparently as pleased with the admiration of a toothless crone as if she had been listening to the compliments of a marquis; and when she tripped away, leaving nothing behind her (for her poor salary gave no scope to her benevolence),</p></div> </div>
1,053
1,053
0.774929
454d73fdb29f2875ea1cc39b6b00a6ed38e67d16
183
rs
Rust
src/lib.rs
pearlhat/zvm
7a317602dea39950e8d2c7162b1405a8a2cfbb29
[ "0BSD" ]
33
2019-11-06T12:28:55.000Z
2021-12-30T12:16:19.000Z
src/lib.rs
pearlhat/zvm
7a317602dea39950e8d2c7162b1405a8a2cfbb29
[ "0BSD" ]
2
2019-11-10T11:44:00.000Z
2019-11-17T09:00:35.000Z
src/lib.rs
pearlhat/zvm
7a317602dea39950e8d2c7162b1405a8a2cfbb29
[ "0BSD" ]
3
2019-11-10T08:41:19.000Z
2021-03-24T15:14:10.000Z
pub mod class_file; mod virtual_machine; pub use virtual_machine::VMError; pub use virtual_machine::VMState; pub use virtual_machine::Value; pub use virtual_machine::VirtualMachine;
22.875
40
0.825137
2ac21db00411b0f1cbbc9fa47cdb13a820814c6b
1,607
kt
Kotlin
message-controller-sample/src/main/java/ru/surfstudio/android/message/sample/ui/screen/main/MainPresenter.kt
eltray/SurfAndroidStandard
69d435621d90954102af7424b4b309213d9bc95d
[ "Apache-2.0" ]
null
null
null
message-controller-sample/src/main/java/ru/surfstudio/android/message/sample/ui/screen/main/MainPresenter.kt
eltray/SurfAndroidStandard
69d435621d90954102af7424b4b309213d9bc95d
[ "Apache-2.0" ]
null
null
null
message-controller-sample/src/main/java/ru/surfstudio/android/message/sample/ui/screen/main/MainPresenter.kt
eltray/SurfAndroidStandard
69d435621d90954102af7424b4b309213d9bc95d
[ "Apache-2.0" ]
null
null
null
package ru.surfstudio.android.message.sample.ui.screen.main import android.view.Gravity import ru.surfstudio.android.core.mvp.presenter.BasePresenter import ru.surfstudio.android.core.mvp.presenter.BasePresenterDependency import ru.surfstudio.android.dagger.scope.PerScreen import ru.surfstudio.android.message.MessageController import ru.surfstudio.android.message.sample.R import javax.inject.Inject /** * Презентер главного экрана */ @PerScreen internal class MainPresenter @Inject constructor(basePresenterDependency: BasePresenterDependency, private val messageController: MessageController ) : BasePresenter<MainActivityView>(basePresenterDependency) { private val sm: MainScreenModel = MainScreenModel() override fun onLoad(viewRecreated: Boolean) { super.onLoad(viewRecreated) view.render(sm) } fun showColoredSnackbar() = messageController.show( R.string.snackbar_message, R.color.colorAccent) fun showSnackbarWithDuration() = messageController.show( stringId = R.string.snackbar_message, duration = 5000) fun showSnackbarWithListener() = messageController.show( stringId = R.string.snackbar_message, actionStringId = R.string.snackbar_action, buttonColor = R.color.colorPrimary, listener = { messageController.showToast(R.string.toast_action) }) fun showGravityToast() = messageController.showToast(R.string.toast_message, Gravity.CENTER) fun closeSnackbar() = messageController.closeSnack() }
37.372093
98
0.729932
1741ce7b4928c7ec3fe6f2347cb48fb566084b38
693,239
html
HTML
build/listing-zhk.html
alikinvv/swift
2d8c9566c34244d9a18c0df4ac01acbac0de995d
[ "MIT" ]
null
null
null
build/listing-zhk.html
alikinvv/swift
2d8c9566c34244d9a18c0df4ac01acbac0de995d
[ "MIT" ]
null
null
null
build/listing-zhk.html
alikinvv/swift
2d8c9566c34244d9a18c0df4ac01acbac0de995d
[ "MIT" ]
null
null
null
<!DOCTYPE html> <html lang="ru"> <head> <meta charset="utf-8"> <title>Выбор ЖК</title> <meta http-equiv="x-ua-compatible" content="ie=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta property="og:image" content="img/dest/preview.jpg"> <link rel="shortcut icon" href="img/favicon.ico" type="image/x-icon" /> <link rel="stylesheet" href="https://unpkg.com/simplebar@latest/dist/simplebar.css" /> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fancyapps/ui/dist/fancybox.css" /> <link rel="stylesheet" href="https://unpkg.com/swiper@7/swiper-bundle.min.css" /> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/ion-rangeslider/2.3.1/css/ion.rangeSlider.min.css" /> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/choices.js@9.0.1/public/assets/styles/choices.min.css" /> <link rel="stylesheet" href="css/datepicker.min.css"> <link rel="stylesheet" href="css/main.css"> </head> <body class="page-item page-filter"> <div class="root"> <div class="root__header header"> <div class="container-fluid"> <div class="header__main"> <div class="hamburger nav-toggle"><span></span></div> <a href="javascript:void(0)" class="header__logo"> <i class="header__logo--icon"> <img src="img/logo-mobile.svg" class="img-fluid" alt=""> </i> <span class="header__logo--text">СТРИЖИ</span> </a><!--/.header__logo --> <a href="tel:89872346790" class="header__phone"> <span class="header__phone--text">8 987 234 67 90</span> <i class="header__phone--icon"> <svg class="ico-svg" viewBox="0 0 14 22" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-color.svg#smartphone" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </i> </a><!--/.header__phone --> </div><!--/.header__main --> </div><!--/.container --> </div><!--/.header --> <div class="mobile-nav mobile-nav--open"> <div class="mobile-nav__primary"> <div class="mobile-nav__content"> <ul class="mobile-nav__menu"5> <li> <a href="javascript:void(0)" class="mobile-nav__item"> <strong>Выбрать квартиру</strong> </a> </li> <li> <a href="javascript:void(0)" class="mobile-nav__item"> <span>Новостройки</span> </a> </li> <li> <a href="javascript:void(0)" class="mobile-nav__item"> <span>Коммерция</span> </a> </li> <li> <a href="javascript:void(0)" class="mobile-nav__item"> <span>Застройщики</span> </a> </li> <li> <a href="javascript:void(0)" class="mobile-nav__item"> <span>Акции</span> </a> </li> <li> <a href="javascript:void(0)" class="mobile-nav__next active" data-nav="mobile-nav__subnav--credit"> <span>Ипотека текущ</span> <i> <svg class="ico-svg" viewBox="0 0 192 512" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#angle-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </i> </a> </li> <li> <a href="javascript:void(0)" class="mobile-nav__next" data-nav="mobile-nav__subnav--about"> <span>О компании</span> <i> <svg class="ico-svg" viewBox="0 0 192 512" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#angle-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </i> </a> </li> <li> <a href="javascript:void(0)" class="mobile-nav__item"> <span>Журнал</span> </a> </li> <li> <a href="javascript:void(0)" class="mobile-nav__item"> <span>Контакты</span> </a> </li> </ul><!--/.mobile-nav__menu --> </div><!--/.mobile-nav__content --> </div><!--/.mobile-nav__primary --> <div class="mobile-nav__second"> <button class="mobile-nav__back"> <i> <svg class="ico-svg" viewBox="0 0 192 512" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#angle-left" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </i> <span>Назад</span> </button> <div class="mobile-nav__subnav mobile-nav__subnav--credit"> <ul class="mobile-nav__menu"> <li> <a href="javascript:void(0)" class="mobile-nav__item"> <span>Ипотека</span> </a> </li> <li> <a href="javascript:void(0)" class="mobile-nav__item active"> <span>Военная ипотека</span> </a> </li> <li> <a href="javascript:void(0)" class="mobile-nav__item"> <span>Материнский капитал</span> </a> </li> <li> <a href="javascript:void(0)" class="mobile-nav__item"> <span>Субсидии</span> </a> </li> <li> <a href="javascript:void(0)" class="mobile-nav__item"> <span>Акции</span> </a> </li> </ul><!--/.mobile-nav__menu --> </div><!--/.mobile-nav__subnav --> <div class="mobile-nav__subnav mobile-nav__subnav--about"> <ul class="mobile-nav__menu"> <li> <a href="javascript:void(0)" class="mobile-nav__item"> <span>О компании</span> </a> </li> <li> <a href="javascript:void(0)" class="mobile-nav__item"> <span>Руководство</span> </a> </li> <li> <a href="javascript:void(0)" class="mobile-nav__item"> <span>Реализованные проекты</span> </a> </li> <li> <a href="javascript:void(0)" class="mobile-nav__item"> <span>Карьера</span> </a> </li> </ul><!--/.mobile-nav__menu --> </div><!--/.mobile-nav__subnav --> </div> </div><!--/.mobile-nav --> <div class="root__wrap"> <div class="root__sidebar sidebar"> <div class="sidebar__wrap"> <div class="sidebar__header"> <a href="/" class="sidebar__logo"> <img src="img/logo.svg" class="img-fluid" alt=""> </a> </div><!--/.sidebar__header --> <div class="sidebar__main"> <ul class="sidebar__primary"> <li> <a href="javascript:void(0)" class="sidebar__primary--link">Выбрать квартиру</a> </li> <li> <a href="javascript:void(0)" class="sidebar__primary--link active">Новостройки</a> </li> <li> <a href="javascript:void(0)" class="sidebar__primary--link">Коммерция</a> </li> <li> <a href="javascript:void(0)" class="sidebar__primary--link">Застройщики</a> </li> <li> <a href="javascript:void(0)" class="sidebar__primary--link">Акции</a> </li> <li> <a href="javascript:void(0)" class="sidebar__primary--toggle" data-nav="sidebar__subnav--credit">Ипотека</a> </li> <li> <a href="javascript:void(0)" class="sidebar__primary--toggle" data-nav="sidebar__subnav--about">О компании</a> </li> <li> <a href="javascript:void(0)" class="sidebar__primary--toggle" data-nav="sidebar__subnav--press">Журнал</a> </li> <li> <a href="javascript:void(0)" class="sidebar__primary--link">Контакты</a> </li> </ul> </div><!--/.sidebar__main --> <div class="sidebar__footer"> <ul class="sidebar__contact"> <li> <a href="tel:8 9872346790" class="sidebar__contact--phone">8 987 234 67 90</a> </li> <li> <a href="#callback" class="sidebar__contact--callback">Перезвонить вам?</a> </li> </ul> </div> </div> <div class="sidebar__second"> <ul class="sidebar__subnav sidebar__subnav--press"> <li> <a href="javascript:void(0)">Эконом</a> </li> <li> <a href="javascript:void(0)">Комфорт</a> </li> <li> <a href="javascript:void(0)">Бизнес-класс</a> </li> <li> <a href="javascript:void(0)">Премиум</a> </li> </ul> <ul class="sidebar__subnav sidebar__subnav--about"> <li> <a href="javascript:void(0)">О компании</a> </li> <li> <a href="javascript:void(0)">Руководство</a> </li> <li> <a href="javascript:void(0)">Реализованные проекты</a> </li> <li> <a href="javascript:void(0)">Карьера</a> </li> </ul> <ul class="sidebar__subnav sidebar__subnav--credit"> <li> <a href="javascript:void(0)">Новости</a> </li> <li> <a href="javascript:void(0)">Ход строительства</a> </li> <li> <a href="javascript:void(0)">Видео</a> </li> <li> <a href="javascript:void(0)">Сми о нас</a> </li> <li> <a href="javascript:void(0)">Мы в сми</a> </li> <li> <a href="javascript:void(0)">Контакты для СМИ</a> </li> </ul> </div> </div><!--/.sidebar --> <div class="root__page root__page--is-filter"> <section class="root__main"> <div class="container-fluid"> <div class="breadcrumb "> <a href="javascript:void(0)" class="breadcrumb__back"> <i class="breadcrumb__back--icon"> <svg class="ico-svg" viewBox="0 0 192 512" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#angle-left" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </i> <span class="breadcrumb__back--text">Назад</span> </a> <div class="breadcrumb__toggle"> <svg width="16" height="9" viewBox="0 0 16 9" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M14 7.5V7.51" stroke="#FF502F" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/> <path d="M8 7.5V7.51" stroke="#FF502F" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/> <path d="M2 7.5V7.51" stroke="#FF502F" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/> </svg> </div> <ul class="breadcrumb__main"> <li> <a href="javascript:void(0)" class="breadcrumb__item">Москва</a> </li> <li> <a href="javascript:void(0)" class="breadcrumb__item">Ювао</a> </li> <li> <a href="javascript:void(0)" class="breadcrumb__item">Чертаново</a> </li> <li> <a href="javascript:void(0)" class="breadcrumb__item">Королевские Мытищи</a> </li> <li> <a href="javascript:void(0)" class="breadcrumb__item">от 5,9 млн до 120,7 млн</a> </li> <li> <a href="javascript:void(0)" class="breadcrumb__item">от 15 м² до 270 м²</a> </li> <li> <a href="javascript:void(0)" class="breadcrumb__item">IV кв 2024</a> </li> <li> <span class="breadcrumb__item active">Новостройки</span> </li> </ul> </div><!-- /.breadcrumb --> <h1>Выбор ЖК</h1> <button class="mobile-filter-button filter-toggle"> <i class="mobile-filter-button__icon"> <svg class="ico-svg" viewBox="0 0 19 17" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#filter" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </i> <span class="mobile-filter-button__text">Выбор параметров</span> </button> <div class="filter "> <div class="filter__wrap"> <div class="filter-mobile__header"> <div class="filter-mobile__header--title">Фильтры</div> <button type="button" class="filter-mobile__header--close filter-toggle"> <svg class="ico-svg" viewBox="0 0 14 14" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#close" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </button> </div> <div class="filter__primary"> <div class="filter__primary--item"> <div class="options-inline"> <div class="options-inline__title">Комнатность</div> <label class="options-inline__item"> <input type="checkbox" class="options-inline__input" name="opt1" value="Студия" checked> <span class="options-inline__label">Студия</span> </label> <label class="options-inline__item"> <input type="checkbox" class="options-inline__input" name="opt2" value="1"> <span class="options-inline__label">1</span> </label> <label class="options-inline__item"> <input type="checkbox" class="options-inline__input" name="opt3" value="2"> <span class="options-inline__label">2</span> </label> <label class="options-inline__item"> <input type="checkbox" class="options-inline__input" name="opt4" value="3"> <span class="options-inline__label">3</span> </label> <label class="options-inline__item"> <input type="checkbox" class="options-inline__input" name="opt5" value="4"> <span class="options-inline__label">4</span> </label> <label class="options-inline__item"> <input type="checkbox" class="options-inline__input" name="opt6" value="5+"> <span class="options-inline__label">5+</span> </label> </div> </div><!--/.filter__primary--item --> <div class="filter__primary--item"> <div class="range"> <div class="range__title">Стоимость, млн ₽</div> <div class="range__main"> <div class="range__item range__item--double"> <div class="range__label">от</div> <input value="5.9" type="text" data-slider="cost" class="range__value range__value--from"> </div> <div class="range__divider"></div> <div class="range__item range__item--double"> <div class="range__label">до</div> <input value="120.7" type="text" data-slider="cost" class="range__value range__value--to"> </div> </div> <div class="range__slider"> <input type="text" class="range-field-slider slider-cost"> </div> </div> </div><!--/.filter__primary--item --> <div class="filter__primary--item"> <div class="range"> <div class="range__title">Площадь, м²</div> <div class="range__main"> <div class="range__item range__item--double"> <div class="range__label">от</div> <input value="15" type="text" data-slider="area" class="range__value range__value--from"> </div> <div class="range__divider"></div> <div class="range__item range__item--double"> <div class="range__label">до</div> <input value="270" type="text" data-slider="area" class="range__value range__value--to"> </div> </div> <div class="range__slider"> <input type="text" class="range-field-slider slider-area"> </div> </div> </div><!--/.filter__primary--item --> <div class="filter__primary--item"> <div class="range"> <div class="range__title">Срок сдачи</div> <div class="range__main"> <div class="range__item"> <div class="range__value range__value--from">Сдан</div> </div> <div class="range__divider"></div> <div class="range__item"> <div class="range__value range__value--to">IV кв 2024</div> </div> </div> <div class="range__slider"> <input type="text" class="range-field-slider slider-date" data-type="double" data-min="0" data-max="13" data-to="14" data-from="1" data-postfix="" data-range-values="Сдан,III кв 2021,IV кв 2021,I кв 2022,II кв 2022,III кв 2022,IV кв 2022,I кв 2023,II кв 2023,III кв 2023,IV кв 2023,I кв 2024,II кв 2024,III кв 2024,IV кв 2024" data-param="term" > </div> </div> </div> </div> <button class="filter__toggle mobile"> <span class="filter__toggle--text">Дополнительные фильтры</span> <i class="filter__toggle--icon"> <svg width="10" height="7" viewBox="0 0 10 7" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M1 5.5L5 1.5L9 5.5" stroke="#FF502F" stroke-width="1.5"/> </svg> </i> </button> <div class="filter__secondary"> <div class="filter__secondary--row"> <div class="filter__secondary--item"> <div class="field field-link"> <input type="text" class="field__input" name="field" placeholder="Поиск"> <div class="field__select"> <span class="field__select--text open-location" open-tab="district">Локация</span> </div> </div> </div> <div class="filter__secondary--item"> <select name="select" class="pretty-select"> <option value="Не выбрано">Прописка</option> <option value="Эконом">Нужна</option> <option value="Стандарт">Не нужна</option> </select> </div> <div class="filter__secondary--item"> <div class="range"> <div class="range-wrap"> <div class="range__title">Этаж</div> <div class="range__main"> <div class="range__item range__item--double"> <input value="7" type="text" data-slider="floor" class="range__value range__value--from"> </div> <div class="range__divider"></div> <div class="range__item range__item--double"> <input value="22" type="text" data-slider="floor" class="range__value range__value--to"> </div> </div> <div class="range__slider"> <input type="text" class="range-field-slider slider-floor"> </div> </div> <ul class="range__dropdown"> <li> <button type="button" class="range__dropdown--button" data-button="not_last">не последний</button> </li> <li> <button type="button" class="range__dropdown--button" data-button="last">последний</button> </li> </ul> </div> </div><!-- /.filter__secondary--item --> <div class="filter__secondary--item"> <select name="select" class="pretty-select"> <option value="Не выбрано">Класс жилья</option> <option value="Эконом">Эконом</option> <option value="Стандарт">Стандарт</option> <option value="Комфорт">Комфорт</option> <option value="Комфорт+">Комфорт+</option> <option value="Бизнес">Бизнес</option> <option value="Элит">Элит</option> </select> </div><!-- /.filter__secondary--item --> </div><!-- /.filter__secondary--row --> <ul class="filter__secondary--inline"> <li> <label class="btn-checkbox"> <input type="checkbox" class="btn-checkbox__input" name="pc-1"> <div class="btn-checkbox__label"> <span class="btn-checkbox__text">Евро-планировка</span> <i class="btn-checkbox__icon" data-tippy-content="Подсказка" data-placement="top"> <svg class="ico-svg" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#info-circle" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </i> </div> </label> </li> <li> <label class="btn-checkbox"> <input type="checkbox" class="btn-checkbox__input" name="pc-1"> <div class="btn-checkbox__label"> <span class="btn-checkbox__text">Переуступка</span> <i class="btn-checkbox__icon" data-tippy-content="Подсказка" data-placement="top"> <svg class="ico-svg" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#info-circle" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </i> </div> </label> </li> <li> <div class="checkbox-group"> <div class="checkbox-group__row"> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="radio" class="checkbox-group__input" name="check-group2" value="" checked> <span class="checkbox-group__label">С отделкой</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="radio" class="checkbox-group__input" name="check-group2" value=""> <span class="checkbox-group__label">Без отделки</span> </label> </div> </div> </div> </li> </ul> </div><!-- /.filter__secondary --> <div class="filter__actions"> <div class="filter__actions__column"> <button type="button" class="btn btn-filter">Показать 1256 квартир</button> <a href="map.html" type="button" class="btn btn-map" open-tab="metro"><img src="img/icons/about-icon-06_red.svg" alt=""> Смотреть на карте</a> <button class="btn-reset"> <svg width="8" height="9" viewBox="0 0 8 9" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M7 1.5L1 7.5" stroke="#FF502F" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> <path d="M1 1.5L7 7.5" stroke="#FF502F" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> </svg> <span>Очистить фильтры</span> </button> </div> <div class="filter__actions__column"> <button class="filter__toggle"> <span class="filter__toggle--text">Дополнительные фильтры</span> <i class="filter__toggle--icon"> <svg width="10" height="7" viewBox="0 0 10 7" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M1 5.5L5 1.5L9 5.5" stroke="#FF502F" stroke-width="1.5"/> </svg> </i> </button> </div> </div> <div class="filter__params"> <ul class="filter__params--list"> <li class="filter__params--item"> <div class="filter__params--label">Применено</div> </li> <li class="filter__params--item"> <div class="filter__params--value"> <div class="filter__params--label">цена от 5,9 млн до 120,7 млн</div> <div class="filter__params--del"> <svg class="ico-svg" viewBox="0 0 8 9" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#clear" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </div> </div> </li><!--/.filter__params--item --> <li class="filter__params--item"> <div class="filter__params--value"> <div class="filter__params--label">площадь от 15 м² до 270 м<sup>2</sup></div> <div class="filter__params--del"> <svg class="ico-svg" viewBox="0 0 8 9" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#clear" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </div> </div> </li><!--/.filter__params--item --> <li class="filter__params--item"> <div class="filter__params--value"> <div class="filter__params--label">с 1 по 25 этаж</div> <div class="filter__params--del"> <svg class="ico-svg" viewBox="0 0 8 9" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#clear" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </div> </div> </li><!--/.filter__params--item --> </ul> </div> <div class="filter__progress filter-progress"> <div class="filter__progress--bar filter-progress-bar" style="width: 40%;"></div> </div><!--/.filter-mobile__footer --> </div> </div><!--/.filter --> <div class="mobile-bar"> <div class="mobile-bar__item"> <select class="pretty-select"> <option value="Сначала дешевле">Сначала дешевле</option> <option value="Сначала дороже">Сначала дороже</option> <option value="С большей площадью">С большей площадью</option> <option value="С меньшей площадью">С меньшей площадью</option> </select> </div> <div class="mobile-bar__item"> <a href="map.html" type="button" class="btn btn-map" open-tab="metro"><img src="img/icons/about-icon-06_red.svg" alt=""> Смотреть на карте</a> </div> </div> <div class="simple-bar"> <div class="simple-bar__item"> <div class="sorter"> <div class="sorter__header">Сортировать по</div> <ul class="sorter__content"> <li> <button class="sorter__item active"> <span class="sorter__item--text">Цене</span> <span class="sorter__item--icon"> <span></span> </span> </button><!--/.sorter__item --> </li> <li> <button class="sorter__item"> <span class="sorter__item--text">Площади</span> <span class="sorter__item--icon"> <span></span> </span> </button><!--/.sorter__item --> </li> <li> <button class="sorter__item"> <span class="sorter__item--text">Сроку сдачи</span> <span class="sorter__item--icon"> <span></span> </span> </button><!--/.sorter__item --> </li> <li> <button class="sorter__item"> <span class="sorter__item--text">Расстоянию до метро</span> <span class="sorter__item--icon"> <span></span> </span> </button><!--/.sorter__item --> </li> </ul> </div> </div> </div> <div class="items-grid active"> <div class="item"> <div class="item__header"> <a href="javascript:void(0)" class="item__media"> <div class="item__media--image"> <img src="img/content/item_image__01.jpg" class="img-fluid" alt=""> </div> <div class="item__media--map"> <img src="img/content/item_map_01.jpg" class="img-fluid" alt=""> <div class="item__marker"> <div class="item__marker--elem"> <div class="item__marker--icon"> <svg class="ico-svg" viewBox="0 0 10 15" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#distanceicon" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </div> <div class="item__marker--text">Раменки 7 минут</div> </div> </div> </div> </a> <div class="item__tags"> <div class="items__tags-list"> <div class="item__tag item__tag--orange">Ипотека от 6,3%</div> <div class="item__tag item__tag--blue">Старт продаж</div> <div class="item__tag item__tag--blue">Кладовые</div> </div> <button class="button item__tags--toggle"> <svg width="8" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"> <path d="M151.5 347.8L3.5 201c-4.7-4.7-4.7-12.3 0-17l19.8-19.8c4.7-4.7 12.3-4.7 17 0L160 282.7l119.7-118.5c4.7-4.7 12.3-4.7 17 0l19.8 19.8c4.7 4.7 4.7 12.3 0 17l-148 146.8c-4.7 4.7-12.3 4.7-17 0z" /> </svg> </button> </div> <button class="item__toggle" type="button" data-show="карта" data-hide="скрыть"></button> </div> <div class="item__content"> <div class="item__content--base"> <div class="item__info"> <div class="item__info--completion">Сдача IV кв 2022</div> <div class="item__info--developer">ЛСР недвижимость</div> </div> <div class="item__title">Мосфильмовский</div> <div class="item__district"> <div class="item__district--icon" style="background-color: #FFD702;"></div> <div class="item__district--name">Сокол</div> <div class="item__district--distance"> <i> <svg class="ico-svg" viewBox="0 0 10 15" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#distanceicon" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </i> <span>12 минут</span> </div> </div> <div class="item__data"> <div class="item__data--price">от 28,61 млн ₽</div> <div class="item__data--apartments">43 квартиры</div> </div> </div> <div class="item__content--hover"> <div class="item__info"> <div class="item__info--completion">Сдача IV кв 2022</div> <a href="javascript:void(0)" class="item__info--apartments">43 квартиры</a> </div> <div class="item__price"> <div class="item__price--title">Минимальная стоимость, млн ₽</div> <div class="item__price--table"> <div class="item__table"> <div class="item__table--elem"> <div class="item__table--label">Студия</div> <div class="item__table--value">4,51</div> </div> <div class="item__table--elem"> <div class="item__table--label">1-комн</div> <div class="item__table--value">8,32</div> </div> <div class="item__table--elem"> <div class="item__table--label">2-комн</div> <div class="item__table--value">12,44</div> </div> <div class="item__table--elem"> <div class="item__table--label">3-комн</div> <div class="item__table--value">14,80</div> </div> <div class="item__table--elem"> <div class="item__table--label">4-комн</div> <div class="item__table--value">20,83</div> </div> <div class="item__table--elem"> <div class="item__table--label">5-комн</div> <div class="item__table--value">127,47</div> </div> </div> </div> </div> </div> </div> </div> <div class="item"> <div class="item__header"> <a href="javascript:void(0)" class="item__media"> <div class="item__media--image"> <img src="img/content/item_image__02.jpg" class="img-fluid" alt=""> </div> <div class="item__media--map"> <img src="img/content/item_map_01.jpg" class="img-fluid" alt=""> <div class="item__marker"> <div class="item__marker--elem"> <div class="item__marker--icon"> <svg class="ico-svg" viewBox="0 0 10 15" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#distanceicon" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </div> <div class="item__marker--text">Раменки 7 минут</div> </div> </div> </div> </a> <div class="item__tags"> <div class="items__tags-list"> <div class="item__tag item__tag--orange">Ипотека от 6,3%</div> <div class="item__tag item__tag--blue">Старт продаж</div> <div class="item__tag item__tag--blue">Кладовые</div> </div> <button class="button item__tags--toggle"> <svg width="8" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"> <path d="M151.5 347.8L3.5 201c-4.7-4.7-4.7-12.3 0-17l19.8-19.8c4.7-4.7 12.3-4.7 17 0L160 282.7l119.7-118.5c4.7-4.7 12.3-4.7 17 0l19.8 19.8c4.7 4.7 4.7 12.3 0 17l-148 146.8c-4.7 4.7-12.3 4.7-17 0z" /> </svg> </button> </div> <button class="item__toggle" type="button" data-show="карта" data-hide="скрыть"></button> </div> <div class="item__content"> <div class="item__content--base"> <div class="item__info"> <div class="item__info--completion">Сдача III кв 2024</div> <div class="item__info--developer">ПИК</div> </div> <div class="item__title">Хорошевский</div> <div class="item__district"> <div class="item__district--icon" style="background-color: #a0a0a0;"></div> <div class="item__district--name"> <span>ул Академика Янгеля</span> </div> <div class="item__district--distance"> <i> <svg class="ico-svg" viewBox="0 0 10 15" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#distanceicon" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </i> <span>12 минут</span> </div> </div> <div class="item__data"> <div class="item__data--price">от 12,52 млн ₽</div> <div class="item__data--apartments">29 квартир</div> </div> </div> <div class="item__content--hover"> <div class="item__info"> <div class="item__info--completion">Сдача III кв 2024</div> <a href="javascript:void(0)" class="item__info--apartments">29 квартир</a> </div> <div class="item__price"> <div class="item__price--title">Минимальная стоимость, млн ₽</div> <div class="item__price--table"> <div class="item__table"> <div class="item__table--elem"> <div class="item__table--label">Студия</div> <div class="item__table--value">4,51</div> </div> <div class="item__table--elem"> <div class="item__table--label">1-комн</div> <div class="item__table--value">8,32</div> </div> <div class="item__table--elem"> <div class="item__table--label">2-комн</div> <div class="item__table--value">12,44</div> </div> <div class="item__table--elem"> <div class="item__table--label">3-комн</div> <div class="item__table--value">14,80</div> </div> <div class="item__table--elem"> <div class="item__table--label">4-комн</div> <div class="item__table--value">20,83</div> </div> <div class="item__table--elem"> <div class="item__table--label">5-комн</div> <div class="item__table--value">127,47</div> </div> </div> </div> </div> </div> </div> </div> <div class="item item--accent"> <div class="item__header"> <a href="javascript:void(0)" class="item__media"> <div class="item__media--image"> <img src="img/content/item_image__03.jpg" class="img-fluid" alt=""> </div> <div class="item__media--map"> <img src="img/content/item_map_01.jpg" class="img-fluid" alt=""> <div class="item__marker"> <div class="item__marker--elem"> <div class="item__marker--icon"> <svg class="ico-svg" viewBox="0 0 10 15" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#distanceicon" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </div> <div class="item__marker--text">Тропарево 7 минут</div> </div> </div> </div> </a> <div class="item__tags"> <div class="items__tags-list"> <div class="item__tag item__tag--orange">Ипотека от 6,3%</div> <div class="item__tag item__tag--blue">Старт продаж</div> <div class="item__tag item__tag--blue">Кладовые</div> </div> <button class="button item__tags--toggle"> <svg width="8" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"> <path d="M151.5 347.8L3.5 201c-4.7-4.7-4.7-12.3 0-17l19.8-19.8c4.7-4.7 12.3-4.7 17 0L160 282.7l119.7-118.5c4.7-4.7 12.3-4.7 17 0l19.8 19.8c4.7 4.7 4.7 12.3 0 17l-148 146.8c-4.7 4.7-12.3 4.7-17 0z" /> </svg> </button> </div> <button class="item__toggle" type="button" data-show="карта" data-hide="скрыть"></button> </div> <div class="item__content"> <div class="item__content--base"> <div class="item__info"> <div class="item__info--completion">Сдача IV кв 2022</div> <div class="item__info--developer">ЛСР недвижимость</div> </div> <div class="item__title">Солнечный Луч</div> <div class="item__district"> <div class="item__district--icon" style="background-color: #FFD702;"></div> <div class="item__district--name">Сокол</div> <div class="item__district--distance"> <i> <svg class="ico-svg" viewBox="0 0 10 15" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#distanceicon" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </i> <span>12 минут</span> </div> </div> <div class="item__data"> <div class="item__data--price">от 28,61 млн ₽</div> <div class="item__data--apartments">43 квартиры</div> </div> </div> <div class="item__content--hover"> <div class="item__info"> <div class="item__info--completion">Сдача IV кв 2022</div> <a href="javascript:void(0)" class="item__info--apartments">43 квартиры</a> </div> <div class="item__price"> <div class="item__price--title">Минимальная стоимость, млн ₽</div> <div class="item__price--table"> <div class="item__table"> <div class="item__table--elem"> <div class="item__table--label">Студия</div> <div class="item__table--value">4,51</div> </div> <div class="item__table--elem"> <div class="item__table--label">1-комн</div> <div class="item__table--value">8,32</div> </div> <div class="item__table--elem"> <div class="item__table--label">2-комн</div> <div class="item__table--value">12,44</div> </div> <div class="item__table--elem"> <div class="item__table--label">3-комн</div> <div class="item__table--value">14,80</div> </div> <div class="item__table--elem"> <div class="item__table--label">4-комн</div> <div class="item__table--value">20,83</div> </div> <div class="item__table--elem"> <div class="item__table--label">5-комн</div> <div class="item__table--value">127,47</div> </div> </div> </div> </div> </div> </div> </div> <div class="item"> <div class="item__header"> <a href="javascript:void(0)" class="item__media"> <div class="item__media--image"> <img src="img/content/item_image__04.jpg" class="img-fluid" alt=""> </div> <div class="item__media--map"> <img src="img/content/item_map_01.jpg" class="img-fluid" alt=""> <div class="item__marker"> <div class="item__marker--elem"> <div class="item__marker--icon"> <svg class="ico-svg" viewBox="0 0 10 15" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#distanceicon" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </div> <div class="item__marker--text">Раменки 7 минут</div> </div> </div> </div> </a> <div class="item__tags"> <div class="items__tags-list"> <div class="item__tag item__tag--orange">Ипотека от 6,3%</div> <div class="item__tag item__tag--blue">Старт продаж</div> <div class="item__tag item__tag--blue">Кладовые</div> </div> <button class="button item__tags--toggle"> <svg width="8" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"> <path d="M151.5 347.8L3.5 201c-4.7-4.7-4.7-12.3 0-17l19.8-19.8c4.7-4.7 12.3-4.7 17 0L160 282.7l119.7-118.5c4.7-4.7 12.3-4.7 17 0l19.8 19.8c4.7 4.7 4.7 12.3 0 17l-148 146.8c-4.7 4.7-12.3 4.7-17 0z" /> </svg> </button> </div> <button class="item__toggle" type="button" data-show="карта" data-hide="скрыть"></button> </div> <div class="item__content"> <div class="item__content--base"> <div class="item__info"> <div class="item__info--completion">Сдача III кв 2024</div> <div class="item__info--developer">ПИК</div> </div> <div class="item__title">Петр Великий и Екатерина Великая</div> <div class="item__district"> <div class="item__district--icon" style="background-color: #a0a0a0;"></div> <div class="item__district--name"> <span>ул Академика Янгеля</span> </div> <div class="item__district--distance"> <i> <svg class="ico-svg" viewBox="0 0 10 15" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#distanceicon" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </i> <span>12 минут</span> </div> </div> <div class="item__data"> <div class="item__data--price">от 12,52 млн ₽</div> <div class="item__data--apartments">29 квартир</div> </div> </div> <div class="item__content--hover"> <div class="item__info"> <div class="item__info--completion">Сдача III кв 2024</div> <a href="javascript:void(0)" class="item__info--apartments">29 квартир</a> </div> <div class="item__price"> <div class="item__price--title">Минимальная стоимость, млн ₽</div> <div class="item__price--table"> <div class="item__table"> <div class="item__table--elem"> <div class="item__table--label">Студия</div> <div class="item__table--value">4,51</div> </div> <div class="item__table--elem"> <div class="item__table--label">1-комн</div> <div class="item__table--value">8,32</div> </div> <div class="item__table--elem"> <div class="item__table--label">2-комн</div> <div class="item__table--value">12,44</div> </div> <div class="item__table--elem"> <div class="item__table--label">3-комн</div> <div class="item__table--value">14,80</div> </div> <div class="item__table--elem"> <div class="item__table--label">4-комн</div> <div class="item__table--value">20,83</div> </div> <div class="item__table--elem"> <div class="item__table--label">5-комн</div> <div class="item__table--value">127,47</div> </div> </div> </div> </div> </div> </div> </div> <div class="item"> <div class="item__header"> <a href="javascript:void(0)" class="item__media"> <div class="item__media--image"> <img src="img/content/item_image__05.jpg" class="img-fluid" alt=""> </div> <div class="item__media--map"> <img src="img/content/item_map_01.jpg" class="img-fluid" alt=""> <div class="item__marker"> <div class="item__marker--elem"> <div class="item__marker--icon"> <svg class="ico-svg" viewBox="0 0 10 15" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#distanceicon" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </div> <div class="item__marker--text">Раменки 7 минут</div> </div> </div> </div> </a> <div class="item__tags"> <div class="items__tags-list"> <div class="item__tag item__tag--orange">Ипотека от 6,3%</div> <div class="item__tag item__tag--blue">Старт продаж</div> <div class="item__tag item__tag--blue">Кладовые</div> </div> <button class="button item__tags--toggle"> <svg width="8" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"> <path d="M151.5 347.8L3.5 201c-4.7-4.7-4.7-12.3 0-17l19.8-19.8c4.7-4.7 12.3-4.7 17 0L160 282.7l119.7-118.5c4.7-4.7 12.3-4.7 17 0l19.8 19.8c4.7 4.7 4.7 12.3 0 17l-148 146.8c-4.7 4.7-12.3 4.7-17 0z" /> </svg> </button> </div> <button class="item__toggle" type="button" data-show="карта" data-hide="скрыть"></button> </div> <div class="item__content"> <div class="item__content--base"> <div class="item__info"> <div class="item__info--completion">Сдача III кв 2024</div> <div class="item__info--developer">ПИК</div> </div> <div class="item__title">Зеленый квартал на Пулковских высотах</div> <div class="item__district"> <div class="item__district--icon" style="background-color: #a0a0a0;"></div> <div class="item__district--name"> <span>ул Академика Янгеля</span> </div> <div class="item__district--distance"> <i> <svg class="ico-svg" viewBox="0 0 10 15" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#distanceicon" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </i> <span>12 минут</span> </div> </div> <div class="item__data"> <div class="item__data--price">от 12,52 млн ₽</div> <div class="item__data--apartments">29 квартир</div> </div> </div> <div class="item__content--hover"> <div class="item__info"> <div class="item__info--completion">Сдача III кв 2024</div> <a href="javascript:void(0)" class="item__info--apartments">29 квартир</a> </div> <div class="item__price"> <div class="item__price--title">Минимальная стоимость, млн ₽</div> <div class="item__price--table"> <div class="item__table"> <div class="item__table--elem"> <div class="item__table--label">Студия</div> <div class="item__table--value">4,51</div> </div> <div class="item__table--elem"> <div class="item__table--label">1-комн</div> <div class="item__table--value">8,32</div> </div> <div class="item__table--elem"> <div class="item__table--label">2-комн</div> <div class="item__table--value">12,44</div> </div> <div class="item__table--elem"> <div class="item__table--label">3-комн</div> <div class="item__table--value">14,80</div> </div> <div class="item__table--elem"> <div class="item__table--label">4-комн</div> <div class="item__table--value">20,83</div> </div> <div class="item__table--elem"> <div class="item__table--label">5-комн</div> <div class="item__table--value">127,47</div> </div> </div> </div> </div> </div> </div> </div> <div class="item"> <div class="item__header"> <a href="javascript:void(0)" class="item__media"> <div class="item__media--image"> <img src="img/content/item_image__06.jpg" class="img-fluid" alt=""> </div> <div class="item__media--map"> <img src="img/content/item_map_01.jpg" class="img-fluid" alt=""> <div class="item__marker"> <div class="item__marker--elem"> <div class="item__marker--icon"> <svg class="ico-svg" viewBox="0 0 10 15" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#distanceicon" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </div> <div class="item__marker--text">Раменки 7 минут</div> </div> </div> </div> </a> <div class="item__tags"> <div class="items__tags-list"> <div class="item__tag item__tag--orange">Ипотека от 6,3%</div> <div class="item__tag item__tag--blue">Старт продаж</div> <div class="item__tag item__tag--blue">Кладовые</div> </div> <button class="button item__tags--toggle"> <svg width="8" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"> <path d="M151.5 347.8L3.5 201c-4.7-4.7-4.7-12.3 0-17l19.8-19.8c4.7-4.7 12.3-4.7 17 0L160 282.7l119.7-118.5c4.7-4.7 12.3-4.7 17 0l19.8 19.8c4.7 4.7 4.7 12.3 0 17l-148 146.8c-4.7 4.7-12.3 4.7-17 0z" /> </svg> </button> </div> <button class="item__toggle" type="button" data-show="карта" data-hide="скрыть"></button> </div> <div class="item__content"> <div class="item__content--base"> <div class="item__info"> <div class="item__info--completion">Дома сданы</div> <div class="item__info--developer">Гранель</div> </div> <div class="item__title">Сити Парк</div> <div class="item__district"> <div class="item__district--icon" style="background-color: #FFD702;"></div> <div class="item__district--name">Сокол</div> <div class="item__district--distance"> <i> <svg class="ico-svg" viewBox="0 0 10 15" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#distanceicon" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </i> <span>12 минут</span> </div> </div> <div class="item__data"> <div class="item__data--price">от 28,61 млн ₽</div> <div class="item__data--apartments">43 квартиры</div> </div> </div> <div class="item__content--hover"> <div class="item__info"> <div class="item__info--completion">Дома сданы2</div> <a href="javascript:void(0)" class="item__info--apartments">43 квартиры</a> </div> <div class="item__price"> <div class="item__price--title">Минимальная стоимость, млн ₽</div> <div class="item__price--table"> <div class="item__table"> <div class="item__table--elem"> <div class="item__table--label">Студия</div> <div class="item__table--value">4,51</div> </div> <div class="item__table--elem"> <div class="item__table--label">1-комн</div> <div class="item__table--value">8,32</div> </div> <div class="item__table--elem"> <div class="item__table--label">2-комн</div> <div class="item__table--value">12,44</div> </div> <div class="item__table--elem"> <div class="item__table--label">3-комн</div> <div class="item__table--value">14,80</div> </div> <div class="item__table--elem"> <div class="item__table--label">4-комн</div> <div class="item__table--value">20,83</div> </div> <div class="item__table--elem"> <div class="item__table--label">5-комн</div> <div class="item__table--value">127,47</div> </div> </div> </div> </div> </div> </div> </div> <div class="item-offer"> <div class="item-offer__title">Субсидированная <br />ипотека от 5,9%</div> <div class="item-offer__text">Рассрочки для молодых семей и молодоженов</div> <div class="item-offer__button"> <a href="javascript:void(0)" class="btn">Узнать подробнее</a> </div> <div class="item-offer__bg"> <img src="img/item-offer__image.jpg" class="img-fluid" alt=""> </div> </div> <div class="item"> <div class="item__header"> <a href="javascript:void(0)" class="item__media"> <div class="item__media--image"> <img src="img/content/item_image__01.jpg" class="img-fluid" alt=""> </div> <div class="item__media--map"> <img src="img/content/item_map_01.jpg" class="img-fluid" alt=""> <div class="item__marker"> <div class="item__marker--elem"> <div class="item__marker--icon"> <svg class="ico-svg" viewBox="0 0 10 15" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#distanceicon" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </div> <div class="item__marker--text">Раменки 7 минут</div> </div> </div> </div> </a> <div class="item__tags"> <div class="items__tags-list"> <div class="item__tag item__tag--orange">Ипотека от 6,3%</div> <div class="item__tag item__tag--blue">Старт продаж</div> <div class="item__tag item__tag--blue">Кладовые</div> </div> <button class="button item__tags--toggle"> <svg width="8" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"> <path d="M151.5 347.8L3.5 201c-4.7-4.7-4.7-12.3 0-17l19.8-19.8c4.7-4.7 12.3-4.7 17 0L160 282.7l119.7-118.5c4.7-4.7 12.3-4.7 17 0l19.8 19.8c4.7 4.7 4.7 12.3 0 17l-148 146.8c-4.7 4.7-12.3 4.7-17 0z" /> </svg> </button> </div> <button class="item__toggle" type="button" data-show="карта" data-hide="скрыть"></button> </div> <div class="item__content"> <div class="item__content--base"> <div class="item__info"> <div class="item__info--completion">Сдача IV кв 2022</div> <div class="item__info--developer">ЛСР недвижимость</div> </div> <div class="item__title">Мосфильмовский</div> <div class="item__district"> <div class="item__district--icon" style="background-color: #FFD702;"></div> <div class="item__district--name">Сокол</div> <div class="item__district--distance"> <i> <svg class="ico-svg" viewBox="0 0 10 15" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#distanceicon" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </i> <span>12 минут</span> </div> </div> <div class="item__data"> <div class="item__data--price">от 28,61 млн ₽</div> <div class="item__data--apartments">43 квартиры</div> </div> </div> <div class="item__content--hover"> <div class="item__info"> <div class="item__info--completion">Сдача IV кв 2022</div> <a href="javascript:void(0)" class="item__info--apartments">43 квартиры</a> </div> <div class="item__price"> <div class="item__price--title">Минимальная стоимость, млн ₽</div> <div class="item__price--table"> <div class="item__table"> <div class="item__table--elem"> <div class="item__table--label">Студия</div> <div class="item__table--value">4,51</div> </div> <div class="item__table--elem"> <div class="item__table--label">1-комн</div> <div class="item__table--value">8,32</div> </div> <div class="item__table--elem"> <div class="item__table--label">2-комн</div> <div class="item__table--value">12,44</div> </div> <div class="item__table--elem"> <div class="item__table--label">3-комн</div> <div class="item__table--value">14,80</div> </div> <div class="item__table--elem"> <div class="item__table--label">4-комн</div> <div class="item__table--value">20,83</div> </div> <div class="item__table--elem"> <div class="item__table--label">5-комн</div> <div class="item__table--value">127,47</div> </div> </div> </div> </div> </div> </div> </div> <div class="item"> <div class="item__header"> <a href="javascript:void(0)" class="item__media"> <div class="item__media--image"> <img src="img/content/item_image__01.jpg" class="img-fluid" alt=""> </div> <div class="item__media--map"> <img src="img/content/item_map_01.jpg" class="img-fluid" alt=""> <div class="item__marker"> <div class="item__marker--elem"> <div class="item__marker--icon"> <svg class="ico-svg" viewBox="0 0 10 15" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#distanceicon" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </div> <div class="item__marker--text">Раменки 7 минут</div> </div> </div> </div> </a> <div class="item__tags"> <div class="items__tags-list"> <div class="item__tag item__tag--orange">Ипотека от 6,3%</div> <div class="item__tag item__tag--blue">Старт продаж</div> <div class="item__tag item__tag--blue">Кладовые</div> </div> <button class="button item__tags--toggle"> <svg width="8" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"> <path d="M151.5 347.8L3.5 201c-4.7-4.7-4.7-12.3 0-17l19.8-19.8c4.7-4.7 12.3-4.7 17 0L160 282.7l119.7-118.5c4.7-4.7 12.3-4.7 17 0l19.8 19.8c4.7 4.7 4.7 12.3 0 17l-148 146.8c-4.7 4.7-12.3 4.7-17 0z" /> </svg> </button> </div> <button class="item__toggle" type="button" data-show="карта" data-hide="скрыть"></button> </div> <div class="item__content"> <div class="item__content--base"> <div class="item__info"> <div class="item__info--completion">Сдача IV кв 2022</div> <div class="item__info--developer">ЛСР недвижимость</div> </div> <div class="item__title">Мосфильмовский</div> <div class="item__district"> <div class="item__district--icon" style="background-color: #FFD702;"></div> <div class="item__district--name">Сокол</div> <div class="item__district--distance"> <i> <svg class="ico-svg" viewBox="0 0 10 15" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#distanceicon" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </i> <span>12 минут</span> </div> </div> <div class="item__data"> <div class="item__data--price">от 28,61 млн ₽</div> <div class="item__data--apartments">43 квартиры</div> </div> </div> <div class="item__content--hover"> <div class="item__info"> <div class="item__info--completion">Сдача IV кв 2022</div> <a href="javascript:void(0)" class="item__info--apartments">43 квартиры</a> </div> <div class="item__price"> <div class="item__price--title">Минимальная стоимость, млн ₽</div> <div class="item__price--table"> <div class="item__table"> <div class="item__table--elem"> <div class="item__table--label">Студия</div> <div class="item__table--value">4,51</div> </div> <div class="item__table--elem"> <div class="item__table--label">1-комн</div> <div class="item__table--value">8,32</div> </div> <div class="item__table--elem"> <div class="item__table--label">2-комн</div> <div class="item__table--value">12,44</div> </div> <div class="item__table--elem"> <div class="item__table--label">3-комн</div> <div class="item__table--value">14,80</div> </div> <div class="item__table--elem"> <div class="item__table--label">4-комн</div> <div class="item__table--value">20,83</div> </div> <div class="item__table--elem"> <div class="item__table--label">5-комн</div> <div class="item__table--value">127,47</div> </div> </div> </div> </div> </div> </div> </div> <div class="item"> <div class="item__header"> <a href="javascript:void(0)" class="item__media"> <div class="item__media--image"> <img src="img/content/item_image__02.jpg" class="img-fluid" alt=""> </div> <div class="item__media--map"> <img src="img/content/item_map_01.jpg" class="img-fluid" alt=""> <div class="item__marker"> <div class="item__marker--elem"> <div class="item__marker--icon"> <svg class="ico-svg" viewBox="0 0 10 15" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#distanceicon" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </div> <div class="item__marker--text">Раменки 7 минут</div> </div> </div> </div> </a> <div class="item__tags"> <div class="items__tags-list"> <div class="item__tag item__tag--orange">Ипотека от 6,3%</div> <div class="item__tag item__tag--blue">Старт продаж</div> <div class="item__tag item__tag--blue">Кладовые</div> </div> <button class="button item__tags--toggle"> <svg width="8" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"> <path d="M151.5 347.8L3.5 201c-4.7-4.7-4.7-12.3 0-17l19.8-19.8c4.7-4.7 12.3-4.7 17 0L160 282.7l119.7-118.5c4.7-4.7 12.3-4.7 17 0l19.8 19.8c4.7 4.7 4.7 12.3 0 17l-148 146.8c-4.7 4.7-12.3 4.7-17 0z" /> </svg> </button> </div> <button class="item__toggle" type="button" data-show="карта" data-hide="скрыть"></button> </div> <div class="item__content"> <div class="item__content--base"> <div class="item__info"> <div class="item__info--completion">Сдача III кв 2024</div> <div class="item__info--developer">ПИК</div> </div> <div class="item__title">Хорошевский</div> <div class="item__district"> <div class="item__district--icon" style="background-color: #a0a0a0;"></div> <div class="item__district--name"> <span>ул Академика Янгеля</span> </div> <div class="item__district--distance"> <i> <svg class="ico-svg" viewBox="0 0 10 15" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#distanceicon" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </i> <span>12 минут</span> </div> </div> <div class="item__data"> <div class="item__data--price">от 12,52 млн ₽</div> <div class="item__data--apartments">29 квартир</div> </div> </div> <div class="item__content--hover"> <div class="item__info"> <div class="item__info--completion">Сдача III кв 2024</div> <a href="javascript:void(0)" class="item__info--apartments">29 квартир</a> </div> <div class="item__price"> <div class="item__price--title">Минимальная стоимость, млн ₽</div> <div class="item__price--table"> <div class="item__table"> <div class="item__table--elem"> <div class="item__table--label">Студия</div> <div class="item__table--value">4,51</div> </div> <div class="item__table--elem"> <div class="item__table--label">1-комн</div> <div class="item__table--value">8,32</div> </div> <div class="item__table--elem"> <div class="item__table--label">2-комн</div> <div class="item__table--value">12,44</div> </div> <div class="item__table--elem"> <div class="item__table--label">3-комн</div> <div class="item__table--value">14,80</div> </div> <div class="item__table--elem"> <div class="item__table--label">4-комн</div> <div class="item__table--value">20,83</div> </div> <div class="item__table--elem"> <div class="item__table--label">5-комн</div> <div class="item__table--value">127,47</div> </div> </div> </div> </div> </div> </div> </div> <div class="item item--accent"> <div class="item__header"> <a href="javascript:void(0)" class="item__media"> <div class="item__media--image"> <img src="img/content/item_image__03.jpg" class="img-fluid" alt=""> </div> <div class="item__media--map"> <img src="img/content/item_map_01.jpg" class="img-fluid" alt=""> <div class="item__marker"> <div class="item__marker--elem"> <div class="item__marker--icon"> <svg class="ico-svg" viewBox="0 0 10 15" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#distanceicon" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </div> <div class="item__marker--text">Тропарево 7 минут</div> </div> </div> </div> </a> <div class="item__tags"> <div class="items__tags-list"> <div class="item__tag item__tag--orange">Ипотека от 6,3%</div> <div class="item__tag item__tag--blue">Старт продаж</div> <div class="item__tag item__tag--blue">Кладовые</div> </div> <button class="button item__tags--toggle"> <svg width="8" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"> <path d="M151.5 347.8L3.5 201c-4.7-4.7-4.7-12.3 0-17l19.8-19.8c4.7-4.7 12.3-4.7 17 0L160 282.7l119.7-118.5c4.7-4.7 12.3-4.7 17 0l19.8 19.8c4.7 4.7 4.7 12.3 0 17l-148 146.8c-4.7 4.7-12.3 4.7-17 0z" /> </svg> </button> </div> <button class="item__toggle" type="button" data-show="карта" data-hide="скрыть"></button> </div> <div class="item__content"> <div class="item__content--base"> <div class="item__info"> <div class="item__info--completion">Сдача IV кв 2022</div> <div class="item__info--developer">ЛСР недвижимость</div> </div> <div class="item__title">Солнечный Луч</div> <div class="item__district"> <div class="item__district--icon" style="background-color: #FFD702;"></div> <div class="item__district--name">Сокол</div> <div class="item__district--distance"> <i> <svg class="ico-svg" viewBox="0 0 10 15" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#distanceicon" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </i> <span>12 минут</span> </div> </div> <div class="item__data"> <div class="item__data--price">от 28,61 млн ₽</div> <div class="item__data--apartments">43 квартиры</div> </div> </div> <div class="item__content--hover"> <div class="item__info"> <div class="item__info--completion">Сдача IV кв 2022</div> <a href="javascript:void(0)" class="item__info--apartments">43 квартиры</a> </div> <div class="item__price"> <div class="item__price--title">Минимальная стоимость, млн ₽</div> <div class="item__price--table"> <div class="item__table"> <div class="item__table--elem"> <div class="item__table--label">Студия</div> <div class="item__table--value">4,51</div> </div> <div class="item__table--elem"> <div class="item__table--label">1-комн</div> <div class="item__table--value">8,32</div> </div> <div class="item__table--elem"> <div class="item__table--label">2-комн</div> <div class="item__table--value">12,44</div> </div> <div class="item__table--elem"> <div class="item__table--label">3-комн</div> <div class="item__table--value">14,80</div> </div> <div class="item__table--elem"> <div class="item__table--label">4-комн</div> <div class="item__table--value">20,83</div> </div> <div class="item__table--elem"> <div class="item__table--label">5-комн</div> <div class="item__table--value">127,47</div> </div> </div> </div> </div> </div> </div> </div> <div class="item"> <div class="item__header"> <a href="javascript:void(0)" class="item__media"> <div class="item__media--image"> <img src="img/content/item_image__04.jpg" class="img-fluid" alt=""> </div> <div class="item__media--map"> <img src="img/content/item_map_01.jpg" class="img-fluid" alt=""> <div class="item__marker"> <div class="item__marker--elem"> <div class="item__marker--icon"> <svg class="ico-svg" viewBox="0 0 10 15" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#distanceicon" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </div> <div class="item__marker--text">Раменки 7 минут</div> </div> </div> </div> </a> <div class="item__tags"> <div class="items__tags-list"> <div class="item__tag item__tag--orange">Ипотека от 6,3%</div> <div class="item__tag item__tag--blue">Старт продаж</div> <div class="item__tag item__tag--blue">Кладовые</div> </div> <button class="button item__tags--toggle"> <svg width="8" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"> <path d="M151.5 347.8L3.5 201c-4.7-4.7-4.7-12.3 0-17l19.8-19.8c4.7-4.7 12.3-4.7 17 0L160 282.7l119.7-118.5c4.7-4.7 12.3-4.7 17 0l19.8 19.8c4.7 4.7 4.7 12.3 0 17l-148 146.8c-4.7 4.7-12.3 4.7-17 0z" /> </svg> </button> </div> <button class="item__toggle" type="button" data-show="карта" data-hide="скрыть"></button> </div> <div class="item__content"> <div class="item__content--base"> <div class="item__info"> <div class="item__info--completion">Сдача III кв 2024</div> <div class="item__info--developer">ПИК</div> </div> <div class="item__title">Петр Великий и Екатерина Великая</div> <div class="item__district"> <div class="item__district--icon" style="background-color: #a0a0a0;"></div> <div class="item__district--name"> <span>ул Академика Янгеля</span> </div> <div class="item__district--distance"> <i> <svg class="ico-svg" viewBox="0 0 10 15" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#distanceicon" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </i> <span>12 минут</span> </div> </div> <div class="item__data"> <div class="item__data--price">от 12,52 млн ₽</div> <div class="item__data--apartments">29 квартир</div> </div> </div> <div class="item__content--hover"> <div class="item__info"> <div class="item__info--completion">Сдача III кв 2024</div> <a href="javascript:void(0)" class="item__info--apartments">29 квартир</a> </div> <div class="item__price"> <div class="item__price--title">Минимальная стоимость, млн ₽</div> <div class="item__price--table"> <div class="item__table"> <div class="item__table--elem"> <div class="item__table--label">Студия</div> <div class="item__table--value">4,51</div> </div> <div class="item__table--elem"> <div class="item__table--label">1-комн</div> <div class="item__table--value">8,32</div> </div> <div class="item__table--elem"> <div class="item__table--label">2-комн</div> <div class="item__table--value">12,44</div> </div> <div class="item__table--elem"> <div class="item__table--label">3-комн</div> <div class="item__table--value">14,80</div> </div> <div class="item__table--elem"> <div class="item__table--label">4-комн</div> <div class="item__table--value">20,83</div> </div> <div class="item__table--elem"> <div class="item__table--label">5-комн</div> <div class="item__table--value">127,47</div> </div> </div> </div> </div> </div> </div> </div> <div class="item"> <div class="item__header"> <a href="javascript:void(0)" class="item__media"> <div class="item__media--image"> <img src="img/content/item_image__05.jpg" class="img-fluid" alt=""> </div> <div class="item__media--map"> <img src="img/content/item_map_01.jpg" class="img-fluid" alt=""> <div class="item__marker"> <div class="item__marker--elem"> <div class="item__marker--icon"> <svg class="ico-svg" viewBox="0 0 10 15" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#distanceicon" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </div> <div class="item__marker--text">Раменки 7 минут</div> </div> </div> </div> </a> <div class="item__tags"> <div class="items__tags-list"> <div class="item__tag item__tag--orange">Ипотека от 6,3%</div> <div class="item__tag item__tag--blue">Старт продаж</div> <div class="item__tag item__tag--blue">Кладовые</div> </div> <button class="button item__tags--toggle"> <svg width="8" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"> <path d="M151.5 347.8L3.5 201c-4.7-4.7-4.7-12.3 0-17l19.8-19.8c4.7-4.7 12.3-4.7 17 0L160 282.7l119.7-118.5c4.7-4.7 12.3-4.7 17 0l19.8 19.8c4.7 4.7 4.7 12.3 0 17l-148 146.8c-4.7 4.7-12.3 4.7-17 0z" /> </svg> </button> </div> <button class="item__toggle" type="button" data-show="карта" data-hide="скрыть"></button> </div> <div class="item__content"> <div class="item__content--base"> <div class="item__info"> <div class="item__info--completion">Сдача III кв 2024</div> <div class="item__info--developer">ПИК</div> </div> <div class="item__title">Зеленый квартал на Пулковских высотах</div> <div class="item__district"> <div class="item__district--icon" style="background-color: #a0a0a0;"></div> <div class="item__district--name"> <span>ул Академика Янгеля</span> </div> <div class="item__district--distance"> <i> <svg class="ico-svg" viewBox="0 0 10 15" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#distanceicon" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </i> <span>12 минут</span> </div> </div> <div class="item__data"> <div class="item__data--price">от 12,52 млн ₽</div> <div class="item__data--apartments">29 квартир</div> </div> </div> <div class="item__content--hover"> <div class="item__info"> <div class="item__info--completion">Сдача III кв 2024</div> <a href="javascript:void(0)" class="item__info--apartments">29 квартир</a> </div> <div class="item__price"> <div class="item__price--title">Минимальная стоимость, млн ₽</div> <div class="item__price--table"> <div class="item__table"> <div class="item__table--elem"> <div class="item__table--label">Студия</div> <div class="item__table--value">4,51</div> </div> <div class="item__table--elem"> <div class="item__table--label">1-комн</div> <div class="item__table--value">8,32</div> </div> <div class="item__table--elem"> <div class="item__table--label">2-комн</div> <div class="item__table--value">12,44</div> </div> <div class="item__table--elem"> <div class="item__table--label">3-комн</div> <div class="item__table--value">14,80</div> </div> <div class="item__table--elem"> <div class="item__table--label">4-комн</div> <div class="item__table--value">20,83</div> </div> <div class="item__table--elem"> <div class="item__table--label">5-комн</div> <div class="item__table--value">127,47</div> </div> </div> </div> </div> </div> </div> </div> <div class="item"> <div class="item__header"> <a href="javascript:void(0)" class="item__media"> <div class="item__media--image"> <img src="img/content/item_image__06.jpg" class="img-fluid" alt=""> </div> <div class="item__media--map"> <img src="img/content/item_map_01.jpg" class="img-fluid" alt=""> <div class="item__marker"> <div class="item__marker--elem"> <div class="item__marker--icon"> <svg class="ico-svg" viewBox="0 0 10 15" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#distanceicon" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </div> <div class="item__marker--text">Раменки 7 минут</div> </div> </div> </div> </a> <div class="item__tags"> <div class="items__tags-list"> <div class="item__tag item__tag--orange">Ипотека от 6,3%</div> <div class="item__tag item__tag--blue">Старт продаж</div> <div class="item__tag item__tag--blue">Кладовые</div> </div> <button class="button item__tags--toggle"> <svg width="8" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"> <path d="M151.5 347.8L3.5 201c-4.7-4.7-4.7-12.3 0-17l19.8-19.8c4.7-4.7 12.3-4.7 17 0L160 282.7l119.7-118.5c4.7-4.7 12.3-4.7 17 0l19.8 19.8c4.7 4.7 4.7 12.3 0 17l-148 146.8c-4.7 4.7-12.3 4.7-17 0z" /> </svg> </button> </div> <button class="item__toggle" type="button" data-show="карта" data-hide="скрыть"></button> </div> <div class="item__content"> <div class="item__content--base"> <div class="item__info"> <div class="item__info--completion">Дома сданы</div> <div class="item__info--developer">Гранель</div> </div> <div class="item__title">Сити Парк</div> <div class="item__district"> <div class="item__district--icon" style="background-color: #FFD702;"></div> <div class="item__district--name">Сокол</div> <div class="item__district--distance"> <i> <svg class="ico-svg" viewBox="0 0 10 15" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#distanceicon" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </i> <span>12 минут</span> </div> </div> <div class="item__data"> <div class="item__data--price">от 28,61 млн ₽</div> <div class="item__data--apartments">43 квартиры</div> </div> </div> <div class="item__content--hover"> <div class="item__info"> <div class="item__info--completion">Дома сданы2</div> <a href="javascript:void(0)" class="item__info--apartments">43 квартиры</a> </div> <div class="item__price"> <div class="item__price--title">Минимальная стоимость, млн ₽</div> <div class="item__price--table"> <div class="item__table"> <div class="item__table--elem"> <div class="item__table--label">Студия</div> <div class="item__table--value">4,51</div> </div> <div class="item__table--elem"> <div class="item__table--label">1-комн</div> <div class="item__table--value">8,32</div> </div> <div class="item__table--elem"> <div class="item__table--label">2-комн</div> <div class="item__table--value">12,44</div> </div> <div class="item__table--elem"> <div class="item__table--label">3-комн</div> <div class="item__table--value">14,80</div> </div> <div class="item__table--elem"> <div class="item__table--label">4-комн</div> <div class="item__table--value">20,83</div> </div> <div class="item__table--elem"> <div class="item__table--label">5-комн</div> <div class="item__table--value">127,47</div> </div> </div> </div> </div> </div> </div> </div> <div class="item"> <div class="item__header"> <a href="javascript:void(0)" class="item__media"> <div class="item__media--image"> <img src="img/content/item_image__01.jpg" class="img-fluid" alt=""> </div> <div class="item__media--map"> <img src="img/content/item_map_01.jpg" class="img-fluid" alt=""> <div class="item__marker"> <div class="item__marker--elem"> <div class="item__marker--icon"> <svg class="ico-svg" viewBox="0 0 10 15" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#distanceicon" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </div> <div class="item__marker--text">Раменки 7 минут</div> </div> </div> </div> </a> <div class="item__tags"> <div class="items__tags-list"> <div class="item__tag item__tag--orange">Ипотека от 6,3%</div> <div class="item__tag item__tag--blue">Старт продаж</div> <div class="item__tag item__tag--blue">Кладовые</div> </div> <button class="button item__tags--toggle"> <svg width="8" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"> <path d="M151.5 347.8L3.5 201c-4.7-4.7-4.7-12.3 0-17l19.8-19.8c4.7-4.7 12.3-4.7 17 0L160 282.7l119.7-118.5c4.7-4.7 12.3-4.7 17 0l19.8 19.8c4.7 4.7 4.7 12.3 0 17l-148 146.8c-4.7 4.7-12.3 4.7-17 0z" /> </svg> </button> </div> <button class="item__toggle" type="button" data-show="карта" data-hide="скрыть"></button> </div> <div class="item__content"> <div class="item__content--base"> <div class="item__info"> <div class="item__info--completion">Сдача IV кв 2022</div> <div class="item__info--developer">ЛСР недвижимость</div> </div> <div class="item__title">Мосфильмовский</div> <div class="item__district"> <div class="item__district--icon" style="background-color: #FFD702;"></div> <div class="item__district--name">Сокол</div> <div class="item__district--distance"> <i> <svg class="ico-svg" viewBox="0 0 10 15" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#distanceicon" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </i> <span>12 минут</span> </div> </div> <div class="item__data"> <div class="item__data--price">от 28,61 млн ₽</div> <div class="item__data--apartments">43 квартиры</div> </div> </div> <div class="item__content--hover"> <div class="item__info"> <div class="item__info--completion">Сдача IV кв 2022</div> <a href="javascript:void(0)" class="item__info--apartments">43 квартиры</a> </div> <div class="item__price"> <div class="item__price--title">Минимальная стоимость, млн ₽</div> <div class="item__price--table"> <div class="item__table"> <div class="item__table--elem"> <div class="item__table--label">Студия</div> <div class="item__table--value">4,51</div> </div> <div class="item__table--elem"> <div class="item__table--label">1-комн</div> <div class="item__table--value">8,32</div> </div> <div class="item__table--elem"> <div class="item__table--label">2-комн</div> <div class="item__table--value">12,44</div> </div> <div class="item__table--elem"> <div class="item__table--label">3-комн</div> <div class="item__table--value">14,80</div> </div> <div class="item__table--elem"> <div class="item__table--label">4-комн</div> <div class="item__table--value">20,83</div> </div> <div class="item__table--elem"> <div class="item__table--label">5-комн</div> <div class="item__table--value">127,47</div> </div> </div> </div> </div> </div> </div> </div> <div class="item"> <div class="item__header"> <a href="javascript:void(0)" class="item__media"> <div class="item__media--image"> <img src="img/content/item_image__01.jpg" class="img-fluid" alt=""> </div> <div class="item__media--map"> <img src="img/content/item_map_01.jpg" class="img-fluid" alt=""> <div class="item__marker"> <div class="item__marker--elem"> <div class="item__marker--icon"> <svg class="ico-svg" viewBox="0 0 10 15" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#distanceicon" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </div> <div class="item__marker--text">Раменки 7 минут</div> </div> </div> </div> </a> <div class="item__tags"> <div class="items__tags-list"> <div class="item__tag item__tag--orange">Ипотека от 6,3%</div> <div class="item__tag item__tag--blue">Старт продаж</div> <div class="item__tag item__tag--blue">Кладовые</div> </div> <button class="button item__tags--toggle"> <svg width="8" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"> <path d="M151.5 347.8L3.5 201c-4.7-4.7-4.7-12.3 0-17l19.8-19.8c4.7-4.7 12.3-4.7 17 0L160 282.7l119.7-118.5c4.7-4.7 12.3-4.7 17 0l19.8 19.8c4.7 4.7 4.7 12.3 0 17l-148 146.8c-4.7 4.7-12.3 4.7-17 0z" /> </svg> </button> </div> <button class="item__toggle" type="button" data-show="карта" data-hide="скрыть"></button> </div> <div class="item__content"> <div class="item__content--base"> <div class="item__info"> <div class="item__info--completion">Сдача IV кв 2022</div> <div class="item__info--developer">ЛСР недвижимость</div> </div> <div class="item__title">Мосфильмовский</div> <div class="item__district"> <div class="item__district--icon" style="background-color: #FFD702;"></div> <div class="item__district--name">Сокол</div> <div class="item__district--distance"> <i> <svg class="ico-svg" viewBox="0 0 10 15" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#distanceicon" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </i> <span>12 минут</span> </div> </div> <div class="item__data"> <div class="item__data--price">от 28,61 млн ₽</div> <div class="item__data--apartments">43 квартиры</div> </div> </div> <div class="item__content--hover"> <div class="item__info"> <div class="item__info--completion">Сдача IV кв 2022</div> <a href="javascript:void(0)" class="item__info--apartments">43 квартиры</a> </div> <div class="item__price"> <div class="item__price--title">Минимальная стоимость, млн ₽</div> <div class="item__price--table"> <div class="item__table"> <div class="item__table--elem"> <div class="item__table--label">Студия</div> <div class="item__table--value">4,51</div> </div> <div class="item__table--elem"> <div class="item__table--label">1-комн</div> <div class="item__table--value">8,32</div> </div> <div class="item__table--elem"> <div class="item__table--label">2-комн</div> <div class="item__table--value">12,44</div> </div> <div class="item__table--elem"> <div class="item__table--label">3-комн</div> <div class="item__table--value">14,80</div> </div> <div class="item__table--elem"> <div class="item__table--label">4-комн</div> <div class="item__table--value">20,83</div> </div> <div class="item__table--elem"> <div class="item__table--label">5-комн</div> <div class="item__table--value">127,47</div> </div> </div> </div> </div> </div> </div> </div> <div class="item"> <div class="item__header"> <a href="javascript:void(0)" class="item__media"> <div class="item__media--image"> <img src="img/content/item_image__02.jpg" class="img-fluid" alt=""> </div> <div class="item__media--map"> <img src="img/content/item_map_01.jpg" class="img-fluid" alt=""> <div class="item__marker"> <div class="item__marker--elem"> <div class="item__marker--icon"> <svg class="ico-svg" viewBox="0 0 10 15" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#distanceicon" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </div> <div class="item__marker--text">Раменки 7 минут</div> </div> </div> </div> </a> <div class="item__tags"> <div class="items__tags-list"> <div class="item__tag item__tag--orange">Ипотека от 6,3%</div> <div class="item__tag item__tag--blue">Старт продаж</div> <div class="item__tag item__tag--blue">Кладовые</div> </div> <button class="button item__tags--toggle"> <svg width="8" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"> <path d="M151.5 347.8L3.5 201c-4.7-4.7-4.7-12.3 0-17l19.8-19.8c4.7-4.7 12.3-4.7 17 0L160 282.7l119.7-118.5c4.7-4.7 12.3-4.7 17 0l19.8 19.8c4.7 4.7 4.7 12.3 0 17l-148 146.8c-4.7 4.7-12.3 4.7-17 0z" /> </svg> </button> </div> <button class="item__toggle" type="button" data-show="карта" data-hide="скрыть"></button> </div> <div class="item__content"> <div class="item__content--base"> <div class="item__info"> <div class="item__info--completion">Сдача III кв 2024</div> <div class="item__info--developer">ПИК</div> </div> <div class="item__title">Хорошевский</div> <div class="item__district"> <div class="item__district--icon" style="background-color: #a0a0a0;"></div> <div class="item__district--name"> <span>ул Академика Янгеля</span> </div> <div class="item__district--distance"> <i> <svg class="ico-svg" viewBox="0 0 10 15" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#distanceicon" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </i> <span>12 минут</span> </div> </div> <div class="item__data"> <div class="item__data--price">от 12,52 млн ₽</div> <div class="item__data--apartments">29 квартир</div> </div> </div> <div class="item__content--hover"> <div class="item__info"> <div class="item__info--completion">Сдача III кв 2024</div> <a href="javascript:void(0)" class="item__info--apartments">29 квартир</a> </div> <div class="item__price"> <div class="item__price--title">Минимальная стоимость, млн ₽</div> <div class="item__price--table"> <div class="item__table"> <div class="item__table--elem"> <div class="item__table--label">Студия</div> <div class="item__table--value">4,51</div> </div> <div class="item__table--elem"> <div class="item__table--label">1-комн</div> <div class="item__table--value">8,32</div> </div> <div class="item__table--elem"> <div class="item__table--label">2-комн</div> <div class="item__table--value">12,44</div> </div> <div class="item__table--elem"> <div class="item__table--label">3-комн</div> <div class="item__table--value">14,80</div> </div> <div class="item__table--elem"> <div class="item__table--label">4-комн</div> <div class="item__table--value">20,83</div> </div> <div class="item__table--elem"> <div class="item__table--label">5-комн</div> <div class="item__table--value">127,47</div> </div> </div> </div> </div> </div> </div> </div> <div class="item item--accent"> <div class="item__header"> <a href="javascript:void(0)" class="item__media"> <div class="item__media--image"> <img src="img/content/item_image__03.jpg" class="img-fluid" alt=""> </div> <div class="item__media--map"> <img src="img/content/item_map_01.jpg" class="img-fluid" alt=""> <div class="item__marker"> <div class="item__marker--elem"> <div class="item__marker--icon"> <svg class="ico-svg" viewBox="0 0 10 15" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#distanceicon" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </div> <div class="item__marker--text">Тропарево 7 минут</div> </div> </div> </div> </a> <div class="item__tags"> <div class="items__tags-list"> <div class="item__tag item__tag--orange">Ипотека от 6,3%</div> <div class="item__tag item__tag--blue">Старт продаж</div> <div class="item__tag item__tag--blue">Кладовые</div> </div> <button class="button item__tags--toggle"> <svg width="8" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"> <path d="M151.5 347.8L3.5 201c-4.7-4.7-4.7-12.3 0-17l19.8-19.8c4.7-4.7 12.3-4.7 17 0L160 282.7l119.7-118.5c4.7-4.7 12.3-4.7 17 0l19.8 19.8c4.7 4.7 4.7 12.3 0 17l-148 146.8c-4.7 4.7-12.3 4.7-17 0z" /> </svg> </button> </div> <button class="item__toggle" type="button" data-show="карта" data-hide="скрыть"></button> </div> <div class="item__content"> <div class="item__content--base"> <div class="item__info"> <div class="item__info--completion">Сдача IV кв 2022</div> <div class="item__info--developer">ЛСР недвижимость</div> </div> <div class="item__title">Солнечный Луч</div> <div class="item__district"> <div class="item__district--icon" style="background-color: #FFD702;"></div> <div class="item__district--name">Сокол</div> <div class="item__district--distance"> <i> <svg class="ico-svg" viewBox="0 0 10 15" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#distanceicon" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </i> <span>12 минут</span> </div> </div> <div class="item__data"> <div class="item__data--price">от 28,61 млн ₽</div> <div class="item__data--apartments">43 квартиры</div> </div> </div> <div class="item__content--hover"> <div class="item__info"> <div class="item__info--completion">Сдача IV кв 2022</div> <a href="javascript:void(0)" class="item__info--apartments">43 квартиры</a> </div> <div class="item__price"> <div class="item__price--title">Минимальная стоимость, млн ₽</div> <div class="item__price--table"> <div class="item__table"> <div class="item__table--elem"> <div class="item__table--label">Студия</div> <div class="item__table--value">4,51</div> </div> <div class="item__table--elem"> <div class="item__table--label">1-комн</div> <div class="item__table--value">8,32</div> </div> <div class="item__table--elem"> <div class="item__table--label">2-комн</div> <div class="item__table--value">12,44</div> </div> <div class="item__table--elem"> <div class="item__table--label">3-комн</div> <div class="item__table--value">14,80</div> </div> <div class="item__table--elem"> <div class="item__table--label">4-комн</div> <div class="item__table--value">20,83</div> </div> <div class="item__table--elem"> <div class="item__table--label">5-комн</div> <div class="item__table--value">127,47</div> </div> </div> </div> </div> </div> </div> </div> <div class="item"> <div class="item__header"> <a href="javascript:void(0)" class="item__media"> <div class="item__media--image"> <img src="img/content/item_image__04.jpg" class="img-fluid" alt=""> </div> <div class="item__media--map"> <img src="img/content/item_map_01.jpg" class="img-fluid" alt=""> <div class="item__marker"> <div class="item__marker--elem"> <div class="item__marker--icon"> <svg class="ico-svg" viewBox="0 0 10 15" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#distanceicon" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </div> <div class="item__marker--text">Раменки 7 минут</div> </div> </div> </div> </a> <div class="item__tags"> <div class="items__tags-list"> <div class="item__tag item__tag--orange">Ипотека от 6,3%</div> <div class="item__tag item__tag--blue">Старт продаж</div> <div class="item__tag item__tag--blue">Кладовые</div> </div> <button class="button item__tags--toggle"> <svg width="8" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"> <path d="M151.5 347.8L3.5 201c-4.7-4.7-4.7-12.3 0-17l19.8-19.8c4.7-4.7 12.3-4.7 17 0L160 282.7l119.7-118.5c4.7-4.7 12.3-4.7 17 0l19.8 19.8c4.7 4.7 4.7 12.3 0 17l-148 146.8c-4.7 4.7-12.3 4.7-17 0z" /> </svg> </button> </div> <button class="item__toggle" type="button" data-show="карта" data-hide="скрыть"></button> </div> <div class="item__content"> <div class="item__content--base"> <div class="item__info"> <div class="item__info--completion">Сдача III кв 2024</div> <div class="item__info--developer">ПИК</div> </div> <div class="item__title">Петр Великий и Екатерина Великая</div> <div class="item__district"> <div class="item__district--icon" style="background-color: #a0a0a0;"></div> <div class="item__district--name"> <span>ул Академика Янгеля</span> </div> <div class="item__district--distance"> <i> <svg class="ico-svg" viewBox="0 0 10 15" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#distanceicon" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </i> <span>12 минут</span> </div> </div> <div class="item__data"> <div class="item__data--price">от 12,52 млн ₽</div> <div class="item__data--apartments">29 квартир</div> </div> </div> <div class="item__content--hover"> <div class="item__info"> <div class="item__info--completion">Сдача III кв 2024</div> <a href="javascript:void(0)" class="item__info--apartments">29 квартир</a> </div> <div class="item__price"> <div class="item__price--title">Минимальная стоимость, млн ₽</div> <div class="item__price--table"> <div class="item__table"> <div class="item__table--elem"> <div class="item__table--label">Студия</div> <div class="item__table--value">4,51</div> </div> <div class="item__table--elem"> <div class="item__table--label">1-комн</div> <div class="item__table--value">8,32</div> </div> <div class="item__table--elem"> <div class="item__table--label">2-комн</div> <div class="item__table--value">12,44</div> </div> <div class="item__table--elem"> <div class="item__table--label">3-комн</div> <div class="item__table--value">14,80</div> </div> <div class="item__table--elem"> <div class="item__table--label">4-комн</div> <div class="item__table--value">20,83</div> </div> <div class="item__table--elem"> <div class="item__table--label">5-комн</div> <div class="item__table--value">127,47</div> </div> </div> </div> </div> </div> </div> </div> <div class="item"> <div class="item__header"> <a href="javascript:void(0)" class="item__media"> <div class="item__media--image"> <img src="img/content/item_image__05.jpg" class="img-fluid" alt=""> </div> <div class="item__media--map"> <img src="img/content/item_map_01.jpg" class="img-fluid" alt=""> <div class="item__marker"> <div class="item__marker--elem"> <div class="item__marker--icon"> <svg class="ico-svg" viewBox="0 0 10 15" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#distanceicon" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </div> <div class="item__marker--text">Раменки 7 минут</div> </div> </div> </div> </a> <div class="item__tags"> <div class="items__tags-list"> <div class="item__tag item__tag--orange">Ипотека от 6,3%</div> <div class="item__tag item__tag--blue">Старт продаж</div> <div class="item__tag item__tag--blue">Кладовые</div> </div> <button class="button item__tags--toggle"> <svg width="8" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"> <path d="M151.5 347.8L3.5 201c-4.7-4.7-4.7-12.3 0-17l19.8-19.8c4.7-4.7 12.3-4.7 17 0L160 282.7l119.7-118.5c4.7-4.7 12.3-4.7 17 0l19.8 19.8c4.7 4.7 4.7 12.3 0 17l-148 146.8c-4.7 4.7-12.3 4.7-17 0z" /> </svg> </button> </div> <button class="item__toggle" type="button" data-show="карта" data-hide="скрыть"></button> </div> <div class="item__content"> <div class="item__content--base"> <div class="item__info"> <div class="item__info--completion">Сдача III кв 2024</div> <div class="item__info--developer">ПИК</div> </div> <div class="item__title">Зеленый квартал на Пулковских высотах</div> <div class="item__district"> <div class="item__district--icon" style="background-color: #a0a0a0;"></div> <div class="item__district--name"> <span>ул Академика Янгеля</span> </div> <div class="item__district--distance"> <i> <svg class="ico-svg" viewBox="0 0 10 15" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#distanceicon" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </i> <span>12 минут</span> </div> </div> <div class="item__data"> <div class="item__data--price">от 12,52 млн ₽</div> <div class="item__data--apartments">29 квартир</div> </div> </div> <div class="item__content--hover"> <div class="item__info"> <div class="item__info--completion">Сдача III кв 2024</div> <a href="javascript:void(0)" class="item__info--apartments">29 квартир</a> </div> <div class="item__price"> <div class="item__price--title">Минимальная стоимость, млн ₽</div> <div class="item__price--table"> <div class="item__table"> <div class="item__table--elem"> <div class="item__table--label">Студия</div> <div class="item__table--value">4,51</div> </div> <div class="item__table--elem"> <div class="item__table--label">1-комн</div> <div class="item__table--value">8,32</div> </div> <div class="item__table--elem"> <div class="item__table--label">2-комн</div> <div class="item__table--value">12,44</div> </div> <div class="item__table--elem"> <div class="item__table--label">3-комн</div> <div class="item__table--value">14,80</div> </div> <div class="item__table--elem"> <div class="item__table--label">4-комн</div> <div class="item__table--value">20,83</div> </div> <div class="item__table--elem"> <div class="item__table--label">5-комн</div> <div class="item__table--value">127,47</div> </div> </div> </div> </div> </div> </div> </div> <div class="item"> <div class="item__header"> <a href="javascript:void(0)" class="item__media"> <div class="item__media--image"> <img src="img/content/item_image__06.jpg" class="img-fluid" alt=""> </div> <div class="item__media--map"> <img src="img/content/item_map_01.jpg" class="img-fluid" alt=""> <div class="item__marker"> <div class="item__marker--elem"> <div class="item__marker--icon"> <svg class="ico-svg" viewBox="0 0 10 15" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#distanceicon" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </div> <div class="item__marker--text">Раменки 7 минут</div> </div> </div> </div> </a> <div class="item__tags"> <div class="items__tags-list"> <div class="item__tag item__tag--orange">Ипотека от 6,3%</div> <div class="item__tag item__tag--blue">Старт продаж</div> <div class="item__tag item__tag--blue">Кладовые</div> </div> <button class="button item__tags--toggle"> <svg width="8" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"> <path d="M151.5 347.8L3.5 201c-4.7-4.7-4.7-12.3 0-17l19.8-19.8c4.7-4.7 12.3-4.7 17 0L160 282.7l119.7-118.5c4.7-4.7 12.3-4.7 17 0l19.8 19.8c4.7 4.7 4.7 12.3 0 17l-148 146.8c-4.7 4.7-12.3 4.7-17 0z" /> </svg> </button> </div> <button class="item__toggle" type="button" data-show="карта" data-hide="скрыть"></button> </div> <div class="item__content"> <div class="item__content--base"> <div class="item__info"> <div class="item__info--completion">Дома сданы</div> <div class="item__info--developer">Гранель</div> </div> <div class="item__title">Сити Парк</div> <div class="item__district"> <div class="item__district--icon" style="background-color: #FFD702;"></div> <div class="item__district--name">Сокол</div> <div class="item__district--distance"> <i> <svg class="ico-svg" viewBox="0 0 10 15" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#distanceicon" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </i> <span>12 минут</span> </div> </div> <div class="item__data"> <div class="item__data--price">от 28,61 млн ₽</div> <div class="item__data--apartments">43 квартиры</div> </div> </div> <div class="item__content--hover"> <div class="item__info"> <div class="item__info--completion">Дома сданы2</div> <a href="javascript:void(0)" class="item__info--apartments">43 квартиры</a> </div> <div class="item__price"> <div class="item__price--title">Минимальная стоимость, млн ₽</div> <div class="item__price--table"> <div class="item__table"> <div class="item__table--elem"> <div class="item__table--label">Студия</div> <div class="item__table--value">4,51</div> </div> <div class="item__table--elem"> <div class="item__table--label">1-комн</div> <div class="item__table--value">8,32</div> </div> <div class="item__table--elem"> <div class="item__table--label">2-комн</div> <div class="item__table--value">12,44</div> </div> <div class="item__table--elem"> <div class="item__table--label">3-комн</div> <div class="item__table--value">14,80</div> </div> <div class="item__table--elem"> <div class="item__table--label">4-комн</div> <div class="item__table--value">20,83</div> </div> <div class="item__table--elem"> <div class="item__table--label">5-комн</div> <div class="item__table--value">127,47</div> </div> </div> </div> </div> </div> </div> </div> <div class="item"> <div class="item__header"> <a href="javascript:void(0)" class="item__media"> <div class="item__media--image"> <img src="img/content/item_image__01.jpg" class="img-fluid" alt=""> </div> <div class="item__media--map"> <img src="img/content/item_map_01.jpg" class="img-fluid" alt=""> <div class="item__marker"> <div class="item__marker--elem"> <div class="item__marker--icon"> <svg class="ico-svg" viewBox="0 0 10 15" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#distanceicon" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </div> <div class="item__marker--text">Раменки 7 минут</div> </div> </div> </div> </a> <div class="item__tags"> <div class="items__tags-list"> <div class="item__tag item__tag--orange">Ипотека от 6,3%</div> <div class="item__tag item__tag--blue">Старт продаж</div> <div class="item__tag item__tag--blue">Кладовые</div> </div> <button class="button item__tags--toggle"> <svg width="8" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"> <path d="M151.5 347.8L3.5 201c-4.7-4.7-4.7-12.3 0-17l19.8-19.8c4.7-4.7 12.3-4.7 17 0L160 282.7l119.7-118.5c4.7-4.7 12.3-4.7 17 0l19.8 19.8c4.7 4.7 4.7 12.3 0 17l-148 146.8c-4.7 4.7-12.3 4.7-17 0z" /> </svg> </button> </div> <button class="item__toggle" type="button" data-show="карта" data-hide="скрыть"></button> </div> <div class="item__content"> <div class="item__content--base"> <div class="item__info"> <div class="item__info--completion">Сдача IV кв 2022</div> <div class="item__info--developer">ЛСР недвижимость</div> </div> <div class="item__title">Мосфильмовский</div> <div class="item__district"> <div class="item__district--icon" style="background-color: #FFD702;"></div> <div class="item__district--name">Сокол</div> <div class="item__district--distance"> <i> <svg class="ico-svg" viewBox="0 0 10 15" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#distanceicon" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </i> <span>12 минут</span> </div> </div> <div class="item__data"> <div class="item__data--price">от 28,61 млн ₽</div> <div class="item__data--apartments">43 квартиры</div> </div> </div> <div class="item__content--hover"> <div class="item__info"> <div class="item__info--completion">Сдача IV кв 2022</div> <a href="javascript:void(0)" class="item__info--apartments">43 квартиры</a> </div> <div class="item__price"> <div class="item__price--title">Минимальная стоимость, млн ₽</div> <div class="item__price--table"> <div class="item__table"> <div class="item__table--elem"> <div class="item__table--label">Студия</div> <div class="item__table--value">4,51</div> </div> <div class="item__table--elem"> <div class="item__table--label">1-комн</div> <div class="item__table--value">8,32</div> </div> <div class="item__table--elem"> <div class="item__table--label">2-комн</div> <div class="item__table--value">12,44</div> </div> <div class="item__table--elem"> <div class="item__table--label">3-комн</div> <div class="item__table--value">14,80</div> </div> <div class="item__table--elem"> <div class="item__table--label">4-комн</div> <div class="item__table--value">20,83</div> </div> <div class="item__table--elem"> <div class="item__table--label">5-комн</div> <div class="item__table--value">127,47</div> </div> </div> </div> </div> </div> </div> </div> <div class="item"> <div class="item__header"> <a href="javascript:void(0)" class="item__media"> <div class="item__media--image"> <img src="img/content/item_image__01.jpg" class="img-fluid" alt=""> </div> <div class="item__media--map"> <img src="img/content/item_map_01.jpg" class="img-fluid" alt=""> <div class="item__marker"> <div class="item__marker--elem"> <div class="item__marker--icon"> <svg class="ico-svg" viewBox="0 0 10 15" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#distanceicon" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </div> <div class="item__marker--text">Раменки 7 минут</div> </div> </div> </div> </a> <div class="item__tags"> <div class="items__tags-list"> <div class="item__tag item__tag--orange">Ипотека от 6,3%</div> <div class="item__tag item__tag--blue">Старт продаж</div> <div class="item__tag item__tag--blue">Кладовые</div> </div> <button class="button item__tags--toggle"> <svg width="8" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"> <path d="M151.5 347.8L3.5 201c-4.7-4.7-4.7-12.3 0-17l19.8-19.8c4.7-4.7 12.3-4.7 17 0L160 282.7l119.7-118.5c4.7-4.7 12.3-4.7 17 0l19.8 19.8c4.7 4.7 4.7 12.3 0 17l-148 146.8c-4.7 4.7-12.3 4.7-17 0z" /> </svg> </button> </div> <button class="item__toggle" type="button" data-show="карта" data-hide="скрыть"></button> </div> <div class="item__content"> <div class="item__content--base"> <div class="item__info"> <div class="item__info--completion">Сдача IV кв 2022</div> <div class="item__info--developer">ЛСР недвижимость</div> </div> <div class="item__title">Мосфильмовский</div> <div class="item__district"> <div class="item__district--icon" style="background-color: #FFD702;"></div> <div class="item__district--name">Сокол</div> <div class="item__district--distance"> <i> <svg class="ico-svg" viewBox="0 0 10 15" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#distanceicon" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </i> <span>12 минут</span> </div> </div> <div class="item__data"> <div class="item__data--price">от 28,61 млн ₽</div> <div class="item__data--apartments">43 квартиры</div> </div> </div> <div class="item__content--hover"> <div class="item__info"> <div class="item__info--completion">Сдача IV кв 2022</div> <a href="javascript:void(0)" class="item__info--apartments">43 квартиры</a> </div> <div class="item__price"> <div class="item__price--title">Минимальная стоимость, млн ₽</div> <div class="item__price--table"> <div class="item__table"> <div class="item__table--elem"> <div class="item__table--label">Студия</div> <div class="item__table--value">4,51</div> </div> <div class="item__table--elem"> <div class="item__table--label">1-комн</div> <div class="item__table--value">8,32</div> </div> <div class="item__table--elem"> <div class="item__table--label">2-комн</div> <div class="item__table--value">12,44</div> </div> <div class="item__table--elem"> <div class="item__table--label">3-комн</div> <div class="item__table--value">14,80</div> </div> <div class="item__table--elem"> <div class="item__table--label">4-комн</div> <div class="item__table--value">20,83</div> </div> <div class="item__table--elem"> <div class="item__table--label">5-комн</div> <div class="item__table--value">127,47</div> </div> </div> </div> </div> </div> </div> </div> <div class="item"> <div class="item__header"> <a href="javascript:void(0)" class="item__media"> <div class="item__media--image"> <img src="img/content/item_image__02.jpg" class="img-fluid" alt=""> </div> <div class="item__media--map"> <img src="img/content/item_map_01.jpg" class="img-fluid" alt=""> <div class="item__marker"> <div class="item__marker--elem"> <div class="item__marker--icon"> <svg class="ico-svg" viewBox="0 0 10 15" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#distanceicon" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </div> <div class="item__marker--text">Раменки 7 минут</div> </div> </div> </div> </a> <div class="item__tags"> <div class="items__tags-list"> <div class="item__tag item__tag--orange">Ипотека от 6,3%</div> <div class="item__tag item__tag--blue">Старт продаж</div> <div class="item__tag item__tag--blue">Кладовые</div> </div> <button class="button item__tags--toggle"> <svg width="8" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"> <path d="M151.5 347.8L3.5 201c-4.7-4.7-4.7-12.3 0-17l19.8-19.8c4.7-4.7 12.3-4.7 17 0L160 282.7l119.7-118.5c4.7-4.7 12.3-4.7 17 0l19.8 19.8c4.7 4.7 4.7 12.3 0 17l-148 146.8c-4.7 4.7-12.3 4.7-17 0z" /> </svg> </button> </div> <button class="item__toggle" type="button" data-show="карта" data-hide="скрыть"></button> </div> <div class="item__content"> <div class="item__content--base"> <div class="item__info"> <div class="item__info--completion">Сдача III кв 2024</div> <div class="item__info--developer">ПИК</div> </div> <div class="item__title">Хорошевский</div> <div class="item__district"> <div class="item__district--icon" style="background-color: #a0a0a0;"></div> <div class="item__district--name"> <span>ул Академика Янгеля</span> </div> <div class="item__district--distance"> <i> <svg class="ico-svg" viewBox="0 0 10 15" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#distanceicon" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </i> <span>12 минут</span> </div> </div> <div class="item__data"> <div class="item__data--price">от 12,52 млн ₽</div> <div class="item__data--apartments">29 квартир</div> </div> </div> <div class="item__content--hover"> <div class="item__info"> <div class="item__info--completion">Сдача III кв 2024</div> <a href="javascript:void(0)" class="item__info--apartments">29 квартир</a> </div> <div class="item__price"> <div class="item__price--title">Минимальная стоимость, млн ₽</div> <div class="item__price--table"> <div class="item__table"> <div class="item__table--elem"> <div class="item__table--label">Студия</div> <div class="item__table--value">4,51</div> </div> <div class="item__table--elem"> <div class="item__table--label">1-комн</div> <div class="item__table--value">8,32</div> </div> <div class="item__table--elem"> <div class="item__table--label">2-комн</div> <div class="item__table--value">12,44</div> </div> <div class="item__table--elem"> <div class="item__table--label">3-комн</div> <div class="item__table--value">14,80</div> </div> <div class="item__table--elem"> <div class="item__table--label">4-комн</div> <div class="item__table--value">20,83</div> </div> <div class="item__table--elem"> <div class="item__table--label">5-комн</div> <div class="item__table--value">127,47</div> </div> </div> </div> </div> </div> </div> </div> </div> <div class="page-nav section-divider"> <div class="page-nav__pagination"> <div class="pagination"> <a href="javascript:void(0)" class="pagination__button">Предыдущая</a> <ul class="pagination__nav"> <li class="pagination__item"> <a href="javascript:void(0)" class="pagination__link">1</a> </li> <li class="pagination__item"> <a href="javascript:void(0)" class="pagination__link active">2</a> </li> <li class="pagination__item"> <a href="javascript:void(0)" class="pagination__link">3</a> </li> <li class="pagination__item"> <a href="javascript:void(0)" class="pagination__link">4</a> </li> <li class="pagination__item"> <a href="javascript:void(0)" class="pagination__link">5</a> </li> <li class="pagination__item"> <span class="pagination__divider">...</span> </li> <li class="pagination__item"> <a href="javascript:void(0)" class="pagination__link">25</a> </li> <li class="pagination__item"> <a href="javascript:void(0)" class="pagination__link">26</a> </li> <li class="pagination__item"> <a href="javascript:void(0)" class="pagination__link">27</a> </li> </ul> <a href="javascript:void(0)" class="pagination__button">Следующая</a> </div> </div> <div class="page-nav__button"> <button class="btn" type="button">Показать еще 24</button> </div> </div> <div class="section"> <div class="section__header"> <div class="section__header--title">Условия приобритения</div> <div class="section__header--nav"> <div class="section__header--buttons"> <div class="section-nav"> <button type="button" class="slider-button slider-button--prev conditions-prev"> <i> <svg class="ico-svg" viewBox="0 0 192 512" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#angle-left" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </i> </button> <button type="button" class="slider-button slider-button--next conditions-next"> <i> <svg class="ico-svg" viewBox="0 0 192 512" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#angle-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </i> </button> </div> </div> </div> </div> <div class="section__content"> <div class="conditions"> <div class="swiper-container conditions__slider"> <div class="swiper-wrapper"> <div class="swiper-slide"> <a href="javascript:void(0)" class="conditions__item"> <div class="conditions__wrap"> <div class="conditions__num">01</div> <div class="conditions__title">Онлайн-бронирование</div> <div class="conditions__text">от 4,44% до 30 лет</div> <div class="conditions__footer"> <div class="conditions__footer--text">Перейти</div> <div class="conditions__footer--arrow"> <svg class="ico-svg" viewBox="0 0 25 12" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#arrow-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </div> </div> </div> </a> </div> <div class="swiper-slide"> <a href="javascript:void(0)" class="conditions__item"> <div class="conditions__wrap"> <div class="conditions__num">02</div> <div class="conditions__title">Рассрочка</div> <div class="conditions__text">Текст в две строки если нужно что нибудь подписать</div> <div class="conditions__footer"> <div class="conditions__footer--text">Перейти</div> <div class="conditions__footer--arrow"> <svg class="ico-svg" viewBox="0 0 25 12" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#arrow-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </div> </div> </div> </a> </div> <div class="swiper-slide"> <a href="javascript:void(0)" class="conditions__item"> <div class="conditions__wrap"> <div class="conditions__num">03</div> <div class="conditions__title">Трейд ин</div> <div class="conditions__text">Текст в две строки если нужно что нибудь подписать</div> <div class="conditions__footer"> <div class="conditions__footer--text">Перейти</div> <div class="conditions__footer--arrow"> <svg class="ico-svg" viewBox="0 0 25 12" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#arrow-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </div> </div> </div> </a> </div> <div class="swiper-slide"> <a href="javascript:void(0)" class="conditions__item"> <div class="conditions__wrap"> <div class="conditions__num">04</div> <div class="conditions__title">Рефинансирование</div> <div class="conditions__text">Текст в две строки если нужно что нибудь подписать</div> <div class="conditions__footer"> <div class="conditions__footer--text">Перейти</div> <div class="conditions__footer--arrow"> <svg class="ico-svg" viewBox="0 0 25 12" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#arrow-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </div> </div> </div> </a> </div> <div class="swiper-slide"> <a href="javascript:void(0)" class="conditions__item"> <div class="conditions__wrap"> <div class="conditions__num">05</div> <div class="conditions__title">Рассрочка</div> <div class="conditions__text">Текст в две строки если нужно что нибудь подписать</div> <div class="conditions__footer"> <div class="conditions__footer--text">Перейти</div> <div class="conditions__footer--arrow"> <svg class="ico-svg" viewBox="0 0 25 12" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#arrow-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </div> </div> </div> </a> </div> <div class="swiper-slide"> <a href="javascript:void(0)" class="conditions__item"> <div class="conditions__wrap"> <div class="conditions__num">06</div> <div class="conditions__title">Трейд ин</div> <div class="conditions__text">Текст в две строки если нужно что нибудь подписать</div> <div class="conditions__footer"> <div class="conditions__footer--text">Перейти</div> <div class="conditions__footer--arrow"> <svg class="ico-svg" viewBox="0 0 25 12" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#arrow-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </div> </div> </div> </a> </div> <div class="swiper-slide"> <a href="javascript:void(0)" class="conditions__item"> <div class="conditions__wrap"> <div class="conditions__num">07</div> <div class="conditions__title">Рефинансирование</div> <div class="conditions__text">Текст в две строки если нужно что нибудь подписать</div> <div class="conditions__footer"> <div class="conditions__footer--text">Перейти</div> <div class="conditions__footer--arrow"> <svg class="ico-svg" viewBox="0 0 25 12" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#arrow-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </div> </div> </div> </a> </div> </div> </div> </div> </div> </div> <div class="section"> <div class="section__header"> <div class="section__header--title">Статьи</div> <div class="section__header--nav"> <a href="javascript:void(0)" class="section__header--link">Все статьи</a> <div class="section__header--buttons"> <div class="section-nav"> <button type="button" class="slider-button slider-button--prev articles-prev"> <i> <svg class="ico-svg" viewBox="0 0 192 512" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#angle-left" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </i> </button> <button type="button" class="slider-button slider-button--next articles-next"> <i> <svg class="ico-svg" viewBox="0 0 192 512" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#angle-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </i> </button> </div> </div> </div> </div> <div class="section__content"> <div class="articles-xs"> <div class="articles-xs__grid"> <div class="article-item"> <a href="javascript:void(0)" class="article-item__media"> <img src="img/content/articles_image_sm__01.jpg" class="img-fluid" alt=""> </a> <div class="article-item__content"> <a href="javascript:void(0)" class="article-item__tag">Просто о сложном</a> <a href="javascript:void(0)" class="article-item__title">Зачем использовать переуступку и как это работает заголовок</a> </div> <div class="article-item__info"> <div class="article-item__date">24 сентября 2024</div> <div class="article-item__time"> <i class="article-item__time--icon"> <svg class="ico-svg" viewBox="0 0 12 12" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#time" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </i> <span class="article-item__time--text">10 минут</span> </div> </div> </div> <div class="article-item"> <a href="javascript:void(0)" class="article-item__media"> <img src="img/content/articles_image_sm__02.jpg" class="img-fluid" alt=""> </a> <div class="article-item__content"> <a href="javascript:void(0)" class="article-item__tag">Просто о сложном</a> <a href="javascript:void(0)" class="article-item__title">Зачем использовать переуступку и как это работает заголовок</a> </div> <div class="article-item__info"> <div class="article-item__date">24 сентября 2024</div> <div class="article-item__time"> <i class="article-item__time--icon"> <svg class="ico-svg" viewBox="0 0 12 12" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#time" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </i> <span class="article-item__time--text">10 минут</span> </div> </div> </div> <div class="article-item"> <a href="javascript:void(0)" class="article-item__media"> <img src="img/content/articles_image_sm__03.jpg" class="img-fluid" alt=""> </a> <div class="article-item__content"> <a href="javascript:void(0)" class="article-item__tag">Просто о сложном</a> <a href="javascript:void(0)" class="article-item__title">Зачем использовать переуступку и как это работает заголовок</a> </div> <div class="article-item__info"> <div class="article-item__date">24 сентября 2024</div> <div class="article-item__time"> <i class="article-item__time--icon"> <svg class="ico-svg" viewBox="0 0 12 12" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#time" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </i> <span class="article-item__time--text">10 минут</span> </div> </div> </div> <div class="article-item"> <a href="javascript:void(0)" class="article-item__media"> <img src="img/content/articles_image_sm__04.jpg" class="img-fluid" alt=""> </a> <div class="article-item__content"> <a href="javascript:void(0)" class="article-item__tag">Просто о сложном</a> <a href="" class="article-item__title">Зачем использовать переуступку и как это работает заголовок</a> </div> <div class="article-item__info"> <div class="article-item__date">24 сентября 2024</div> <div class="article-item__time"> <i class="article-item__time--icon"> <svg class="ico-svg" viewBox="0 0 12 12" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#time" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </i> <span class="article-item__time--text">10 минут</span> </div> </div> </div> </div> <div class="articles-xs__button"> <a href="javascript:void(0)" class="btn">Перейти в журнал</a> </div> </div> <div class="articles-sm"> <div class="swiper-container articles-slider"> <div class="swiper-wrapper"> <div class="swiper-slide"> <div class="article-item"> <a href="javascript:void(0)" class="article-item__media"> <img src="img/content/articles_image__01.jpg" class="img-fluid" alt=""> </a> <div class="article-item__content"> <a href="javascript:void(0)" class="article-item__tag">Просто о сложном</a> <a href="javascript:void(0)" class="article-item__title">Bo вpeмя интepвью зaчитaл pэп: 7 пpичин, из-зa кoтopыx oткaжyт нa coбeceдoвaнии в aгeнтcтвe нeдвижимocти</a> </div> <div class="article-item__info"> <div class="article-item__date">24 сентября 2024</div> <div class="article-item__time"> <i class="article-item__time--icon"> <svg class="ico-svg" viewBox="0 0 12 12" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#time" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </i> <span class="article-item__time--text">10 минут</span> </div> </div> </div> </div> <div class="swiper-slide"> <div class="article-item"> <a href="javascript:void(0)" class="article-item__media"> <img src="img/content/articles_image__02.jpg" class="img-fluid" alt=""> </a> <div class="article-item__content"> <a href="javascript:void(0)" class="article-item__tag">Просто о сложном</a> <a href="javascript:void(0)" class="article-item__title">Как купить квартиру подешевле</a> </div> <div class="article-item__info"> <div class="article-item__date">24 сентября 2024</div> <div class="article-item__time"> <i class="article-item__time--icon"> <svg class="ico-svg" viewBox="0 0 12 12" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#time" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </i> <span class="article-item__time--text">10 минут</span> </div> </div> </div> </div> <div class="swiper-slide"> <div class="article-item"> <a href="javascript:void(0)" class="article-item__media"> <img src="img/content/articles_image__03.jpg" class="img-fluid" alt=""> </a> <div class="article-item__content"> <a href="javascript:void(0)" class="article-item__tag">Просто о сложном</a> <a href="javascript:void(0)" class="article-item__title">Зачем использовать переуступку и как это работает заголовок</a> </div> <div class="article-item__info"> <div class="article-item__date">24 сентября 2024</div> <div class="article-item__time"> <i class="article-item__time--icon"> <svg class="ico-svg" viewBox="0 0 12 12" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#time" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </i> <span class="article-item__time--text">10 минут</span> </div> </div> </div> </div> <div class="swiper-slide"> <div class="article-item"> <a href="javascript:void(0)" class="article-item__media"> <img src="img/content/articles_image__02.jpg" class="img-fluid" alt=""> </a> <div class="article-item__content"> <a href="javascript:void(0)" class="article-item__tag">Просто о сложном</a> <a href="javascript:void(0)" class="article-item__title">Зачем использовать переуступку и как это работает заголовок</a> </div> <div class="article-item__info"> <div class="article-item__date">24 сентября 2024</div> <div class="article-item__time"> <i class="article-item__time--icon"> <svg class="ico-svg" viewBox="0 0 12 12" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#time" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </i> <span class="article-item__time--text">10 минут</span> </div> </div> </div> </div> </div> </div><!--/.articles-slider --> </div> </div> </div> <div class="section mb-0"> <div class="section__header"> <div class="section__header--title">Ранее вы смотрели</div> <div class="section__header--nav"> <div class="section__header--buttons"> <div class="section-nav"> <button type="button" class="slider-button slider-button--prev viewed-prev"> <i> <svg class="ico-svg" viewBox="0 0 192 512" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#angle-left" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </i> </button> <button type="button" class="slider-button slider-button--next viewed-next"> <i> <svg class="ico-svg" viewBox="0 0 192 512" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#angle-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </i> </button> </div> </div> </div> </div> <div class="section__content"> <div class="viewed"> <div class="swiper-container viewed__slider"> <div class="swiper-wrapper"> <div class="swiper-slide"> <div class="item"> <div class="item__header"> <a href="javascript:void(0)" class="item__media"> <div class="item__media--image"> <img src="img/content/item_image__01.jpg" class="img-fluid" alt=""> </div> <div class="item__media--map"> <img src="img/content/item_map_01.jpg" class="img-fluid" alt=""> <div class="item__marker"> <div class="item__marker--elem"> <div class="item__marker--icon"> <svg class="ico-svg" viewBox="0 0 10 15" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#distanceicon" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </div> <div class="item__marker--text">Раменки 7 минут</div> </div> </div> </div> </a> <div class="item__tags"> <div class="items__tags-list"> <div class="item__tag item__tag--orange">Ипотека от 6,3%</div> <div class="item__tag item__tag--blue">Старт продаж</div> <div class="item__tag item__tag--blue">Кладовые</div> </div> <button class="button item__tags--toggle"> <svg width="8" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"> <path d="M151.5 347.8L3.5 201c-4.7-4.7-4.7-12.3 0-17l19.8-19.8c4.7-4.7 12.3-4.7 17 0L160 282.7l119.7-118.5c4.7-4.7 12.3-4.7 17 0l19.8 19.8c4.7 4.7 4.7 12.3 0 17l-148 146.8c-4.7 4.7-12.3 4.7-17 0z"/> </svg> </button> </div> <button class="item__toggle" type="button" data-show="карта" data-hide="скрыть"></button> </div> <div class="item__content"> <div class="item__content--base"> <div class="item__info"> <div class="item__info--completion">Сдача IV кв 2022</div> <div class="item__info--developer">ЛСР недвижимость</div> </div> <div class="item__title">Мосфильмовский</div> <div class="item__district"> <div class="item__district--icon" style="background-color: #FFD702;"></div> <div class="item__district--name">Сокол</div> <div class="item__district--distance"> <i> <svg class="ico-svg" viewBox="0 0 10 15" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#distanceicon" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </i> <span>12 минут</span> </div> </div> <div class="item__data"> <div class="item__data--price">от 28,61 млн ₽</div> <div class="item__data--apartments">43 квартиры</div> </div> </div> <div class="item__content--hover"> <div class="item__info"> <div class="item__info--completion">Сдача IV кв 2022</div> <a href="javascript:void(0)" class="item__info--apartments">43 квартиры</a> </div> <div class="item__price"> <div class="item__price--title">Минимальная стоимость, млн ₽</div> <div class="item__price--table"> <div class="item__table"> <div class="item__table--elem"> <div class="item__table--label">Студия</div> <div class="item__table--value">4,51</div> </div> <div class="item__table--elem"> <div class="item__table--label">1-комн</div> <div class="item__table--value">8,32</div> </div> <div class="item__table--elem"> <div class="item__table--label">2-комн</div> <div class="item__table--value">12,44</div> </div> <div class="item__table--elem"> <div class="item__table--label">3-комн</div> <div class="item__table--value">14,80</div> </div> <div class="item__table--elem"> <div class="item__table--label">4-комн</div> <div class="item__table--value">20,83</div> </div> <div class="item__table--elem"> <div class="item__table--label">5-комн</div> <div class="item__table--value">127,47</div> </div> </div> </div> </div> </div> </div> </div> </div> <div class="swiper-slide"> <div class="item"> <div class="item__header"> <a href="javascript:void(0)" class="item__media"> <div class="item__media--image"> <img src="img/content/item_image__05.jpg" class="img-fluid" alt=""> </div> <div class="item__media--map"> <img src="img/content/item_map_01.jpg" class="img-fluid" alt=""> <div class="item__marker"> <div class="item__marker--elem"> <div class="item__marker--icon"> <svg class="ico-svg" viewBox="0 0 10 15" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#distanceicon" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </div> <div class="item__marker--text">Раменки 7 минут</div> </div> </div> </div> </a> <div class="item__tags"> <div class="items__tags-list"> <div class="item__tag item__tag--orange">Ипотека от 6,3%</div> <div class="item__tag item__tag--blue">Старт продаж</div> <div class="item__tag item__tag--blue">Кладовые</div> </div> <button class="button item__tags--toggle"> <svg width="8" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"> <path d="M151.5 347.8L3.5 201c-4.7-4.7-4.7-12.3 0-17l19.8-19.8c4.7-4.7 12.3-4.7 17 0L160 282.7l119.7-118.5c4.7-4.7 12.3-4.7 17 0l19.8 19.8c4.7 4.7 4.7 12.3 0 17l-148 146.8c-4.7 4.7-12.3 4.7-17 0z"/> </svg> </button> </div> <button class="item__toggle" type="button" data-show="карта" data-hide="скрыть"></button> </div> <div class="item__content"> <div class="item__content--base"> <div class="item__info"> <div class="item__info--completion">Сдача III кв 2024</div> <div class="item__info--developer">ПИК</div> </div> <div class="item__title">Зеленый квартал на Пулковских высотах</div> <div class="item__district"> <div class="item__district--icon" style="background-color: #a0a0a0;"></div> <div class="item__district--name"> <span>ул Академика Янгеля</span> </div> <div class="item__district--distance"> <i> <svg class="ico-svg" viewBox="0 0 10 15" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#distanceicon" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </i> <span>12 минут</span> </div> </div> <div class="item__data"> <div class="item__data--price">от 12,52 млн ₽</div> <div class="item__data--apartments">29 квартир</div> </div> </div> <div class="item__content--hover"> <div class="item__info"> <div class="item__info--completion">Сдача III кв 2024</div> <a href="javascript:void(0)" class="item__info--apartments">29 квартир</a> </div> <div class="item__price"> <div class="item__price--title">Минимальная стоимость, млн ₽</div> <div class="item__price--table"> <div class="item__table"> <div class="item__table--elem"> <div class="item__table--label">Студия</div> <div class="item__table--value">4,51</div> </div> <div class="item__table--elem"> <div class="item__table--label">1-комн</div> <div class="item__table--value">8,32</div> </div> <div class="item__table--elem"> <div class="item__table--label">2-комн</div> <div class="item__table--value">12,44</div> </div> <div class="item__table--elem"> <div class="item__table--label">3-комн</div> <div class="item__table--value">14,80</div> </div> <div class="item__table--elem"> <div class="item__table--label">4-комн</div> <div class="item__table--value">20,83</div> </div> <div class="item__table--elem"> <div class="item__table--label">5-комн</div> <div class="item__table--value">127,47</div> </div> </div> </div> </div> </div> </div> </div> </div> <div class="swiper-slide"> <div class="item item--accent"> <div class="item__header"> <a href="javascript:void(0)" class="item__media"> <div class="item__media--image"> <img src="img/content/item_image__03.jpg" class="img-fluid" alt=""> </div> <div class="item__media--map"> <img src="img/content/item_map_01.jpg" class="img-fluid" alt=""> <div class="item__marker"> <div class="item__marker--elem"> <div class="item__marker--icon"> <svg class="ico-svg" viewBox="0 0 10 15" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#distanceicon" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </div> <div class="item__marker--text">Тропарево 7 минут</div> </div> </div> </div> </a> <div class="item__tags"> <div class="items__tags-list"> <div class="item__tag item__tag--orange">Ипотека от 6,3%</div> <div class="item__tag item__tag--blue">Старт продаж</div> <div class="item__tag item__tag--blue">Кладовые</div> </div> <button class="button item__tags--toggle"> <svg width="8" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"> <path d="M151.5 347.8L3.5 201c-4.7-4.7-4.7-12.3 0-17l19.8-19.8c4.7-4.7 12.3-4.7 17 0L160 282.7l119.7-118.5c4.7-4.7 12.3-4.7 17 0l19.8 19.8c4.7 4.7 4.7 12.3 0 17l-148 146.8c-4.7 4.7-12.3 4.7-17 0z"/> </svg> </button> </div> <button class="item__toggle" type="button" data-show="карта" data-hide="скрыть"></button> </div> <div class="item__content"> <div class="item__content--base"> <div class="item__info"> <div class="item__info--completion">Сдача IV кв 2022</div> <div class="item__info--developer">ЛСР недвижимость</div> </div> <div class="item__title">Солнечный Луч</div> <div class="item__district"> <div class="item__district--icon" style="background-color: #FFD702;"></div> <div class="item__district--name">Сокол</div> <div class="item__district--distance"> <i> <svg class="ico-svg" viewBox="0 0 10 15" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#distanceicon" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </i> <span>12 минут</span> </div> </div> <div class="item__data"> <div class="item__data--price">от 28,61 млн ₽</div> <div class="item__data--apartments">43 квартиры</div> </div> </div> <div class="item__content--hover"> <div class="item__info"> <div class="item__info--completion">Сдача IV кв 2022</div> <a href="javascript:void(0)" class="item__info--apartments">43 квартиры</a> </div> <div class="item__price"> <div class="item__price--title">Минимальная стоимость, млн ₽</div> <div class="item__price--table"> <div class="item__table"> <div class="item__table--elem"> <div class="item__table--label">Студия</div> <div class="item__table--value">4,51</div> </div> <div class="item__table--elem"> <div class="item__table--label">1-комн</div> <div class="item__table--value">8,32</div> </div> <div class="item__table--elem"> <div class="item__table--label">2-комн</div> <div class="item__table--value">12,44</div> </div> <div class="item__table--elem"> <div class="item__table--label">3-комн</div> <div class="item__table--value">14,80</div> </div> <div class="item__table--elem"> <div class="item__table--label">4-комн</div> <div class="item__table--value">20,83</div> </div> <div class="item__table--elem"> <div class="item__table--label">5-комн</div> <div class="item__table--value">127,47</div> </div> </div> </div> </div> </div> </div> </div> </div> <div class="swiper-slide"> <div class="item"> <div class="item__header"> <a href="javascript:void(0)" class="item__media"> <div class="item__media--image"> <img src="img/content/item_image__04.jpg" class="img-fluid" alt=""> </div> <div class="item__media--map"> <img src="img/content/item_map_01.jpg" class="img-fluid" alt=""> <div class="item__marker"> <div class="item__marker--elem"> <div class="item__marker--icon"> <svg class="ico-svg" viewBox="0 0 10 15" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#distanceicon" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </div> <div class="item__marker--text">Раменки 7 минут</div> </div> </div> </div> </a> <div class="item__tags"> <div class="items__tags-list"> <div class="item__tag item__tag--orange">Ипотека от 6,3%</div> <div class="item__tag item__tag--blue">Старт продаж</div> <div class="item__tag item__tag--blue">Кладовые</div> </div> <button class="button item__tags--toggle"> <svg width="8" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"> <path d="M151.5 347.8L3.5 201c-4.7-4.7-4.7-12.3 0-17l19.8-19.8c4.7-4.7 12.3-4.7 17 0L160 282.7l119.7-118.5c4.7-4.7 12.3-4.7 17 0l19.8 19.8c4.7 4.7 4.7 12.3 0 17l-148 146.8c-4.7 4.7-12.3 4.7-17 0z"/> </svg> </button> </div> <button class="item__toggle" type="button" data-show="карта" data-hide="скрыть"></button> </div> <div class="item__content"> <div class="item__content--base"> <div class="item__info"> <div class="item__info--completion">Сдача III кв 2024</div> <div class="item__info--developer">ПИК</div> </div> <div class="item__title">Петр Великий и Екатерина Великая</div> <div class="item__district"> <div class="item__district--icon" style="background-color: #a0a0a0;"></div> <div class="item__district--name"> <span>ул Академика Янгеля</span> </div> <div class="item__district--distance"> <i> <svg class="ico-svg" viewBox="0 0 10 15" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#distanceicon" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </i> <span>12 минут</span> </div> </div> <div class="item__data"> <div class="item__data--price">от 12,52 млн ₽</div> <div class="item__data--apartments">29 квартир</div> </div> </div> <div class="item__content--hover"> <div class="item__info"> <div class="item__info--completion">Сдача III кв 2024</div> <a href="javascript:void(0)" class="item__info--apartments">29 квартир</a> </div> <div class="item__price"> <div class="item__price--title">Минимальная стоимость, млн ₽</div> <div class="item__price--table"> <div class="item__table"> <div class="item__table--elem"> <div class="item__table--label">Студия</div> <div class="item__table--value">4,51</div> </div> <div class="item__table--elem"> <div class="item__table--label">1-комн</div> <div class="item__table--value">8,32</div> </div> <div class="item__table--elem"> <div class="item__table--label">2-комн</div> <div class="item__table--value">12,44</div> </div> <div class="item__table--elem"> <div class="item__table--label">3-комн</div> <div class="item__table--value">14,80</div> </div> <div class="item__table--elem"> <div class="item__table--label">4-комн</div> <div class="item__table--value">20,83</div> </div> <div class="item__table--elem"> <div class="item__table--label">5-комн</div> <div class="item__table--value">127,47</div> </div> </div> </div> </div> </div> </div> </div> </div> <div class="swiper-slide"> <div class="item"> <div class="item__header"> <a href="javascript:void(0)" class="item__media"> <div class="item__media--image"> <img src="img/content/item_image__01.jpg" class="img-fluid" alt=""> </div> <div class="item__media--map"> <img src="img/content/item_map_01.jpg" class="img-fluid" alt=""> <div class="item__marker"> <div class="item__marker--elem"> <div class="item__marker--icon"> <svg class="ico-svg" viewBox="0 0 10 15" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#distanceicon" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </div> <div class="item__marker--text">Раменки 7 минут</div> </div> </div> </div> </a> <div class="item__tags"> <div class="items__tags-list"> <div class="item__tag item__tag--orange">Ипотека от 6,3%</div> <div class="item__tag item__tag--blue">Старт продаж</div> <div class="item__tag item__tag--blue">Кладовые</div> </div> <button class="button item__tags--toggle"> <svg width="8" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"> <path d="M151.5 347.8L3.5 201c-4.7-4.7-4.7-12.3 0-17l19.8-19.8c4.7-4.7 12.3-4.7 17 0L160 282.7l119.7-118.5c4.7-4.7 12.3-4.7 17 0l19.8 19.8c4.7 4.7 4.7 12.3 0 17l-148 146.8c-4.7 4.7-12.3 4.7-17 0z"/> </svg> </button> </div> <button class="item__toggle" type="button" data-show="карта" data-hide="скрыть"></button> </div> <div class="item__content"> <div class="item__content--base"> <div class="item__info"> <div class="item__info--completion">Сдача IV кв 2022</div> <div class="item__info--developer">ЛСР недвижимость</div> </div> <div class="item__title">Мосфильмовский</div> <div class="item__district"> <div class="item__district--icon" style="background-color: #FFD702;"></div> <div class="item__district--name">Сокол</div> <div class="item__district--distance"> <i> <svg class="ico-svg" viewBox="0 0 10 15" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#distanceicon" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </i> <span>12 минут</span> </div> </div> <div class="item__data"> <div class="item__data--price">от 28,61 млн ₽</div> <div class="item__data--apartments">43 квартиры</div> </div> </div> <div class="item__content--hover"> <div class="item__info"> <div class="item__info--completion">Сдача IV кв 2022</div> <a href="javascript:void(0)" class="item__info--apartments">43 квартиры</a> </div> <div class="item__price"> <div class="item__price--title">Минимальная стоимость, млн ₽</div> <div class="item__price--table"> <div class="item__table"> <div class="item__table--elem"> <div class="item__table--label">Студия</div> <div class="item__table--value">4,51</div> </div> <div class="item__table--elem"> <div class="item__table--label">1-комн</div> <div class="item__table--value">8,32</div> </div> <div class="item__table--elem"> <div class="item__table--label">2-комн</div> <div class="item__table--value">12,44</div> </div> <div class="item__table--elem"> <div class="item__table--label">3-комн</div> <div class="item__table--value">14,80</div> </div> <div class="item__table--elem"> <div class="item__table--label">4-комн</div> <div class="item__table--value">20,83</div> </div> <div class="item__table--elem"> <div class="item__table--label">5-комн</div> <div class="item__table--value">127,47</div> </div> </div> </div> </div> </div> </div> </div> </div> <div class="swiper-slide"> <div class="item"> <div class="item__header"> <a href="javascript:void(0)" class="item__media"> <div class="item__media--image"> <img src="img/content/item_image__05.jpg" class="img-fluid" alt=""> </div> <div class="item__media--map"> <img src="img/content/item_map_01.jpg" class="img-fluid" alt=""> <div class="item__marker"> <div class="item__marker--elem"> <div class="item__marker--icon"> <svg class="ico-svg" viewBox="0 0 10 15" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#distanceicon" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </div> <div class="item__marker--text">Раменки 7 минут</div> </div> </div> </div> </a> <div class="item__tags"> <div class="items__tags-list"> <div class="item__tag item__tag--orange">Ипотека от 6,3%</div> <div class="item__tag item__tag--blue">Старт продаж</div> <div class="item__tag item__tag--blue">Кладовые</div> </div> <button class="button item__tags--toggle"> <svg width="8" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"> <path d="M151.5 347.8L3.5 201c-4.7-4.7-4.7-12.3 0-17l19.8-19.8c4.7-4.7 12.3-4.7 17 0L160 282.7l119.7-118.5c4.7-4.7 12.3-4.7 17 0l19.8 19.8c4.7 4.7 4.7 12.3 0 17l-148 146.8c-4.7 4.7-12.3 4.7-17 0z"/> </svg> </button> </div> <button class="item__toggle" type="button" data-show="карта" data-hide="скрыть"></button> </div> <div class="item__content"> <div class="item__content--base"> <div class="item__info"> <div class="item__info--completion">Сдача III кв 2024</div> <div class="item__info--developer">ПИК</div> </div> <div class="item__title">Зеленый квартал на Пулковских высотах</div> <div class="item__district"> <div class="item__district--icon" style="background-color: #a0a0a0;"></div> <div class="item__district--name"> <span>ул Академика Янгеля</span> </div> <div class="item__district--distance"> <i> <svg class="ico-svg" viewBox="0 0 10 15" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#distanceicon" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </i> <span>12 минут</span> </div> </div> <div class="item__data"> <div class="item__data--price">от 12,52 млн ₽</div> <div class="item__data--apartments">29 квартир</div> </div> </div> <div class="item__content--hover"> <div class="item__info"> <div class="item__info--completion">Сдача III кв 2024</div> <a href="javascript:void(0)" class="item__info--apartments">29 квартир</a> </div> <div class="item__price"> <div class="item__price--title">Минимальная стоимость, млн ₽</div> <div class="item__price--table"> <div class="item__table"> <div class="item__table--elem"> <div class="item__table--label">Студия</div> <div class="item__table--value">4,51</div> </div> <div class="item__table--elem"> <div class="item__table--label">1-комн</div> <div class="item__table--value">8,32</div> </div> <div class="item__table--elem"> <div class="item__table--label">2-комн</div> <div class="item__table--value">12,44</div> </div> <div class="item__table--elem"> <div class="item__table--label">3-комн</div> <div class="item__table--value">14,80</div> </div> <div class="item__table--elem"> <div class="item__table--label">4-комн</div> <div class="item__table--value">20,83</div> </div> <div class="item__table--elem"> <div class="item__table--label">5-комн</div> <div class="item__table--value">127,47</div> </div> </div> </div> </div> </div> </div> </div> </div> <div class="swiper-slide"> <div class="item item--accent"> <div class="item__header"> <a href="javascript:void(0)" class="item__media"> <div class="item__media--image"> <img src="img/content/item_image__03.jpg" class="img-fluid" alt=""> </div> <div class="item__media--map"> <img src="img/content/item_map_01.jpg" class="img-fluid" alt=""> <div class="item__marker"> <div class="item__marker--elem"> <div class="item__marker--icon"> <svg class="ico-svg" viewBox="0 0 10 15" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#distanceicon" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </div> <div class="item__marker--text">Тропарево 7 минут</div> </div> </div> </div> </a> <div class="item__tags"> <div class="items__tags-list"> <div class="item__tag item__tag--orange">Ипотека от 6,3%</div> <div class="item__tag item__tag--blue">Старт продаж</div> <div class="item__tag item__tag--blue">Кладовые</div> </div> <button class="button item__tags--toggle"> <svg width="8" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"> <path d="M151.5 347.8L3.5 201c-4.7-4.7-4.7-12.3 0-17l19.8-19.8c4.7-4.7 12.3-4.7 17 0L160 282.7l119.7-118.5c4.7-4.7 12.3-4.7 17 0l19.8 19.8c4.7 4.7 4.7 12.3 0 17l-148 146.8c-4.7 4.7-12.3 4.7-17 0z"/> </svg> </button> </div> <button class="item__toggle" type="button" data-show="карта" data-hide="скрыть"></button> </div> <div class="item__content"> <div class="item__content--base"> <div class="item__info"> <div class="item__info--completion">Сдача IV кв 2022</div> <div class="item__info--developer">ЛСР недвижимость</div> </div> <div class="item__title">Солнечный Луч</div> <div class="item__district"> <div class="item__district--icon" style="background-color: #FFD702;"></div> <div class="item__district--name">Сокол</div> <div class="item__district--distance"> <i> <svg class="ico-svg" viewBox="0 0 10 15" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#distanceicon" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </i> <span>12 минут</span> </div> </div> <div class="item__data"> <div class="item__data--price">от 28,61 млн ₽</div> <div class="item__data--apartments">43 квартиры</div> </div> </div> <div class="item__content--hover"> <div class="item__info"> <div class="item__info--completion">Сдача IV кв 2022</div> <a href="javascript:void(0)" class="item__info--apartments">43 квартиры</a> </div> <div class="item__price"> <div class="item__price--title">Минимальная стоимость, млн ₽</div> <div class="item__price--table"> <div class="item__table"> <div class="item__table--elem"> <div class="item__table--label">Студия</div> <div class="item__table--value">4,51</div> </div> <div class="item__table--elem"> <div class="item__table--label">1-комн</div> <div class="item__table--value">8,32</div> </div> <div class="item__table--elem"> <div class="item__table--label">2-комн</div> <div class="item__table--value">12,44</div> </div> <div class="item__table--elem"> <div class="item__table--label">3-комн</div> <div class="item__table--value">14,80</div> </div> <div class="item__table--elem"> <div class="item__table--label">4-комн</div> <div class="item__table--value">20,83</div> </div> <div class="item__table--elem"> <div class="item__table--label">5-комн</div> <div class="item__table--value">127,47</div> </div> </div> </div> </div> </div> </div> </div> </div> <div class="swiper-slide"> <div class="item"> <div class="item__header"> <a href="javascript:void(0)" class="item__media"> <div class="item__media--image"> <img src="img/content/item_image__04.jpg" class="img-fluid" alt=""> </div> <div class="item__media--map"> <img src="img/content/item_map_01.jpg" class="img-fluid" alt=""> <div class="item__marker"> <div class="item__marker--elem"> <div class="item__marker--icon"> <svg class="ico-svg" viewBox="0 0 10 15" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#distanceicon" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </div> <div class="item__marker--text">Раменки 7 минут</div> </div> </div> </div> </a> <div class="item__tags"> <div class="items__tags-list"> <div class="item__tag item__tag--orange">Ипотека от 6,3%</div> <div class="item__tag item__tag--blue">Старт продаж</div> <div class="item__tag item__tag--blue">Кладовые</div> </div> <button class="button item__tags--toggle"> <svg width="8" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"> <path d="M151.5 347.8L3.5 201c-4.7-4.7-4.7-12.3 0-17l19.8-19.8c4.7-4.7 12.3-4.7 17 0L160 282.7l119.7-118.5c4.7-4.7 12.3-4.7 17 0l19.8 19.8c4.7 4.7 4.7 12.3 0 17l-148 146.8c-4.7 4.7-12.3 4.7-17 0z"/> </svg> </button> </div> <button class="item__toggle" type="button" data-show="карта" data-hide="скрыть"></button> </div> <div class="item__content"> <div class="item__content--base"> <div class="item__info"> <div class="item__info--completion">Сдача III кв 2024</div> <div class="item__info--developer">ПИК</div> </div> <div class="item__title">Петр Великий и Екатерина Великая</div> <div class="item__district"> <div class="item__district--icon" style="background-color: #a0a0a0;"></div> <div class="item__district--name"> <span>ул Академика Янгеля</span> </div> <div class="item__district--distance"> <i> <svg class="ico-svg" viewBox="0 0 10 15" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#distanceicon" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </i> <span>12 минут</span> </div> </div> <div class="item__data"> <div class="item__data--price">от 12,52 млн ₽</div> <div class="item__data--apartments">29 квартир</div> </div> </div> <div class="item__content--hover"> <div class="item__info"> <div class="item__info--completion">Сдача III кв 2024</div> <a href="javascript:void(0)" class="item__info--apartments">29 квартир</a> </div> <div class="item__price"> <div class="item__price--title">Минимальная стоимость, млн ₽</div> <div class="item__price--table"> <div class="item__table"> <div class="item__table--elem"> <div class="item__table--label">Студия</div> <div class="item__table--value">4,51</div> </div> <div class="item__table--elem"> <div class="item__table--label">1-комн</div> <div class="item__table--value">8,32</div> </div> <div class="item__table--elem"> <div class="item__table--label">2-комн</div> <div class="item__table--value">12,44</div> </div> <div class="item__table--elem"> <div class="item__table--label">3-комн</div> <div class="item__table--value">14,80</div> </div> <div class="item__table--elem"> <div class="item__table--label">4-комн</div> <div class="item__table--value">20,83</div> </div> <div class="item__table--elem"> <div class="item__table--label">5-комн</div> <div class="item__table--value">127,47</div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div><!--/.viewed__slider --> </div><!--/.viewed --> </div> </div> <div class="location"> <div class="location__close"></div> <div class="location__sidebar sidebar"></div> <div class="location__body"> <div class="container-fluid"> <div class="tabs"> <div class="tabs__header"> <ul class="tabs__list"> <li class="tabs__item"> <button class="tabs__btn tabs__btn--active" data-tabs-path="metro">Метро</button> </li> <li class="tabs__item"> <button class="tabs__btn hasFilter" data-tabs-path="district">Район</button> </li> </ul> <div class="bar"></div> </div> <div class="tabs__content tabs__content--active" data-tabs-target="metro"> <div class="metro"> <div class="metro__filter field"> <input type="text" class="metro__search" placeholder="Поиск по станции"> <div class="select checkbox ln"> <input type="text" class="select__input" placeholder="Линия"> <div class="select__dropdown custom-scroll"> <button class="btn-reset"> <svg width="8" height="9" viewBox="0 0 8 9" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M7 1.5L1 7.5" stroke="#FF502F" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path> <path d="M1 1.5L7 7.5" stroke="#FF502F" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path> </svg> <span>Очистить все</span> </button> </div> </div> <div class="select metro-time"> <input type="text" class="select__input" placeholder="Время до метро" value=""> <div class="select__dropdown custom-scroll"> <div class="select__item" data-value="1">1</div> <div class="select__item" data-value="2">2</div> <div class="select__item" data-value="3">3</div> </div> </div> </div> <svg width="2000" id="metro" class="metro__map" height="2400" viewBox="0 0 2000 2400" fill="none" xmlns="http://www.w3.org/2000/svg"> <g id="MetroMap_Moscow"> <g id="MetroMap_lines"> <g id="MetroMap_line_213_17" data-name="МЦД-2" class="MetroMap_line_item" data-metro-map-node-id="622"> <g class="MetroMap_line"> <path d="M1159.5 2332l-1.44-407.97a40.026 40.026 0 0 1 12.17-28.88l425.84-412.46a76.972 76.972 0 0 0 23.43-55.31V1149.4c0-11.1-4.61-21.7-12.73-29.26l-173.04-161.277a39.995 39.995 0 0 1-12.73-29.262V815.293a41.012 41.012 0 0 0-13.61-30.512l-220.99-198.34a32.978 32.978 0 0 0-22.04-8.441H571.941v-80.986c0-13.208-10.671-23.933-23.878-24l-381.884-1.943c-7.704-.039-13.929-6.296-13.929-14V104" stroke="#fff" stroke-width="15" stroke-linecap="round" stroke-linejoin="round" class="MetroMap_bottom"></path> <path d="M1159.5 2332l-1.44-407.97a40.026 40.026 0 0 1 12.17-28.88l425.84-412.46a76.972 76.972 0 0 0 23.43-55.31V1149.4c0-11.1-4.61-21.7-12.73-29.26l-173.04-161.277a39.995 39.995 0 0 1-12.73-29.262V815.293a41.012 41.012 0 0 0-13.61-30.512l-220.99-198.34a32.978 32.978 0 0 0-22.04-8.441H571.941v-80.986c0-13.208-10.671-23.933-23.878-24l-381.884-1.943c-7.704-.039-13.929-6.296-13.929-14V105" stroke="#DF477C" stroke-width="8" stroke-linecap="round" class="MetroMap_top"></path> <path d="M1159.5 2332l-1.44-407.97a40.026 40.026 0 0 1 12.17-28.88l425.84-412.46a76.972 76.972 0 0 0 23.43-55.31V1149.4c0-11.1-4.61-21.7-12.73-29.26l-173.04-161.277a39.995 39.995 0 0 1-12.73-29.262V815.293a41.012 41.012 0 0 0-13.61-30.512l-220.99-198.34a32.978 32.978 0 0 0-22.04-8.441H571.941v-80.986c0-13.208-10.671-23.933-23.878-24l-381.884-1.943c-7.704-.039-13.929-6.296-13.929-14V105" stroke="#fff" stroke-width="4" stroke-linecap="round" class="MetroMap_up"></path> </g> <g class="MetroMap_label"> <rect x="1142" y="2353" width="32" height="32" rx="16" fill="#DF477C" class="MetroMap_circle"> </rect><text fill="#fff" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1148.38" y="2374.97">D2</tspan> </text> </g> <g class="MetroMap_label"> <rect x="136" y="38" width="32" height="32" rx="16" fill="#DF477C" class="MetroMap_circle"></rect> <text fill="#fff" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="142.375" y="59.972">D2</tspan> </text> </g> </g> <g id="MetroMap_line_213_15" data-name="Некрасовская линия" class="MetroMap_line_item" data-metro-map-node-id="623"> <g class="MetroMap_line"> <path d="M1521 927l173.63 165.83c7.9 7.54 12.37 18 12.37 28.92v912.75" stroke="#FF66E8" stroke-width="8" stroke-linecap="round" stroke-linejoin="round" class="MetroMap_top"></path> </g> <g clip-path="url(#clip0)" class="MetroMap_label"> <rect x="1691" y="2064.94" width="32" height="32.032" rx="16" fill="#FF66E8" class="MetroMap_circle"></rect><text fill="#fff" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1697.7" y="2086.93">15</tspan> </text> </g> </g> <g id="MetroMap_line_213_16" data-name="МЦД-1" class="MetroMap_line_item" data-metro-map-node-id="624"> <g class="MetroMap_line"> <path d="M152 535.75l-.703 741.91c-.018 18.51 22.19 27.99 35.544 15.17l709.978-681.719a38 38 0 0 0 11.681-27.41V150.685a41 41 0 0 0-18.399-34.208l-89.025-58.82a40 40 0 0 0-22.153-6.626L400 52" stroke="#fff" stroke-width="15" stroke-linecap="round" stroke-linejoin="round" class="MetroMap_bottom"></path> <path d="M152 535.75l-.703 741.91c-.018 18.51 22.19 27.99 35.544 15.17l709.978-681.719a38 38 0 0 0 11.681-27.41V150.685a41 41 0 0 0-18.399-34.208l-89.025-58.82a40 40 0 0 0-22.153-6.626L400 52" stroke="#ED9F2D" stroke-width="8" stroke-linecap="round" class="MetroMap_top"></path> <path d="M152 535.75l-.703 741.91c-.018 18.51 22.19 27.99 35.544 15.17l709.978-681.719a38 38 0 0 0 11.681-27.41V150.685a41 41 0 0 0-18.399-34.208l-89.025-58.82a40 40 0 0 0-22.153-6.626L400 52" stroke="#fff" stroke-width="4" stroke-linecap="round" class="MetroMap_up"></path> </g> <g class="MetroMap_label"> <rect x="336" y="38" width="32" height="32" rx="16" fill="#ED9F2D" class="MetroMap_circle"></rect> <text fill="#fff" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="342.375" y="59.972">D1</tspan> </text> </g> <g class="MetroMap_label"> <rect x="136" y="487" width="32" height="32" rx="16" fill="#ED9F2D" class="MetroMap_circle"></rect> <text fill="#fff" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="142.375" y="508.972">D1</tspan> </text> </g> </g> <g id="MetroMap_line_213_14" data-name="Московское центральное кольцо" class="MetroMap_line_item" data-metro-map-node-id="625"> <g class="MetroMap_line"> <path fill-rule="evenodd" clip-rule="evenodd" d="M1048 1645.03c348.22 0 630.5-282.08 630.5-630.03 0-241.294-135.75-450.905-335.12-556.737-88.09-46.785-188.64-73.29-295.38-73.29-348.216 0-630.5 282.073-630.5 630.027 0 347.95 282.284 630.03 630.5 630.03z" stroke="#fff" stroke-width="12" class="MetroMap_bottom"></path> <path fill-rule="evenodd" clip-rule="evenodd" d="M1048.5 1645.05c348.22 0 630.5-282.07 630.5-630.02 0-241.296-135.75-450.908-335.12-556.74-88.09-46.785-188.64-73.29-295.38-73.29C700.284 385 418 667.073 418 1015.03c0 347.95 282.284 630.02 630.5 630.02z" stroke="#FFA8AF" stroke-width="8" class="MetroMap_top"></path> </g> <g class="MetroMap_label"> <rect x="1482" y="1492" width="32" height="32" rx="16" fill="#FFA8AF" class="MetroMap_circle"> </rect><text fill="#fff" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1489.31" y="1513.97">14</tspan> </text> </g> </g> <g id="MetroMap_line_213_9" data-name="Серпуховского-Тимирязевская линия" class="MetroMap_line_item" data-metro-map-node-id="626"> <g class="MetroMap_line"> <path d="M1051 215v129.092a40.005 40.005 0 0 1-15.88 31.911L894.882 481.997A39.998 39.998 0 0 0 879 513.908v112.486a39.997 39.997 0 0 0 10.569 27.089l153.581 166.868c11.65 12.648 11.21 32.235-.97 44.358L885.79 1020.27a40.017 40.017 0 0 0-11.79 28.36v95.11c0 10.43 4.071 20.44 11.346 27.91l52.308 53.7A39.996 39.996 0 0 1 949 1253.26v869.24" stroke="#fff" stroke-width="12" stroke-linecap="round" class="MetroMap_bottom"></path> <path d="M1051 212v137.535c0 9.423-4.42 18.298-11.95 23.966L894.941 481.998A40 40 0 0 0 879 513.954v112.604a40 40 0 0 0 10.376 26.878l154.814 170.625c11.6 12.788 10.96 32.475-1.44 44.488L886.171 1020.21A40.001 40.001 0 0 0 874 1048.94v94.8c0 10.43 4.071 20.44 11.346 27.91l52.308 53.7A39.996 39.996 0 0 1 949 1253.26V2124" stroke="#909090" stroke-width="8" stroke-linecap="round" class="MetroMap_top"></path> </g> <g class="MetroMap_label"> <rect x="933" y="2156" width="32" height="32" rx="16" fill="#909090" class="MetroMap_circle"></rect> <text fill="#fff" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="945.102" y="2177.97">9</tspan> </text> </g> <g class="MetroMap_label"> <rect x="1034" y="165" width="32" height="32" rx="16" fill="#909090" class="MetroMap_circle"></rect> <text fill="#fff" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1046.15" y="186.972">9</tspan> </text> </g> </g> <g id="MetroMap_line_213_8a" data-name="Солнцевская линия" class="MetroMap_line_item" data-metro-map-node-id="627"> <g class="MetroMap_line"> <path d="M285 1839v-543l143.762-138.37c10.08-9.7 14.368-23.97 12.094-37.77-3.805-23.11-8.856-62.03-8.856-105.86 0-53.28 9.184-105.612 13.636-127.851 1.466-7.323 5.163-13.948 10.444-19.229L656 667" stroke="#fff" stroke-width="12" stroke-linecap="round" class="MetroMap_bottom"></path> <path d="M285 1839v-543l143.762-138.37c10.08-9.7 14.368-23.97 12.094-37.77-3.805-23.11-8.856-62.03-8.856-105.86 0-53.28 9.184-105.612 13.636-127.851 1.466-7.323 5.163-13.948 10.444-19.229l249.861-249.861A48 48 0 0 1 739.882 603H843.5a4 4 0 0 1 4 4v5.5" stroke="#FFE400" stroke-width="8" stroke-linecap="round" class="MetroMap_top"></path> </g> <g class="MetroMap_label"> <rect x="269" y="1874" width="32" height="32" rx="16" fill="#FFE400" class="MetroMap_circle"></rect> <text fill="#000" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="281.102" y="1895.97">8</tspan> </text> </g> </g> <g id="MetroMap_line_213_11" data-name="Большая кольцевая линия" class="MetroMap_line_item" data-metro-map-node-id="628"> <g class="MetroMap_line"> <path d="M517 1018.5l-60.207-64.399a33.998 33.998 0 0 1-8.634-29.197l5.632-31.536a40.004 40.004 0 0 1 11.093-21.252l247.4-247.4A40 40 0 0 1 740.569 613H848" stroke="#fff" stroke-width="12" stroke-linecap="round" class="MetroMap_bottom"></path> <path d="M350 865h104.848a41.979 41.979 0 0 0 32.756-15.724l224.682-224.567A39.993 39.993 0 0 1 740.563 613H833" stroke="#fff" stroke-width="12" stroke-linecap="round" class="MetroMap_bottom"></path> <path d="M517 1019.5l-61.417-67.488a29.002 29.002 0 0 1-7.179-24.159l5.529-34.103a40 40 0 0 1 11.2-21.883l247.151-247.151A40 40 0 0 1 740.569 613H833" stroke="#6FC1BA" stroke-width="8" stroke-linecap="round" class="MetroMap_top"></path> <path d="M340 865h114.848a41.979 41.979 0 0 0 32.756-15.724l224.682-224.567A39.993 39.993 0 0 1 740.563 613H833" stroke="#6FC1BA" stroke-width="8" stroke-linecap="round" class="MetroMap_top"></path> </g> <g class="MetroMap_label"> <rect x="481" y="944" width="32" height="32" rx="16" fill="#6FC1BA" class="MetroMap_circle"></rect> <text fill="#fff" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="488.807" y="965.972">11</tspan> </text> </g> </g> <g id="MetroMap_line_213_7" data-name="Таганско-Краснопресненская линия" class="MetroMap_line_item" data-metro-map-node-id="629"> <g class="MetroMap_line"> <path d="M443 334.5v375.931a40 40 0 0 0 11.716 28.285l172.568 172.568A40 40 0 0 0 655.569 923h502.871c10.6 0 20.77 4.212 28.27 11.71l547.32 547.07a40.036 40.036 0 0 1 11.72 28.29v275.27c0 10.66-4.26 20.88-11.83 28.4l-68.59 68.02a40.034 40.034 0 0 0-11.83 28.4v125.34" stroke="#fff" stroke-width="12" stroke-linecap="round" class="MetroMap_bottom"></path> <path d="M443 334v376.431a40 40 0 0 0 11.716 28.285l172.568 172.568A40 40 0 0 0 655.569 923h502.861c10.61 0 20.78 4.215 28.29 11.718l547.48 547.562a40.026 40.026 0 0 1 11.71 28.29v275.9c0 10.43-4.18 20.43-11.6 27.75l-68.71 67.83a39.006 39.006 0 0 0-11.6 27.75v124.7" stroke="#B1179A" stroke-width="8" stroke-linecap="round" class="MetroMap_top"></path> </g> <g class="MetroMap_label"> <rect x="427" y="279" width="32" height="32" rx="16" fill="#B1179A" class="MetroMap_circle"></rect> <text fill="#fff" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="439.154" y="300.972">7</tspan> </text> </g> <g class="MetroMap_label"> <rect x="1637" y="2065" width="32" height="32" rx="16" fill="#B1179A" class="MetroMap_circle"> </rect><text fill="#fff" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1649.1" y="2086.97">7</tspan> </text> </g> </g> <g id="MetroMap_line_213_10" data-name="Люблинско-Дмитровская линия" class="MetroMap_line_item" data-metro-map-node-id="630"> <g class="MetroMap_line"> <path d="M876 212v220.428c0 17.673 14.327 32 32 32h108c17.67 0 32 14.327 32 32V797c0 17.673 14.33 32 32 32h167.43c10.61 0 20.78 4.214 28.29 11.716l238.56 238.564a39.994 39.994 0 0 1 11.72 28.29v93.86c0 10.61-4.21 20.78-11.72 28.29l-74.56 74.56a39.994 39.994 0 0 0-11.72 28.29V2060" stroke="#fff" stroke-width="12" stroke-linecap="round" class="MetroMap_bottom"></path> <path d="M876 212v220.428c0 17.673 14.327 32 32 32h108c17.67 0 32 14.327 32 32V797c0 17.673 14.33 32 32 32h167.43c10.61 0 20.78 4.214 28.29 11.716l238.56 238.564a39.994 39.994 0 0 1 11.72 28.29v93.86c0 10.61-4.21 20.78-11.72 28.29l-74.56 74.56a39.994 39.994 0 0 0-11.72 28.29V2060" stroke="#69CD37" stroke-width="8" stroke-linecap="round" class="MetroMap_top"></path> </g> <g class="MetroMap_label"> <rect x="860" y="165" width="32" height="32" rx="16" fill="#69CD37" class="MetroMap_circle"></rect> <text fill="#fff" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="867.307" y="186.972">10</tspan> </text> </g> <g class="MetroMap_label"> <rect x="1373" y="2032" width="32" height="32" rx="16" fill="#69CD37" class="MetroMap_circle"> </rect><text fill="#fff" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1380.31" y="2053.97">10</tspan> </text> </g> </g> <g id="MetroMap_line_213_11a" data-name="Каховская линия" class="MetroMap_line_item" data-metro-map-node-id="631"> <g class="MetroMap_line"> <path d="M929 1837h232.81c10.39 0 20.36-4.04 27.82-11.26L1209 1807" stroke="#fff" stroke-width="12" stroke-linecap="round" class="MetroMap_bottom"></path> <path d="M929 1837h232.81c10.39 0 20.36-4.04 27.82-11.26L1209 1807" stroke="#6FC1BA" stroke-width="8" stroke-linecap="round" class="MetroMap_top"></path> </g> <g class="MetroMap_label"> <rect x="899" y="1782" width="32" height="32" rx="16" fill="#6FC1BA" class="MetroMap_circle"></rect> <text fill="#fff" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="906.307" y="1803.97">11</tspan> </text> </g> </g> <g id="MetroMap_line_213_8" data-name="Калининская линия" class="MetroMap_line_item" data-metro-map-node-id="632"> <g class="MetroMap_line"> <path d="M1175 1236h164.43c10.61 0 20.78-4.21 28.29-11.72L1768 824" stroke="#fff" stroke-width="12" stroke-linecap="round" class="MetroMap_bottom"></path> <path d="M1175 1236h164.43c10.61 0 20.78-4.21 28.29-11.72L1768 824" stroke="#FFE400" stroke-width="8" stroke-linecap="round" class="MetroMap_top"></path> </g> <g class="MetroMap_label"> <rect x="1789" y="774" width="32" height="32" rx="16" fill="#FFE400" class="MetroMap_circle"></rect> <text fill="#000" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1801.1" y="795.972">8</tspan> </text> </g> </g> <g id="MetroMap_line_213_2" data-name="Замоскворецкая линия" class="MetroMap_line_item" data-metro-map-node-id="633"> <g class="MetroMap_line"> <path d="M608 212v284.5l-.882 124.766a40.003 40.003 0 0 0 11.715 28.567l404.447 404.447a39.994 39.994 0 0 0 28.29 11.72h42.86c10.61 0 20.78 4.21 28.29 11.72l53.56 53.56a39.994 39.994 0 0 1 11.72 28.29v747.93l159.57 164.76a31.98 31.98 0 0 0 22.99 9.74H1533" stroke="#fff" stroke-width="12" stroke-linecap="round" class="MetroMap_bottom"></path> <path d="M608 212.5V496l-.442 126.336a40.003 40.003 0 0 0 11.732 28.441l404 403.523a39.99 39.99 0 0 0 28.26 11.7h42.88c10.61 0 20.78 4.21 28.29 11.72l53.56 53.56a39.994 39.994 0 0 1 11.72 28.29v747.93l158.56 164.69a31.973 31.973 0 0 0 23.05 9.81H1533" stroke="#4F8242" stroke-width="8" stroke-linecap="round" class="MetroMap_top"></path> </g> <g class="MetroMap_label"> <rect x="1556" y="2065" width="32" height="32" rx="16" fill="#4F8242" class="MetroMap_circle"> </rect><text fill="#fff" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1568.1" y="2086.97">2</tspan> </text> </g> <g class="MetroMap_label"> <rect x="593" y="149" width="32" height="32" rx="16" fill="#4F8242" class="MetroMap_circle"></rect> <text fill="#fff" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="605.154" y="170.972">2</tspan> </text> </g> </g> <g id="MetroMap_line_213_12" data-name="Бутовская линия" class="MetroMap_line_item" data-metro-map-node-id="634"> <g class="MetroMap_line"> <path d="M733 2024h166c11.046 0 20 8.95 20 20v153c0 11.05-8.954 20-20 20H489" stroke="#fff" stroke-width="12" stroke-linecap="round" class="MetroMap_bottom"></path> <path d="M733 2024h166c11.046 0 20 8.95 20 20v153c0 11.05-8.954 20-20 20H489" stroke="#8DBECE" stroke-width="8" stroke-linecap="round" class="MetroMap_top"></path> </g> <g class="MetroMap_label"> <rect x="418" y="2201" width="32" height="32" rx="16" fill="#8DBECE" class="MetroMap_circle"></rect> <text fill="#fff" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="425.203" y="2222.97">12</tspan> </text> </g> </g> <g id="MetroMap_line_213_6" data-name="Калужско-Рижская линия" class="MetroMap_line_item" data-metro-map-node-id="635"> <g class="MetroMap_line"> <path d="M1285 255v302.072a39.986 39.986 0 0 1-14.64 30.93l-110.72 90.805a39.99 39.99 0 0 0-14.64 30.93v79.694a39.97 39.97 0 0 0 11.72 28.285l59.56 59.568a39.97 39.97 0 0 1 11.72 28.285v221.491c0 10.65-4.24 20.85-11.79 28.36l-106.51 105.94a39.96 39.96 0 0 1-28.21 11.64H917.569a39.97 39.97 0 0 0-28.285 11.72l-168.568 168.56A40.024 40.024 0 0 0 709 1481.57v472.7c0 9.51 3.386 18.7 9.55 25.94L732 1996" stroke="#fff" stroke-width="12" stroke-linecap="round" class="MetroMap_bottom"></path> <path d="M1285 254.5v302.572a39.986 39.986 0 0 1-14.64 30.93l-110.72 90.805a39.99 39.99 0 0 0-14.64 30.93v79.694a39.97 39.97 0 0 0 11.72 28.285l59.56 59.568a39.97 39.97 0 0 1 11.72 28.285v221.491c0 10.65-4.24 20.85-11.79 28.36l-106.51 105.94a39.96 39.96 0 0 1-28.21 11.64H917.569a39.97 39.97 0 0 0-28.285 11.72l-168.568 168.56A40.024 40.024 0 0 0 709 1481.57v472.7c0 9.51 3.386 18.7 9.55 25.94L732 1996" stroke="#FF8103" stroke-width="8" stroke-linecap="round" class="MetroMap_top"></path> </g> <g class="MetroMap_label"> <rect x="658" y="1984" width="32" height="32" rx="16" fill="#FF8103" class="MetroMap_circle"></rect> <text fill="#fff" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="670.102" y="2004.97">6</tspan> </text> </g> <g class="MetroMap_label"> <rect x="1269" y="197" width="32" height="32" rx="16" fill="#FF8103" class="MetroMap_circle"></rect> <text fill="#fff" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1281.15" y="218.972">6</tspan> </text> </g> </g> <g id="MetroMap_line_213_1" data-name="Сокольническая линия" class="MetroMap_line_item" data-metro-map-node-id="636"> <g class="MetroMap_line"> <path d="M496 1981v-590.43c0-10.61 4.214-20.78 11.716-28.29l149.568-149.56a39.97 39.97 0 0 1 28.285-11.72H870.45a40.03 40.03 0 0 0 28.262-11.69l604.548-603.59a39.985 39.985 0 0 0 11.74-28.307V535" stroke="#fff" stroke-width="12" stroke-linecap="round" class="MetroMap_bottom"></path> <path d="M496 1981.5v-590.93c0-10.61 4.214-20.78 11.716-28.29l149.568-149.56a39.97 39.97 0 0 1 28.285-11.72H870.45a40.03 40.03 0 0 0 28.262-11.69l604.548-603.59a39.985 39.985 0 0 0 11.74-28.307V535" stroke="#E4402D" stroke-width="8" stroke-linecap="round" class="MetroMap_top"></path> </g> <g class="MetroMap_label"> <rect x="480" y="2013" width="32" height="32" rx="16" fill="#E4402D" class="MetroMap_circle"></rect> <text fill="#fff" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="491.102" y="2033.97">1</tspan> </text> </g> <g class="MetroMap_label"> <rect x="1498" y="475" width="32" height="32" rx="16" fill="#E4402D" class="MetroMap_circle"></rect> <text fill="#fff" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1509.15" y="496.972">1</tspan> </text> </g> </g> <g id="MetroMap_line_213_3" data-name="Арбатско-Покровская линия" class="MetroMap_line_item" data-metro-map-node-id="637"> <g class="MetroMap_line"> <path d="M1667 479v177.432a40.012 40.012 0 0 1-11.72 28.284l-395.56 395.564a39.994 39.994 0 0 1-28.29 11.72H635.506a40.024 40.024 0 0 0-28.209 11.64l-152.892 152.08a80.001 80.001 0 0 1-56.417 23.28H234c-19.882 0-36-16.12-36-36V898.036a20 20 0 0 1 5.56-13.838l11.88-12.396a20 20 0 0 0 5.56-13.838V339.5" stroke="#fff" stroke-width="12" stroke-linecap="round" class="MetroMap_bottom"></path> <path d="M1667 479v177.432a40.012 40.012 0 0 1-11.72 28.284l-395.56 395.564a39.994 39.994 0 0 1-28.29 11.72H635.506a40.024 40.024 0 0 0-28.209 11.64l-152.892 152.08a80.001 80.001 0 0 1-56.417 23.28H234c-19.882 0-36-16.12-36-36V898.036a20 20 0 0 1 5.56-13.838l11.88-12.396a20 20 0 0 0 5.56-13.838V339" stroke="#0042A5" stroke-width="8" stroke-linecap="round" class="MetroMap_top"></path> </g> <g class="MetroMap_label"> <rect x="205" y="287" width="32" height="32" rx="16" fill="#0042A5" class="MetroMap_circle"></rect> <text fill="#fff" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="217.154" y="308.972">3</tspan> </text> </g> <g class="MetroMap_label"> <rect x="1651" y="416" width="32" height="32" rx="16" fill="#0042A5" class="MetroMap_circle"></rect> <text fill="#fff" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1663.15" y="437.972">3</tspan> </text> </g> </g> <g id="MetroMap_line_213_4" data-name="Филёвская линия" class="MetroMap_line_item" data-metro-map-node-id="638"> <g class="MetroMap_line"> <path d="M234 888v332c0 8.84 7.163 16 16 16h146.431a39.97 39.97 0 0 0 28.285-11.72l169.639-169.64a50.026 50.026 0 0 1 35.356-14.64h181.58a39.984 39.984 0 0 1 28.453 11.89L911 1124M397 1040h237" stroke="#fff" stroke-width="12" stroke-linecap="round" class="MetroMap_bottom"></path> <path d="M234 888v332c0 8.84 7.163 16 16 16h146.431a39.97 39.97 0 0 0 28.285-11.72l169.639-169.64a50.026 50.026 0 0 1 35.356-14.64h181.58a39.984 39.984 0 0 1 28.453 11.89L911 1124M397 1040h237" stroke="#099DD4" stroke-width="8" stroke-linecap="round" class="MetroMap_top"></path> </g> <g class="MetroMap_label"> <rect x="241" y="834" width="32" height="32" rx="16" fill="#099DD4" class="MetroMap_circle"></rect> <text fill="#fff" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="252.102" y="855.972">4</tspan> </text> </g> </g> <g id="MetroMap_line_213_5" data-name="Кольцевая линия" class="MetroMap_line_item" data-metro-map-node-id="639"> <g class="MetroMap_line"> <path fill-rule="evenodd" clip-rule="evenodd" d="M1048 1389c201.58 0 365-165.43 365-369.5 0-141.514-78.59-264.448-194-326.516C1168 665.545 1109.79 650 1048 650c-201.584 0-365 165.431-365 369.5 0 204.07 163.416 369.5 365 369.5z" stroke="#fff" stroke-width="12" class="MetroMap_bottom"></path> <path fill-rule="evenodd" clip-rule="evenodd" d="M1048 1389c201.58 0 365-165.43 365-369.5 0-141.514-78.59-264.448-194-326.516C1168 665.545 1109.79 650 1048 650c-201.584 0-365 165.431-365 369.5 0 204.07 163.416 369.5 365 369.5z" stroke="#794835" stroke-width="8" class="MetroMap_top"></path> </g> <g clip-path="url(#clip1)" class="MetroMap_label"> <rect x="1306" y="1298.9" width="32" height="32.395" rx="16" fill="#794835" class="MetroMap_circle"> </rect><text fill="#fff" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1318.15" y="1321.08">5</tspan> </text> </g> </g> </g> <g id="MetroMap_stations"> <g id="MetroMap_transit"> <g class="MetroMap_transit_bg"> <path d="M151 866.5h66.5" stroke="#CCC" stroke-width="2" stroke-dasharray="2" class="MetroMap_path"> </path> </g> <g class="MetroMap_transit_bg"> <path d="M218 868l16 21" stroke="#333" stroke-width="16" stroke-linecap="round" class="MetroMap_path"></path> <path d="M218 868l16 21" stroke="#fff" stroke-width="12" stroke-linecap="round" class="MetroMap_path"></path> <path d="M218 868l16 21" stroke="#CCC" stroke-width="2" class="MetroMap_path"></path> </g> <g class="MetroMap_transit_bg"> <path d="M1746 1686h-38" stroke="#333" stroke-width="16" stroke-linecap="round" class="MetroMap_path"></path> <path d="M1746 1686h-38" stroke="#fff" stroke-width="12" stroke-linecap="round" class="MetroMap_path"></path> <path d="M1746 1686h-38" stroke="#CCC" stroke-width="2" class="MetroMap_path"></path> </g> <g class="MetroMap_transit_bg"> <path d="M1706 1158h-43" stroke="#333" stroke-width="16" stroke-linecap="round" class="MetroMap_path"></path> <path d="M1706 1158h-43" stroke="#fff" stroke-width="12" stroke-linecap="round" class="MetroMap_path"></path> <path d="M1706 1158h-40" stroke="#CCC" stroke-width="2" class="MetroMap_path"></path> </g> <g class="MetroMap_transit_bg"> <path d="M302 1279l-17 17" stroke="#333" stroke-width="16" stroke-linecap="round" class="MetroMap_path"></path> <path d="M302 1279l-17 17" stroke="#fff" stroke-width="12" stroke-linecap="round" class="MetroMap_path"></path> <path d="M302 1279l-17 17" stroke="#CCC" stroke-width="2" class="MetroMap_path"></path> </g> <g class="MetroMap_transit_bg"> <path d="M440 1180v29" stroke="#333" stroke-width="16" stroke-linecap="round" class="MetroMap_path"> </path> <path d="M440 1180v29" stroke="#fff" stroke-width="12" stroke-linecap="round" class="MetroMap_path"> </path> <path d="M440 1180v29" stroke="#CCC" stroke-width="2" class="MetroMap_path"></path> </g> <g class="MetroMap_transit_bg"> <path d="M398 1040l22 21" stroke="#333" stroke-width="16" stroke-linecap="round" class="MetroMap_path"></path> <path d="M398 1040l22 21" stroke="#fff" stroke-width="12" stroke-linecap="round" class="MetroMap_path"></path> <path d="M398 1040l22 21" stroke="#CCC" stroke-width="2" class="MetroMap_path"></path> </g> <g class="MetroMap_transit_bg"> <path d="M517 1040v-21" stroke="#333" stroke-width="16" stroke-linecap="round" class="MetroMap_path"></path> <path d="M517 1040v-21" stroke="#fff" stroke-width="12" stroke-linecap="round" class="MetroMap_path"></path> <path d="M517 1040v-21" stroke="#CCC" stroke-width="2" class="MetroMap_path"></path> </g> <g class="MetroMap_transit_bg"> <path d="M424 930h24" stroke="#333" stroke-width="16" stroke-linecap="round" class="MetroMap_path"> </path> <path d="M424 930h24" stroke="#fff" stroke-width="12" stroke-linecap="round" class="MetroMap_path"> </path> <path d="M424 930h14" stroke="#CCC" stroke-width="2" class="MetroMap_path"></path> </g> <g class="MetroMap_transit_bg"> <circle cx="661.046" cy="1066.29" r="26" stroke="#333" stroke-width="16" stroke-linejoin="round" class="MetroMap_path"></circle> <circle cx="661.046" cy="1066.29" r="26" stroke="#fff" stroke-width="12" stroke-linejoin="round" class="MetroMap_path"></circle> <circle cx="661.046" cy="1066.29" r="26" stroke="#CCC" stroke-width="2" class="MetroMap_path"> </circle> </g> <g class="MetroMap_transit_bg"> <path d="M695 923.004l32-.004" stroke="#333" stroke-width="16" stroke-linecap="round" class="MetroMap_path"></path> <path d="M695 923.004l32-.004" stroke="#fff" stroke-width="12" stroke-linecap="round" class="MetroMap_path"></path> <path d="M695 923.004l32.5-.004" stroke="#CCC" stroke-width="2" class="MetroMap_path"></path> </g> <g class="MetroMap_transit_bg"> <path d="M587 872h39" stroke="#333" stroke-width="16" stroke-linecap="round" class="MetroMap_path"> </path> <path d="M587 872h39" stroke="#fff" stroke-width="12" stroke-linecap="round" class="MetroMap_path"> </path> <path d="M587 872h39" stroke="#CCC" stroke-width="2" class="MetroMap_path"></path> </g> <g class="MetroMap_transit_bg"> <path d="M508.004 828v-36" stroke="#333" stroke-width="16" stroke-linecap="round" class="MetroMap_path"></path> <path d="M508.004 828v-36" stroke="#fff" stroke-width="12" stroke-linecap="round" class="MetroMap_path"></path> <path d="M508.004 815v-23" stroke="#CCC" stroke-width="2" class="MetroMap_path"></path> </g> <g class="MetroMap_transit_bg"> <path d="M674 705l-29-28" stroke="#333" stroke-width="16" stroke-linecap="round" class="MetroMap_path"></path> <path d="M674 705l-29-28" stroke="#fff" stroke-width="12" stroke-linecap="round" class="MetroMap_path"></path> <path d="M674.5 705l-30-28.5" stroke="#CCC" stroke-width="2" class="MetroMap_path"></path> </g> <g class="MetroMap_transit_bg"> <path d="M831.925 613H863" stroke="#333" stroke-width="16" stroke-linecap="round" class="MetroMap_path"></path> <path d="M831.925 613H863" stroke="#fff" stroke-width="12" stroke-linecap="round" class="MetroMap_path"></path> </g> <g class="MetroMap_transit_bg"> <path d="M609 728l-7-7" stroke="#333" stroke-width="16" stroke-linecap="round" class="MetroMap_path"></path> <path d="M609.004 728L602 721" stroke="#fff" stroke-width="12" stroke-linecap="round" class="MetroMap_path"></path> </g> <g class="MetroMap_transit_bg"> <path d="M774 805v-31" stroke="#333" stroke-width="16" stroke-linecap="round" class="MetroMap_path"> </path> <path d="M774 805v-31" stroke="#fff" stroke-width="12" stroke-linecap="round" class="MetroMap_path"> </path> <path d="M774 805v-31" stroke="#CCC" stroke-width="2" class="MetroMap_path"></path> </g> <g class="MetroMap_transit_bg"> <path d="M1051 387.5v-27" stroke="#333" stroke-width="16" stroke-linecap="round" class="MetroMap_path"></path> <path d="M1051 387.5V360" stroke="#fff" stroke-width="12" stroke-linecap="round" class="MetroMap_path"></path> <path d="M1051 387.5V360" stroke="#CCC" stroke-width="2" class="MetroMap_path"></path> </g> <g class="MetroMap_transit_bg"> <path d="M948 440v24" stroke="#333" stroke-width="16" stroke-linecap="round" class="MetroMap_path"> </path> <path d="M948 440v23.5" stroke="#fff" stroke-width="12" stroke-linecap="round" class="MetroMap_path"></path> <path d="M948 440v23.5" stroke="#CCC" stroke-width="2" class="MetroMap_path"></path> </g> <g class="MetroMap_transit_bg"> <path d="M572 579v22.5" stroke="#333" stroke-width="16" stroke-linecap="round" class="MetroMap_path"></path> <path d="M572 579v22.5" stroke="#fff" stroke-width="12" stroke-linecap="round" class="MetroMap_path"></path> <path d="M572 579.5V601" stroke="#CCC" stroke-width="2" class="MetroMap_path"></path> </g> <g class="MetroMap_transit_bg"> <path d="M911 359l31 35" stroke="#CCC" stroke-width="2" stroke-dasharray="2" class="MetroMap_path"> </path> </g> <g class="MetroMap_transit_bg"> <path d="M221 505.5l29-33" stroke="#CCC" stroke-width="2" stroke-dasharray="2" class="MetroMap_path"></path> </g> <g class="MetroMap_transit_bg"> <path d="M472 473l-29-29" stroke="#CCC" stroke-width="2" stroke-dasharray="2" class="MetroMap_path"> </path> </g> <g class="MetroMap_transit_bg"> <path d="M863.5 613H895" stroke="#CCC" stroke-width="2" stroke-dasharray="2" class="MetroMap_path"> </path> </g> <g class="MetroMap_transit_bg"> <path d="M774 727v47" stroke="#CCC" stroke-width="2" stroke-dasharray="2" class="MetroMap_path"> </path> </g> <g class="MetroMap_transit_bg"> <path d="M234.5 1189l43.5 16" stroke="#CCC" stroke-width="2" stroke-dasharray="2" class="MetroMap_path"></path> </g> <g class="MetroMap_transit_bg"> <path d="M1285 391.5l-28 28.5" stroke="#CCC" stroke-width="2" stroke-dasharray="2" class="MetroMap_path"></path> </g> <g class="MetroMap_transit_bg"> <path d="M909 358h-33" stroke="#CCC" stroke-width="2" stroke-dasharray="2" class="MetroMap_path"> </path> </g> <g class="MetroMap_transit_bg"> <path d="M1262 596h-65.5" stroke="#CCC" stroke-width="2" stroke-dasharray="2" class="MetroMap_path"> </path> </g> <g class="MetroMap_transit_bg"> <path d="M1331 757.5l1-40" stroke="#CCC" stroke-width="2" stroke-dasharray="2" class="MetroMap_path"></path> </g> <g class="MetroMap_transit_bg"> <path d="M909 510h-33" stroke="#CCC" stroke-width="2" stroke-dasharray="2" class="MetroMap_path"> </path> </g> <g class="MetroMap_transit_bg"> <path d="M878.5 554l-24 25.5" stroke="#CCC" stroke-width="2" stroke-dasharray="2" class="MetroMap_path"></path> </g> <g class="MetroMap_transit_bg"> <path d="M935 702v-34" stroke="#333" stroke-width="16" stroke-linecap="round" class="MetroMap_path"> </path> <path d="M935 702v-34" stroke="#fff" stroke-width="12" stroke-linecap="round" class="MetroMap_path"> </path> <path d="M935 702v-30" stroke="#CCC" stroke-width="2" class="MetroMap_path"></path> </g> <g class="MetroMap_transit_bg"> <path d="M1613 1015v-37" stroke="#333" stroke-width="16" stroke-linecap="round" class="MetroMap_path"></path> <path d="M1613 1014v-36" stroke="#fff" stroke-width="12" stroke-linecap="round" class="MetroMap_path"></path> <path d="M1613 1012v-30" stroke="#CCC" stroke-width="2" class="MetroMap_path"></path> </g> <g class="MetroMap_transit_bg"> <path d="M1421 894l-22 21" stroke="#333" stroke-width="16" stroke-linecap="round" class="MetroMap_path"></path> <path d="M1421 894l-22 21" stroke="#fff" stroke-width="12" stroke-linecap="round" class="MetroMap_path"></path> <path d="M1421 894l-22 21" stroke="#CCC" stroke-width="2" class="MetroMap_path"></path> </g> <g class="MetroMap_transit_bg"> <path d="M1026 805l22-12" stroke="#333" stroke-width="16" stroke-linecap="round" class="MetroMap_path"></path> <path d="M1026 805l22-12" stroke="#fff" stroke-width="12" stroke-linecap="round" class="MetroMap_path"></path> <path d="M1026 805l22-12" stroke="#CCC" stroke-width="2" class="MetroMap_path"></path> </g> <g class="MetroMap_transit_bg"> <circle cx="937.942" cy="941.867" r="19" stroke="#333" stroke-width="16" stroke-linejoin="round" class="MetroMap_path"></circle> <circle cx="937.942" cy="941.867" r="19" stroke="#fff" stroke-width="12" stroke-linejoin="round" class="MetroMap_path"></circle> <circle cx="937.942" cy="941.867" r="19" stroke="#CCC" stroke-width="2" class="MetroMap_path"> </circle> </g> <g class="MetroMap_transit_bg"> <circle id="MetroMap_Oval" cx="910" cy="1128" r="36" stroke="#333" stroke-width="16" stroke-linejoin="round"></circle> <path d="M910 1092c-11.277 42.15 14.35 53.99 25 61" stroke="#333" stroke-width="16" stroke-linecap="round" stroke-linejoin="round" class="MetroMap_path"></path> <circle id="MetroMap_Oval Copy" cx="910" cy="1128" r="36" stroke="#fff" stroke-width="12" stroke-linejoin="round"></circle> <circle id="MetroMap_Oval Copy 2" cx="910" cy="1128" r="36" stroke="#CCC" stroke-width="2"></circle> <path d="M910 1092c-11.277 42.15 14.35 53.99 25 61" stroke="#fff" stroke-width="12" stroke-linecap="round" stroke-linejoin="round" class="MetroMap_path copy"></path> <path d="M910 1092c-11.277 42.15 14.35 53.99 25 61" stroke="#CCC" stroke-width="2" class="MetroMap_path copy 2"></path> </g> <g class="MetroMap_transit_bg"> <path d="M1089 1092l-49-44" stroke="#333" stroke-width="16" stroke-linecap="round" class="MetroMap_path"></path> <path d="M1089 1092l-49-44" stroke="#fff" stroke-width="12" stroke-linecap="round" class="MetroMap_path"></path> <path d="M1089 1092l-49-44" stroke="#CCC" stroke-width="2" class="MetroMap_path"></path> </g> <g class="MetroMap_transit_bg"> <path d="M1129 923l14 22" stroke="#333" stroke-width="16" stroke-linecap="round" class="MetroMap_path"></path> <path d="M1129 923l14 22" stroke="#fff" stroke-width="12" stroke-linecap="round" class="MetroMap_path"></path> <path d="M1129 923l14 22" stroke="#CCC" stroke-width="2" class="MetroMap_path"></path> </g> <g class="MetroMap_transit_bg"> <circle cx="1213.5" cy="849.5" r="20.5" stroke="#333" stroke-width="16" stroke-linejoin="round" class="MetroMap_path"></circle> <circle cx="1213.5" cy="849.5" r="20.5" stroke="#fff" stroke-width="12" stroke-linejoin="round" class="MetroMap_path"></circle> <circle cx="1213.5" cy="849.5" r="20.5" stroke="#CCC" stroke-width="2" class="MetroMap_path"> </circle> </g> <g class="MetroMap_transit_bg"> <path d="M1192 676v-24" stroke="#333" stroke-width="16" stroke-linecap="round" class="MetroMap_path"></path> <path d="M1192 676v-24" stroke="#fff" stroke-width="12" stroke-linecap="round" class="MetroMap_path"></path> <path d="M1192 676v-24" stroke="#CCC" stroke-width="2" class="MetroMap_path"></path> </g> <g class="MetroMap_transit_bg"> <path d="M1331 758v27" stroke="#333" stroke-width="16" stroke-linecap="round" class="MetroMap_path"> </path> <path d="M1331 758v27" stroke="#fff" stroke-width="12" stroke-linecap="round" class="MetroMap_path"> </path> <path d="M1331 758v27" stroke="#CCC" stroke-width="2" class="MetroMap_path"></path> </g> <g class="MetroMap_transit_bg"> <path d="M1491 598h30" stroke="#333" stroke-width="16" stroke-linecap="round" class="MetroMap_path"> </path> <path d="M1491 598h30" stroke="#fff" stroke-width="12" stroke-linecap="round" class="MetroMap_path"> </path> <path d="M1491 598h30" stroke="#CCC" stroke-width="2" class="MetroMap_path"></path> </g> <g class="MetroMap_transit_bg"> <path d="M1228 998h22" stroke="#333" stroke-width="16" stroke-linecap="round" class="MetroMap_path"> </path> <path d="M1228 998h22" stroke="#fff" stroke-width="12" stroke-linecap="round" class="MetroMap_path"> </path> <path d="M1228 998h22" stroke="#CCC" stroke-width="2" class="MetroMap_path"></path> </g> <g class="MetroMap_transit_bg"> <path id="MetroMap_Path" d="M1394.74 911.99a18.923 18.923 0 0 0-8.21-1.862c-10.5 0-19 8.506-19 19 0 10.493 8.5 19 19 19 10.49 0 19-8.507 19-19 0-3.728-1.08-7.206-2.93-10.14" stroke="#333" stroke-width="16" stroke-linejoin="round"></path> <circle cx="1386.53" cy="929.128" r="19" stroke="#fff" stroke-width="12" stroke-linejoin="round" class="MetroMap_path"></circle> <circle cx="1386.53" cy="929.128" r="19" stroke="#CCC" stroke-width="2" class="MetroMap_path"> </circle> </g> <g class="MetroMap_transit_bg"> <circle cx="1172.85" cy="1220.57" r="15.5" stroke="#333" stroke-width="16" stroke-linejoin="round" class="MetroMap_path"></circle> <circle cx="1172.85" cy="1220.57" r="15.5" stroke="#fff" stroke-width="12" stroke-linejoin="round" class="MetroMap_path"></circle> <circle cx="1172.85" cy="1220.57" r="15.5" stroke="#CCC" stroke-width="2" class="MetroMap_path"> </circle> </g> <g class="MetroMap_transit_bg"> <circle cx="1398.36" cy="1171.09" r="19" stroke="#333" stroke-width="16" stroke-linejoin="round" class="MetroMap_path"></circle> <circle cx="1398.36" cy="1171.09" r="19" stroke="#fff" stroke-width="12" stroke-linejoin="round" class="MetroMap_path"></circle> <circle cx="1398.36" cy="1171.09" r="19" stroke="#CCC" stroke-width="2" class="MetroMap_path"> </circle> </g> <g class="MetroMap_transit_bg"> <path d="M1528 1065h-28" stroke="#333" stroke-width="16" stroke-linecap="round" class="MetroMap_path"></path> <path d="M1528 1065h-28" stroke="#fff" stroke-width="12" stroke-linecap="round" class="MetroMap_path"></path> <path d="M1528 1065h-28" stroke="#CCC" stroke-width="2" class="MetroMap_path"></path> </g> <g class="MetroMap_transit_bg"> <path d="M1648 1212h-28" stroke="#333" stroke-width="16" stroke-linecap="round" class="MetroMap_path"></path> <path d="M1648 1212h-28" stroke="#fff" stroke-width="12" stroke-linecap="round" class="MetroMap_path"></path> <path d="M1648 1212h-28" stroke="#CCC" stroke-width="2" class="MetroMap_path"></path> </g> <g class="MetroMap_transit_bg"> <path d="M1648 1395h-28" stroke="#333" stroke-width="16" stroke-linecap="round" class="MetroMap_path"></path> <path d="M1648 1395h-28" stroke="#fff" stroke-width="12" stroke-linecap="round" class="MetroMap_path"></path> <path d="M1648 1395h-28" stroke="#CCC" stroke-width="2" class="MetroMap_path"></path> </g> <g class="MetroMap_transit_bg"> <path d="M1187 1907h-28" stroke="#333" stroke-width="16" stroke-linecap="round" class="MetroMap_path"></path> <path d="M1187 1907h-28" stroke="#fff" stroke-width="12" stroke-linecap="round" class="MetroMap_path"></path> <path d="M1187 1907h-28" stroke="#CCC" stroke-width="2" class="MetroMap_path"></path> </g> <g class="MetroMap_transit_bg"> <path d="M1484 1260h29" stroke="#333" stroke-width="16" stroke-linecap="round" class="MetroMap_path"></path> <path d="M1484 1260h29" stroke="#fff" stroke-width="12" stroke-linecap="round" class="MetroMap_path"></path> <path d="M1484 1260h29" stroke="#CCC" stroke-width="2" class="MetroMap_path"></path> </g> <g class="MetroMap_transit_bg"> <path d="M1204 1345l-16 27" stroke="#333" stroke-width="16" stroke-linecap="round" class="MetroMap_path"></path> <path d="M1188 1372l16-27" stroke="#fff" stroke-width="12" stroke-linecap="round" class="MetroMap_path"></path> <path d="M1188 1372l16-27" stroke="#CCC" stroke-width="2" class="MetroMap_path"></path> </g> <g class="MetroMap_transit_bg"> <path d="M949 1387l17-16" stroke="#333" stroke-width="16" stroke-linecap="round" class="MetroMap_path"></path> <path d="M949 1387l17-16" stroke="#fff" stroke-width="12" stroke-linecap="round" class="MetroMap_path"></path> <path d="M966 1371l-17 16" stroke="#CCC" stroke-width="2" class="MetroMap_path"></path> </g> <g class="MetroMap_transit_bg"> <path d="M1428 2082v-24" stroke="#333" stroke-width="16" stroke-linecap="round" class="MetroMap_path"></path> <path d="M1428 2082v-24" stroke="#fff" stroke-width="12" stroke-linecap="round" class="MetroMap_path"></path> <path d="M1428 2082v-24" stroke="#CCC" stroke-width="2" class="MetroMap_path"></path> </g> <g class="MetroMap_transit_bg"> <path d="M1188 1788l20 20" stroke="#333" stroke-width="16" stroke-linecap="round" class="MetroMap_path"></path> <path d="M1188 1788l20 20" stroke="#fff" stroke-width="12" stroke-linecap="round" class="MetroMap_path"></path> <path d="M1188 1788l20 20" stroke="#CCC" stroke-width="2" class="MetroMap_path"></path> </g> <g class="MetroMap_transit_bg"> <path d="M929 1837l20 20" stroke="#333" stroke-width="16" stroke-linecap="round" class="MetroMap_path"></path> <path d="M929 1837l20 20" stroke="#fff" stroke-width="12" stroke-linecap="round" class="MetroMap_path"></path> <path d="M929 1837l20 20" stroke="#CCC" stroke-width="2" class="MetroMap_path"></path> </g> <g class="MetroMap_transit_bg"> <path d="M919 2123h30" stroke="#333" stroke-width="16" stroke-linecap="round" class="MetroMap_path"> </path> <path d="M919 2123h30" stroke="#fff" stroke-width="12" stroke-linecap="round" class="MetroMap_path"> </path> <path d="M919 2123h30" stroke="#CCC" stroke-width="2" class="MetroMap_path"></path> </g> <g class="MetroMap_transit_bg"> <path d="M733 1996v28" stroke="#333" stroke-width="16" stroke-linecap="round" class="MetroMap_path"> </path> <path d="M733 1996v28" stroke="#fff" stroke-width="12" stroke-linecap="round" class="MetroMap_path"> </path> <path d="M733 1996v28" stroke="#CCC" stroke-width="2" class="MetroMap_path"></path> </g> <g class="MetroMap_transit_bg"> <path d="M728 1558l-18.996-19" stroke="#333" stroke-width="16" stroke-linecap="round" class="MetroMap_path"></path> <path d="M728 1558l-18.996-19" stroke="#fff" stroke-width="12" stroke-linecap="round" class="MetroMap_path"></path> <path d="M728.002 1558l-18.998-19" stroke="#CCC" stroke-width="2" class="MetroMap_path"></path> </g> <g class="MetroMap_transit_bg"> <path d="M839 1335v-21" stroke="#333" stroke-width="16" stroke-linecap="round" class="MetroMap_path"></path> <path d="M839 1335v-21" stroke="#fff" stroke-width="12" stroke-linecap="round" class="MetroMap_path"></path> <path d="M839 1335v-21" stroke="#CCC" stroke-width="2" class="MetroMap_path"></path> </g> <g class="MetroMap_transit_bg"> <path d="M724 1201v-18" stroke="#333" stroke-width="16" stroke-linecap="round" class="MetroMap_path"></path> <path d="M724 1201v-18" stroke="#fff" stroke-width="12" stroke-linecap="round" class="MetroMap_path"></path> <path d="M724 1201v-18" stroke="#CCC" stroke-width="2" class="MetroMap_path"></path> </g> </g> <g id="MetroMap_l_213_17" class="MetroMap_stations_group"> <g id="MetroMap_station_218592" class="MetroMap_station_item" data-metro-map-node-id="1"> <rect opacity=".01" x="54" y="424" width="79" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"> </rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="57.656" y="439.972">Пенягино</tspan> </text> </g> <g id="MetroMap_station_218570" class="MetroMap_station_item" data-metro-map-node-id="2"> <rect opacity=".01" x="58" y="359" width="75" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"> </rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="61.156" y="374.972">Павшино</tspan> </text> </g> <g id="MetroMap_station_218564" class="MetroMap_station_item" data-metro-map-node-id="3"> <rect opacity=".01" x="14" y="292" width="119" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="17.188" y="307.972">Красногорская</tspan> </text> </g> <g id="MetroMap_station_218590" class="MetroMap_station_item" data-metro-map-node-id="4"> <rect x="1250" y="685" width="111" height="22" rx="2" fill="#fff" fill-opacity=".8" class="MetroMap_bg1"></rect> <rect opacity=".01" x="1250" y="685" width="111" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1254" y="700.972">Каланчёвская</tspan> </text> </g> <g id="MetroMap_station_218569" class="MetroMap_station_item" data-metro-map-node-id="5"> <rect opacity=".01" x="1280" y="1681" width="85" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1284" y="1696.97">Кубанская</tspan> </text> </g> <g id="MetroMap_station_218563" class="MetroMap_station_item" data-metro-map-node-id="6"> <rect opacity=".01" x="1353" y="1722" width="46" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1357" y="1737.97">Депо</tspan> </text> </g> <g id="MetroMap_station_218585" class="MetroMap_station_item" data-metro-map-node-id="7"> <rect opacity=".01" x="1319" y="1752" width="71" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1323" y="1767.97">Перерва</tspan> </text> </g> <g id="MetroMap_station_218597" class="MetroMap_station_item" data-metro-map-node-id="8"> <rect opacity=".01" x="1265" y="1806" width="108" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1269" y="1821.97">Москворечье</tspan> </text> </g> <g id="MetroMap_station_218578" class="MetroMap_station_item" data-metro-map-node-id="9"> <rect opacity=".01" x="1171" y="2008" width="87" height="41" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1175" y="2023.97">Красный</tspan> </text><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1175" y="2041.97">Строитель</tspan> </text> </g> <g id="MetroMap_station_218558" class="MetroMap_station_item" data-metro-map-node-id="10"> <rect x="1172" y="1959" width="96" height="22" rx="2" fill="#fff" fill-opacity=".8" class="MetroMap_bg1"></rect> <rect opacity=".01" x="1172" y="1959" width="96" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1175" y="1974.97">Покровское</tspan> </text> </g> <g id="MetroMap_station_218548" class="MetroMap_station_item" data-metro-map-node-id="11"> <rect opacity=".01" x="1171" y="2061" width="53" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1175" y="2077.97">Битца</tspan> </text> </g> <g id="MetroMap_station_218593" class="MetroMap_station_item" data-metro-map-node-id="12"> <rect opacity=".01" x="1171" y="2113" width="60" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1175" y="2128.97">Бутово</tspan> </text> </g> <g id="MetroMap_station_218571" class="MetroMap_station_item" data-metro-map-node-id="13"> <rect opacity=".01" x="1171" y="2166" width="86" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1175" y="2181.97">Щербинка</tspan> </text> </g> <g id="MetroMap_station_218565" class="MetroMap_station_item" data-metro-map-node-id="14"> <rect opacity=".01" x="1171" y="2218" width="90" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1175" y="2233.97">Остафьево</tspan> </text> </g> <g id="MetroMap_station_218586" class="MetroMap_station_item" data-metro-map-node-id="15"> <g opacity=".01" class="MetroMap_bg"> <rect x="1171" y="2271" width="97" height="22" rx="2" fill="#FFDE5A"></rect> <rect x="1171.5" y="2271.5" width="96" height="21" rx="1.5" stroke="#000" stroke-opacity=".16"> </rect> </g><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1175" y="2286.97">Силикатная</tspan> </text> </g> <g id="MetroMap_station_218598" class="MetroMap_station_item" data-metro-map-node-id="16"> <g opacity=".01" class="MetroMap_bg"> <rect x="1171" y="2322" width="80" height="22" rx="2" fill="#FFDE5A"></rect> <rect x="1171.5" y="2322.5" width="79" height="21" rx="1.5" stroke="#000" stroke-opacity=".16"> </rect> </g><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1175" y="2337.97">Подольск</tspan> </text> </g> <g id="MetroMap_station_218559" class="MetroMap_station_item" data-metro-map-node-id="17"> <g opacity=".01" class="MetroMap_bg"> <rect x="62" y="227" width="71" height="22" rx="2" fill="#FFDE5A"></rect> <rect x="62.5" y="227.5" width="70" height="21" rx="1.5" stroke="#000" stroke-opacity=".16"> </rect> </g><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="65.422" y="242.972">Опалиха</tspan> </text> </g> <g id="MetroMap_station_218579" class="MetroMap_station_item" data-metro-map-node-id="18"> <g opacity=".01" class="MetroMap_bg"> <rect x="46" y="159" width="87" height="22" rx="2" fill="#FFDE5A"></rect> <rect x="46.5" y="159.5" width="86" height="21" rx="1.5" stroke="#000" stroke-opacity=".16"> </rect> </g><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="49.922" y="174.972">Аникеевка</tspan> </text> </g> <g id="MetroMap_station_218549" class="MetroMap_station_item" data-metro-map-node-id="19"> <g opacity=".01" class="MetroMap_bg"> <rect x="53" y="93" width="80" height="22" rx="2" fill="#FFDE5A"></rect> <rect x="53.5" y="93.5" width="79" height="21" rx="1.5" stroke="#000" stroke-opacity=".16"> </rect> </g><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="56.438" y="108.972">Нахабино</tspan> </text> </g> <g id="MetroMap_station_218547" class="MetroMap_station_item" data-metro-map-node-id="20"> <g opacity=".01" class="MetroMap_bg"> <rect x="286" y="434" width="105" height="22" rx="2" fill="#FFDE5A"></rect> <rect x="286.5" y="434.5" width="104" height="21" rx="1.5" stroke="#000" stroke-opacity=".16"> </rect> </g><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="289" y="449.972">Трикотажная</tspan> </text> </g> <g id="MetroMap_station_218561" class="MetroMap_station_item" data-metro-map-node-id="21"> <g opacity=".01" class="MetroMap_bg"> <rect x="657" y="524" width="72" height="40" rx="2" fill="#FFDE5A"></rect> <rect x="657.5" y="524.5" width="71" height="39" rx="1.5" stroke="#000" stroke-opacity=".16"> </rect> </g><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="660" y="557.972">Балтиец</tspan> </text><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="660" y="539.972">Красный</tspan> </text> </g> <g id="MetroMap_station_218582" class="MetroMap_station_item" data-metro-map-node-id="22"> <g opacity=".01" class="MetroMap_bg"> <rect x="738" y="542" width="104" height="22" rx="2" fill="#FFDE5A"></rect> <rect x="738.5" y="542.5" width="103" height="21" rx="1.5" stroke="#000" stroke-opacity=".16"> </rect> </g><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="741" y="557.972">Гражданская</tspan> </text> </g> <g id="MetroMap_station_218554" class="MetroMap_station_item" data-metro-map-node-id="23"> <g opacity=".01" class="MetroMap_bg"> <rect x="462" y="502" width="105" height="39" rx="2" fill="#FFDE5A"></rect> <rect x="462.5" y="502.5" width="104" height="38" rx="1.5" stroke="#000" stroke-opacity=".16"> </rect> </g><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="465" y="534.972">Стрешнево</tspan> </text><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="465" y="517.972">Покровское-</tspan> </text> </g> <g id="MetroMap_station_218556" class="MetroMap_station_item" data-metro-map-node-id="24"> <rect x="1453" y="949" width="137" height="22" rx="2" fill="#fff" fill-opacity=".8" class="MetroMap_bg1"></rect> <g opacity=".01" class="MetroMap_bg"> <rect x="1453" y="949" width="137" height="22" rx="2" fill="#FFDE5A"></rect> <rect x="1453.5" y="949.5" width="136" height="21" rx="1.5" stroke="#000" stroke-opacity=".16"> </rect> </g><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1456" y="964.972">Москва Товарная</tspan> </text> </g> <g id="MetroMap_station_218576" class="MetroMap_station_item" data-metro-map-node-id="25"> <g opacity=".01" class="MetroMap_bg"> <rect x="1489" y="980" width="88" height="22" rx="2" fill="#FFDE5A"></rect> <rect x="1489.5" y="980.5" width="87" height="21" rx="1.5" stroke="#000" stroke-opacity=".16"> </rect> </g><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1492" y="995.972">Калитники</tspan> </text> </g> </g> <g id="MetroMap_l_213_16" class="MetroMap_stations_group"> <g id="MetroMap_station_218544" class="MetroMap_station_item" data-metro-map-node-id="26"> <rect opacity=".01" x="374" y="14" width="53" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"> </rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="377" y="29.972">Лобня</tspan> </text> </g> <g id="MetroMap_station_218543" class="MetroMap_station_item" data-metro-map-node-id="27"> <rect opacity=".01" x="444" y="68" width="134" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="447" y="83.972">Шереметьевская</tspan> </text> </g> <g id="MetroMap_station_218573" class="MetroMap_station_item" data-metro-map-node-id="28"> <rect opacity=".01" x="571" y="14" width="97" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"> </rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="574" y="29.972">Хлебниково</tspan> </text> </g> <g id="MetroMap_station_218552" class="MetroMap_station_item" data-metro-map-node-id="29"> <rect opacity=".01" x="680" y="68" width="72" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"> </rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="683" y="83.972">Водники</tspan> </text> </g> <g id="MetroMap_station_218581" class="MetroMap_station_item" data-metro-map-node-id="30"> <rect opacity=".01" x="786" y="14" width="114" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="789" y="29.972">Долгопрудная</tspan> </text> </g> <g id="MetroMap_station_218567" class="MetroMap_station_item" data-metro-map-node-id="31"> <rect opacity=".01" x="861" y="68" width="97" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"> </rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="864" y="83.972">Новодачная</tspan> </text> </g> <g id="MetroMap_station_218588" class="MetroMap_station_item" data-metro-map-node-id="32"> <rect opacity=".01" x="922" y="156" width="47" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="925" y="171.972">Марк</tspan> </text> </g> <g id="MetroMap_station_218542" class="MetroMap_station_item" data-metro-map-node-id="33"> <path opacity=".01" d="M922 206a2 2 0 0 1 2-2h84c1.1 0 2 .895 2 2v18c0 1.105-.9 2-2 2h-84a2 2 0 0 1-2-2v-18z" fill="#FFDE5A" class="MetroMap_bg"></path><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="925.062" y="219.972">Лианозово</tspan> </text> </g> <g id="MetroMap_station_218572" class="MetroMap_station_item" data-metro-map-node-id="34"> <path opacity=".01" d="M922 255a2 2 0 0 1 2-2h108c1.1 0 2 .895 2 2v18c0 1.105-.9 2-2 2H924a2 2 0 0 1-2-2v-18z" fill="#FFDE5A" class="MetroMap_bg"></path><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="925" y="268.972">Бескудниково</tspan> </text> </g> <g id="MetroMap_station_218551" class="MetroMap_station_item" data-metro-map-node-id="35"> <rect opacity=".01" x="922" y="299" width="80" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="925" y="314.972">Дегунино</tspan> </text> </g> <g id="MetroMap_station_218566" class="MetroMap_station_item" data-metro-map-node-id="36"> <rect x="379" y="990" width="90" height="22" rx="2" fill="#fff" fill-opacity=".8" class="MetroMap_bg1"></rect> <rect opacity=".01" x="379" y="990" width="90" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="382" y="1005.97">Тестовская</tspan> </text> </g> <g id="MetroMap_station_218541" class="MetroMap_station_item" data-metro-map-node-id="37"> <rect opacity=".01" x="62" y="798" width="71" height="43" rx="2" fill="#FFDE5A" class="MetroMap_bg"> </rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="66.656" y="834.972">Посёлок</tspan> </text><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="65.938" y="814.972">Рабочий</tspan> </text> </g> <g id="MetroMap_station_218550" class="MetroMap_station_item" data-metro-map-node-id="38"> <rect opacity=".01" x="75" y="744" width="59" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"> </rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="78.266" y="759.972">Сетунь</tspan> </text> </g> <g id="MetroMap_station_218555" class="MetroMap_station_item" data-metro-map-node-id="39"> <rect opacity=".01" x="33" y="689" width="100" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="36.5" y="704.972">Немчиновка</tspan> </text> </g> <g id="MetroMap_station_218545" class="MetroMap_station_item" data-metro-map-node-id="40"> <rect opacity=".01" x="55" y="634" width="78" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"> </rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="58.672" y="649.972">Сколково</tspan> </text> </g> <g id="MetroMap_station_218562" class="MetroMap_station_item" data-metro-map-node-id="41"> <rect opacity=".01" x="66" y="579" width="67" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"> </rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="69.406" y="594.972">Баковка</tspan> </text> </g> <g id="MetroMap_station_218584" class="MetroMap_station_item" data-metro-map-node-id="42"> <rect opacity=".01" x="50" y="524" width="83" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"> </rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="53.547" y="539.972">Одинцово</tspan> </text> </g> </g> <g id="MetroMap_l_213_15" class="MetroMap_stations_group"> <g id="MetroMap_station_218430" class="MetroMap_station_item" data-metro-map-node-id="43"> <rect opacity=".01" x="1719" y="1848" width="129" height="40" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1725" y="1863.97">Улица</tspan> </text><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1725" y="1881.97">Дмитриевского</tspan> </text> </g> <g id="MetroMap_station_218431" class="MetroMap_station_item" data-metro-map-node-id="44"> <rect opacity=".01" x="1720" y="1926" width="116" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1725" y="1941.97">Лухмановская</tspan> </text> </g> <g id="MetroMap_station_218432" class="MetroMap_station_item" data-metro-map-node-id="45"> <rect opacity=".01" x="1719" y="2022" width="98" height="23" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1724" y="2038.97">Некрасовка</tspan> </text> </g> <g id="MetroMap_station_218429" class="MetroMap_station_item" data-metro-map-node-id="46"> <rect opacity=".01" x="1630" y="1674" width="66" height="23" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1636" y="1689.97">Косино</tspan> </text> </g> <g id="MetroMap_station_218623" class="MetroMap_station_item" data-metro-map-node-id="47"> <rect opacity=".01" x="1570" y="1570" width="126" height="23" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1575.12" y="1585.97">Юго-Восточная</tspan> </text> </g> <g id="MetroMap_station_218622" class="MetroMap_station_item" data-metro-map-node-id="48"> <rect opacity=".01" x="1720" y="1308" width="64" height="23" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1725" y="1323.97">Окская</tspan> </text> </g> <g id="MetroMap_station_218621" class="MetroMap_station_item" data-metro-map-node-id="49"> <rect opacity=".01" x="1720" y="1249" width="66" height="23" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1725" y="1264.97">Стахановская</tspan> </text> </g> <g id="MetroMap_station_218618" class="MetroMap_station_item" data-metro-map-node-id="50"> <rect opacity=".01" x="1539" y="915" width="92" height="23" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1543" y="930.972">Лефортово</tspan> </text> </g> </g> <g id="MetroMap_l_213_14" class="MetroMap_stations_group"> <g id="MetroMap_station_152931" class="MetroMap_station_item" data-metro-map-node-id="51"> <rect opacity=".01" x="1536" y="586" width="94" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1542" y="601.972">Локомотив</tspan> </text> </g> <g id="MetroMap_station_152932" class="MetroMap_station_item" data-metro-map-node-id="52"> <rect opacity=".01" x="1641" y="747" width="95" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1646" y="762.972">Измайлово</tspan> </text> </g> <g id="MetroMap_station_152933" clip-path="url(#clip2)" class="MetroMap_station_item" data-metro-map-node-id="53"> <rect opacity=".01" x="1655" y="786" width="91" height="42" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1660" y="820.972">Гора</tspan> </text><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1660" y="801.972">Соколиная</tspan> </text> </g> <g id="MetroMap_station_152934" class="MetroMap_station_item" data-metro-map-node-id="54"> <rect opacity=".01" x="1688" y="1030" width="159" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1694" y="1045.97">Шоссе Энтузиастов</tspan> </text> </g> <g id="MetroMap_station_152935" clip-path="url(#clip3)" class="MetroMap_station_item" data-metro-map-node-id="55"> <rect x="1685" y="1098" width="101" height="22" rx="2" fill="#fff" fill-opacity=".8" class="MetroMap_bg1"></rect> <rect opacity=".01" x="1685" y="1098" width="101" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1690" y="1113.97">Андроновка</tspan> </text> </g> <g id="MetroMap_station_152936" class="MetroMap_transit MetroMap_station_item" data-metro-map-node-id="56"> <rect x="1721" y="1148" width="128" height="22" rx="2" fill="#fff" fill-opacity=".8" class="MetroMap_bg1"></rect> <rect opacity=".01" x="1720" y="1148" width="128" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1725" y="1163.97">Нижегородская</tspan> </text> </g> <g id="MetroMap_station_152937" class="MetroMap_transit MetroMap_station_item" data-metro-map-node-id="57"> <rect x="1567" y="1227" width="132" height="22" rx="2" fill="#fff" fill-opacity=".8" class="MetroMap_bg1"></rect> <rect opacity=".01" x="1567" y="1227" width="132" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1572" y="1242.97">Новохохловская</tspan> </text> </g> <g id="MetroMap_station_152938" class="MetroMap_station_item" data-metro-map-node-id="58"> <path fill-rule="evenodd" clip-rule="evenodd" d="M1520 1441c0-1.1.9-2 2-2h87c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2h-87c-1.1 0-2-.9-2-2v-18z" fill="#fff" fill-opacity=".8" class="MetroMap_bg1"></path> <rect opacity=".01" x="1520" y="1439" width="91" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1526" y="1455.97">Угрешская</tspan> </text> </g> <g id="MetroMap_station_152939" class="MetroMap_station_item" data-metro-map-node-id="59"> <rect opacity=".01" x="1302" y="1526" width="85" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1308.09" y="1541.97">Дубровка</tspan> </text> </g> <g id="MetroMap_station_152940" class="MetroMap_station_item" data-metro-map-node-id="60"> <path fill-rule="evenodd" clip-rule="evenodd" d="M1255 1605c0-1.1.9-2 2-2h120c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2h-120c-1.1 0-2-.9-2-2v-18z" fill="#fff" fill-opacity=".8" class="MetroMap_bg1"></path> <rect opacity=".01" x="1255" y="1603" width="124" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1261" y="1618.97">Автозаводская</tspan> </text> </g> <g id="MetroMap_station_152941" class="MetroMap_station_item" data-metro-map-node-id="61"> <rect opacity=".01" x="1120" y="1602" width="42" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1125" y="1617.97">ЗИЛ</tspan> </text> </g> <g id="MetroMap_station_152942" clip-path="url(#clip4)" class="MetroMap_station_item" data-metro-map-node-id="62"> <path opacity=".01" d="M980 1610c0-1.1.895-2 2-2h119c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H982c-1.105 0-2-.9-2-2v-18z" fill="#FFDE5A" class="MetroMap_bg"></path><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="985" y="1623.97">Верхние Котлы</tspan> </text> </g> <g id="MetroMap_station_152943" class="MetroMap_station_item" data-metro-map-node-id="63"> <rect opacity=".01" x="854" y="1586" width="85" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="859" y="1601.97">Крымская</tspan> </text> </g> <g id="MetroMap_station_152944" class="MetroMap_station_item" data-metro-map-node-id="64"> <rect opacity=".01" x="742" y="1538" width="148" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="746" y="1553.97">Площадь Гагарина</tspan> </text> </g> <g id="MetroMap_station_152945" class="MetroMap_station_item" data-metro-map-node-id="65"> <rect opacity=".01" x="550" y="1373" width="79" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="556" y="1388.97">Лужники</tspan> </text> </g> <g id="MetroMap_station_152947" class="MetroMap_station_item" data-metro-map-node-id="66"> <rect x="311" y="1068" width="104" height="42" rx="2" fill="#fff" fill-opacity=".8" class="MetroMap_bg1"></rect> <rect opacity=".01" x="311" y="1068" width="104" height="42" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="344.938" y="1083.97">Деловой</tspan> </text><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="315.391" y="1102.97">центр (МЦК)</tspan> </text> </g> <g id="MetroMap_station_152948" class="MetroMap_station_item" data-metro-map-node-id="67"> <path fill-rule="evenodd" clip-rule="evenodd" d="M459 921a2 2 0 0 1 2-2h81a2 2 0 0 1 2 2v18a2 2 0 0 1-2 2h-81a2 2 0 0 1-2-2v-18z" fill="#fff" fill-opacity=".8" class="MetroMap_bg1"></path> <rect opacity=".01" x="459" y="919" width="85" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="464" y="934.972">Шелепиха</tspan> </text> </g> <g id="MetroMap_station_152918" class="MetroMap_station_item" data-metro-map-node-id="68"> <rect opacity=".01" x="351" y="803" width="86" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="356" y="818.972">Хорошёво</tspan> </text> </g> <g id="MetroMap_station_152919" class="MetroMap_station_item" data-metro-map-node-id="69"> <rect opacity=".01" x="396" y="771" width="53" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="401" y="786.972">Зорге</tspan> </text> </g> <g id="MetroMap_station_152920" class="MetroMap_station_item" data-metro-map-node-id="70"> <path fill-rule="evenodd" clip-rule="evenodd" d="M464 645a2 2 0 0 1 2-2h115a2 2 0 0 1 2 2v18a2 2 0 0 1-2 2H466a2 2 0 0 1-2-2v-18z" fill="#fff" fill-opacity=".8" class="MetroMap_bg1"></path> <rect opacity=".01" x="464" y="643" width="119" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="469" y="658.972">Панфиловская</tspan> </text> </g> <g id="MetroMap_station_152921" class="MetroMap_transit MetroMap_station_item" data-metro-map-node-id="71"> <rect opacity=".01" x="468" y="580" width="94" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="473" y="594.972">Стрешнево</tspan> </text> </g> <g id="MetroMap_station_152922" class="MetroMap_station_item" data-metro-map-node-id="72"> <rect opacity=".01" x="730" y="473" width="96" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="735" y="488.972">Балтийская</tspan> </text> </g> <g id="MetroMap_station_152923" clip-path="url(#clip5)" class="MetroMap_station_item" data-metro-map-node-id="73"> <path opacity=".01" d="M798 446a2 2 0 0 1 2-2h67a2 2 0 0 1 2 2v18a2 2 0 0 1-2 2h-67a2 2 0 0 1-2-2v-18z" fill="#FFDE5A" class="MetroMap_bg"></path><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="803" y="459.972">Коптево</tspan> </text> </g> <g id="MetroMap_station_152924" class="MetroMap_station_item" data-metro-map-node-id="74"> <rect opacity=".01" x="774" y="383" width="83" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="777" y="399.972">Лихоборы</tspan> </text> </g> <g id="MetroMap_station_152928" class="MetroMap_station_item" data-metro-map-node-id="75"> <rect opacity=".01" x="1318" y="414" width="89" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1323" y="429.972">Ростокино</tspan> </text> </g> <g id="MetroMap_station_152929" class="MetroMap_station_item" data-metro-map-node-id="76"> <rect opacity=".01" x="1379" y="447" width="117" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1384" y="462.972">Белокаменная</tspan> </text> </g> <g id="MetroMap_station_152930" class="MetroMap_station_item" data-metro-map-node-id="77"> <rect opacity=".01" x="1329" y="525" width="120" height="42" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1383.84" y="540.972">Бульвар</tspan> </text><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1334.52" y="559.972">Рокоссовского</tspan> </text> </g> </g> <g id="MetroMap_l_213_12" class="MetroMap_stations_group"> <g id="MetroMap_station_20520" class="MetroMap_station_item" data-metro-map-node-id="78"> <path opacity=".01" d="M461 2235c0-1.1.895-2 2-2h85c1.105 0 2 .9 2 2v38c0 1.1-.895 2-2 2h-85c-1.105 0-2-.9-2-2v-38z" fill="#FFDE5A" class="MetroMap_bg"></path><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="466" y="2248.97">Бунинская</tspan> </text><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="466" y="2267.97">аллея</tspan> </text> </g> <g id="MetroMap_station_20519" class="MetroMap_station_item" data-metro-map-node-id="79"> <rect opacity=".01" x="582" y="2233" width="88" height="42" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="587" y="2248.97">Улица</tspan> </text><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="587" y="2267.97">Горчакова</tspan> </text> </g> <g id="MetroMap_station_20518" class="MetroMap_station_item" data-metro-map-node-id="80"> <rect opacity=".01" x="702" y="2233" width="87" height="61" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="707" y="2248.97">Бульвар</tspan> </text><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="707" y="2267.97">Адмирала</tspan> </text><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="707" y="2286.97">Ушакова</tspan> </text> </g> <g id="MetroMap_station_20517" class="MetroMap_station_item" data-metro-map-node-id="81"> <path opacity=".01" d="M821 2235c0-1.1.895-2 2-2h111c1.105 0 2 .9 2 2v38c0 1.1-.895 2-2 2H823c-1.105 0-2-.9-2-2v-38z" fill="#FFDE5A" class="MetroMap_bg"></path><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="826" y="2248.97">Улица</tspan> </text><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="826" y="2267.97">Скобелевская</tspan> </text> </g> <g id="MetroMap_station_20516" class="MetroMap_station_item" data-metro-map-node-id="82"> <rect opacity=".01" x="756" y="2113" width="147" height="42" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="852.812" y="2128.97">Улица</tspan> </text><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="759.812" y="2147.97">Старокачаловская</tspan> </text> </g> <g id="MetroMap_station_115086" class="MetroMap_station_item" data-metro-map-node-id="83"> <rect opacity=".01" x="787" y="2036" width="116" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="792" y="2051.97">Лесопарковая</tspan> </text> </g> <g id="MetroMap_station_115084" clip-path="url(#clip6)" class="MetroMap_station_item" data-metro-map-node-id="84"> <path opacity=".01" d="M637 2038c0-1.1.895-2 2-2h134c1.105 0 2 .9 2 2v18c0 1.1-.895 2-2 2H639c-1.105 0-2-.9-2-2v-18z" fill="#FFDE5A" class="MetroMap_bg"></path><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="642" y="2051.97">Битцевский парк</tspan> </text> </g> </g> <g id="MetroMap_l_213_11a" class="MetroMap_stations_group"> <g id="MetroMap_station_20425" class="MetroMap_station_item" data-metro-map-node-id="85"> <rect opacity=".01" x="1028" y="1803" width="101" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1033" y="1818.97">Варшавская</tspan> </text> </g> <g id="MetroMap_station_20443" class="MetroMap_station_item" data-metro-map-node-id="86"> <rect opacity=".01" x="828" y="1826" width="87" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="833.094" y="1841.97">Каховская</tspan> </text> </g> </g> <g id="MetroMap_l_213_11" class="MetroMap_stations_group"> <g id="MetroMap_station_189492" clip-path="url(#clip7)" class="MetroMap_transit MetroMap_station_item" data-metro-map-node-id="87"> <rect opacity=".01" x="622" y="726" width="53" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="627" y="741.972">ЦСКА</tspan> </text> </g> <g id="MetroMap_station_189451" clip-path="url(#clip8)" class="MetroMap_transit MetroMap_station_item" data-metro-map-node-id="88"> <path fill-rule="evenodd" clip-rule="evenodd" d="M765 657h22v16h-22v-16z" fill="#fff" fill-opacity=".8" class="MetroMap_bg1"></path> <rect x="668" y="655" width="140" height="22" rx="2" fill="#fff" fill-opacity=".8" class="MetroMap_bg1"></rect> <rect opacity=".01" x="668" y="655" width="140" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="673" y="670.972">Петровский парк</tspan> </text> </g> <g id="MetroMap_station_115085" clip-path="url(#clip9)" class="MetroMap_station_item" data-metro-map-node-id="89"> <path opacity=".01" d="M524 1005c0-1.1.895-2 2-2h120c1.105 0 2 .9 2 2v18c0 1.1-.895 2-2 2H526c-1.105 0-2-.9-2-2v-18z" fill="#FFDE5A" class="MetroMap_bg"></path><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="530" y="1018.97">Деловой центр</tspan> </text> </g> <g id="MetroMap_station_218630" class="MetroMap_station_item" data-metro-map-node-id="90"> <path opacity=".01" d="M295 832a2 2 0 0 1 2-2h85a2 2 0 0 1 2 2v18a2 2 0 0 1-2 2h-85a2 2 0 0 1-2-2v-18z" fill="#FFDE5A" class="MetroMap_bg"></path><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="301" y="845.972">Мнёвники</tspan> </text> </g> <g id="MetroMap_station_218629" clip-path="url(#clip10)" class="MetroMap_station_item" data-metro-map-node-id="91"> <path fill-rule="evenodd" clip-rule="evenodd" d="M348 880a2 2 0 0 1 2-2h167a2 2 0 0 1 2 2v19a2 2 0 0 1-2 2H350a2 2 0 0 1-2-2v-19z" fill="#fff" fill-opacity=".8" class="MetroMap_bg1"></path> <path opacity=".01" d="M348 880a2 2 0 0 1 2-2h167a2 2 0 0 1 2 2v19a2 2 0 0 1-2 2H350a2 2 0 0 1-2-2v-19z" fill="#FFDE5A" class="MetroMap_bg"></path><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="354" y="893.972">Народное ополчение</tspan> </text> </g> </g> <g id="MetroMap_l_213_10" class="MetroMap_stations_group"> <g id="MetroMap_station_20561" class="MetroMap_station_item" data-metro-map-node-id="92"> <rect opacity=".01" x="1445" y="2048" width="92" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1451" y="2063.97">Зябликово</tspan> </text> </g> <g id="MetroMap_station_152925" class="MetroMap_station_item" data-metro-map-node-id="93"> <rect opacity=".01" x="781" y="346" width="87" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="786.125" y="361.972">Окружная</tspan> </text> </g> <g id="MetroMap_station_20562" clip-path="url(#clip11)" class="MetroMap_station_item" data-metro-map-node-id="94"> <rect opacity=".01" x="1444" y="1987" width="115" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1450" y="2002.97">Шипиловская</tspan> </text> </g> <g id="MetroMap_station_20559" class="MetroMap_station_item" data-metro-map-node-id="95"> <rect opacity=".01" x="1444" y="1926" width="84" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1450" y="1941.97">Борисово</tspan> </text> </g> <g id="MetroMap_station_20415" clip-path="url(#clip12)" class="MetroMap_station_item" data-metro-map-node-id="96"> <rect opacity=".01" x="1444" y="1866" width="79" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1450" y="1881.97">Марьино</tspan> </text> </g> <g id="MetroMap_station_20414" clip-path="url(#clip13)" class="MetroMap_station_item" data-metro-map-node-id="97"> <path opacity=".01" d="M1444 1808c0-1.1.9-2 2-2h119c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2h-119c-1.1 0-2-.9-2-2v-18z" fill="#FFDE5A" class="MetroMap_bg"></path><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1450" y="1822.97">Братиславская</tspan> </text> </g> <g id="MetroMap_station_20413" clip-path="url(#clip14)" class="MetroMap_station_item" data-metro-map-node-id="98"> <rect opacity=".01" x="1445" y="1752" width="80" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1451" y="1767.97">Люблино</tspan> </text> </g> <g id="MetroMap_station_20412" clip-path="url(#clip15)" class="MetroMap_station_item" data-metro-map-node-id="99"> <path opacity=".01" d="M1444 1685c0-1.1.9-2 2-2h81c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2h-81c-1.1 0-2-.9-2-2v-18z" fill="#FFDE5A" class="MetroMap_bg"></path><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1450" y="1698.97">Волжская</tspan> </text> </g> <g id="MetroMap_station_20411" clip-path="url(#clip16)" class="MetroMap_station_item" data-metro-map-node-id="100"> <path fill-rule="evenodd" clip-rule="evenodd" d="M1444 1625c0-1.1.9-2 2-2h88c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2h-88c-1.1 0-2-.9-2-2v-18z" fill="#fff" fill-opacity=".8" class="MetroMap_bg1"></path> <path opacity=".01" d="M1444 1625c0-1.1.9-2 2-2h88c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2h-88c-1.1 0-2-.9-2-2v-18z" fill="#FFDE5A" class="MetroMap_bg"></path><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1450" y="1638.97">Печатники</tspan> </text> </g> <g id="MetroMap_station_20410" clip-path="url(#clip17)" class="MetroMap_station_item" data-metro-map-node-id="101"> <rect x="1444" y="1570" width="109" height="22" rx="2" fill="#fff" fill-opacity=".8" class="MetroMap_bg1"></rect> <rect opacity=".01" x="1444" y="1570" width="109" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1450" y="1585.97">Кожуховская</tspan> </text> </g> <g id="MetroMap_station_20409" class="MetroMap_station_item" data-metro-map-node-id="102"> <rect opacity=".01" x="1327" y="1439" width="85" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1333" y="1455.97">Дубровка</tspan> </text> </g> <g id="MetroMap_station_20513" class="MetroMap_station_item" data-metro-map-node-id="103"> <path fill-rule="evenodd" clip-rule="evenodd" d="M1378 1273c0-1.1.9-2 2-2h108c1.1 0 2 .9 2 2v38c0 1.1-.9 2-2 2h-108c-1.1 0-2-.9-2-2v-38z" fill="#fff" fill-opacity=".8" class="MetroMap_bg1"></path> <rect opacity=".01" x="1378" y="1271" width="112" height="42" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1383.69" y="1286.97">Крестьянская</tspan> </text><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1428.8" y="1305.97">застава</tspan> </text> </g> <g id="MetroMap_station_20514" class="MetroMap_station_item" data-metro-map-node-id="104"> <rect opacity=".01" x="1418" y="1054" width="73" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1423" y="1069.97">Римская</tspan> </text> </g> <g id="MetroMap_station_20515" clip-path="url(#clip18)" class="MetroMap_station_item" data-metro-map-node-id="105"> <path opacity=".01" d="M1259 924c0-1.105.9-2 2-2h93c1.1 0 2 .895 2 2v18c0 1.105-.9 2-2 2h-93c-1.1 0-2-.895-2-2v-18z" fill="#FFDE5A" class="MetroMap_bg"></path><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1264" y="937.972">Чкаловская</tspan> </text> </g> <g id="MetroMap_station_20566" clip-path="url(#clip19)" class="MetroMap_station_item" data-metro-map-node-id="106"> <path opacity=".01" d="M1169 776c0-1.105.9-2 2-2h94c1.1 0 2 .895 2 2v38c0 1.105-.9 2-2 2h-94c-1.1 0-2-.895-2-2v-38z" fill="#FFDE5A" class="MetroMap_bg"></path><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1174" y="789.972">Сретенский</tspan> </text><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1174" y="809.972">бульвар</tspan> </text> </g> <g id="MetroMap_station_20565" class="MetroMap_station_item" data-metro-map-node-id="107"> <rect opacity=".01" x="1057" y="776" width="73" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1063" y="791.972">Трубная</tspan> </text> </g> <g id="MetroMap_station_20563" clip-path="url(#clip20)" class="MetroMap_station_item" data-metro-map-node-id="108"> <rect opacity=".01" x="1063" y="602" width="107" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1068" y="617.972">Достоевская</tspan> </text> </g> <g id="MetroMap_station_20567" class="MetroMap_station_item" data-metro-map-node-id="109"> <rect opacity=".01" x="1063" y="537" width="121" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1068" y="552.972">Марьина Роща</tspan> </text> </g> <g id="MetroMap_station_153101" clip-path="url(#clip21)" class="MetroMap_station_item" data-metro-map-node-id="110"> <rect opacity=".01" x="1063" y="504" width="89" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1068" y="519.972">Бутырская</tspan> </text> </g> <g id="MetroMap_station_153102" class="MetroMap_station_item" data-metro-map-node-id="111"> <path fill-rule="evenodd" clip-rule="evenodd" d="M983 477a2 2 0 0 1 2-2h117c1.1 0 2 .895 2 2v18c0 1.105-.9 2-2 2H985a2 2 0 0 1-2-2v-18z" fill="#fff" fill-opacity=".8" class="MetroMap_bg1"></path> <rect opacity=".01" x="983" y="475" width="121" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="989" y="490.972">Фонвизинская</tspan> </text> </g> <g id="MetroMap_station_20376" clip-path="url(#clip22)" class="MetroMap_station_item" data-metro-map-node-id="112"> <rect x="959" y="427" width="192" height="22" rx="2" fill="#fff" fill-opacity=".8" class="MetroMap_bg1"></rect> <rect opacity=".01" x="959" y="427" width="192" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="964" y="442.972">Петровско-Разумовская</tspan> </text> </g> <g id="MetroMap_station_189450" class="MetroMap_station_item" data-metro-map-node-id="113"> <rect opacity=".01" x="778" y="243" width="89" height="42" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="797.359" y="258.972">Верхние</tspan> </text><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="784.609" y="277.972">Лихоборы</tspan> </text> </g> <g id="MetroMap_station_189449" class="MetroMap_station_item" data-metro-map-node-id="114"> <rect opacity=".01" x="760" y="204" width="107" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="766" y="219.972">Селигерская</tspan> </text> </g> </g> <g id="MetroMap_l_213_9" class="MetroMap_stations_group"> <g id="MetroMap_station_20448" clip-path="url(#clip23)" class="MetroMap_station_item" data-metro-map-node-id="115"> <path opacity=".01" d="M965 2115c0-1.1.895-2 2-2h149c1.1 0 2 .9 2 2v38c0 1.1-.9 2-2 2H967c-1.105 0-2-.9-2-2v-38z" fill="#FFDE5A" class="MetroMap_bg"></path><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="970" y="2128.97">Бульвар</tspan> </text><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="970" y="2147.97">Дмитрия Донского</tspan> </text> </g> <g id="MetroMap_station_20432" clip-path="url(#clip24)" class="MetroMap_station_item" data-metro-map-node-id="116"> <path opacity=".01" d="M965 2063c0-1.1.895-2 2-2h64c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2h-64c-1.105 0-2-.9-2-2v-18z" fill="#FFDE5A" class="MetroMap_bg"></path><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="970" y="2076.97">Аннино</tspan> </text> </g> <g id="MetroMap_station_20431" class="MetroMap_station_item" data-metro-map-node-id="117"> <rect opacity=".01" x="965" y="2008" width="141" height="42" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="970" y="2023.97">Улица Академика</tspan> </text><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="970" y="2042.97">Янгеля</tspan> </text> </g> <g id="MetroMap_station_20430" clip-path="url(#clip25)" class="MetroMap_station_item" data-metro-map-node-id="118"> <path opacity=".01" d="M965 1961c0-1.1.895-2 2-2h79c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2h-79c-1.105 0-2-.9-2-2v-18z" fill="#FFDE5A" class="MetroMap_bg"></path><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="970" y="1974.97">Пражская</tspan> </text> </g> <g id="MetroMap_station_20429" clip-path="url(#clip26)" class="MetroMap_station_item" data-metro-map-node-id="119"> <path opacity=".01" d="M965 1923c0-1.1.895-2 2-2h59c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2h-59c-1.105 0-2-.9-2-2v-18z" fill="#FFDE5A" class="MetroMap_bg"></path><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="970" y="1936.97">Южная</tspan> </text> </g> <g id="MetroMap_station_20447" clip-path="url(#clip27)" class="MetroMap_station_item" data-metro-map-node-id="120"> <path opacity=".01" d="M965 1885c0-1.1.895-2 2-2h110c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H967c-1.105 0-2-.9-2-2v-18z" fill="#FFDE5A" class="MetroMap_bg"></path><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="970" y="1898.97">Чертановская</tspan> </text> </g> <g id="MetroMap_station_20446" clip-path="url(#clip28)" class="MetroMap_station_item" data-metro-map-node-id="121"> <path opacity=".01" d="M965 1851c0-1.1.895-2 2-2h134c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H967c-1.105 0-2-.9-2-2v-18z" fill="#FFDE5A" class="MetroMap_bg"></path><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="970" y="1864.97">Севастопольская</tspan> </text> </g> <g id="MetroMap_station_20445" class="MetroMap_station_item" data-metro-map-node-id="122"> <rect opacity=".01" x="965" y="1736" width="111" height="42" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="970" y="1751.97">Нахимовский</tspan> </text><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="970" y="1770.97">проспект</tspan> </text> </g> <g id="MetroMap_station_20428" clip-path="url(#clip29)" class="MetroMap_station_item" data-metro-map-node-id="123"> <path opacity=".01" d="M965 1703c0-1.1.895-2 2-2h77c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2h-77c-1.105 0-2-.9-2-2v-18z" fill="#FFDE5A" class="MetroMap_bg"></path><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="970" y="1716.97">Нагорная</tspan> </text> </g> <g id="MetroMap_station_20427" class="MetroMap_station_item" data-metro-map-node-id="124"> <path opacity=".01" d="M965 1659c0-1.1.895-2 2-2h100c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H967c-1.105 0-2-.9-2-2v-18z" fill="#FFDE5A" class="MetroMap_bg"></path><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="970" y="1672.97">Нагатинская</tspan> </text> </g> <g id="MetroMap_station_20426" class="MetroMap_station_item" data-metro-map-node-id="125"> <path opacity=".01" d="M965 1486c0-1.1.895-2 2-2h74c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2h-74c-1.105 0-2-.9-2-2v-18z" fill="#FFDE5A" class="MetroMap_bg"></path><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="970" y="1499.97">Тульская</tspan> </text> </g> <g id="MetroMap_station_20509" class="MetroMap_station_item" data-metro-map-node-id="126"> <path opacity=".01" d="M965 1395c0-1.1.895-2 2-2h111c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H967c-1.105 0-2-.9-2-2v-18z" fill="#FFDE5A" class="MetroMap_bg"></path><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="970" y="1408.97">Серпуховская</tspan> </text> </g> <g id="MetroMap_station_20508" clip-path="url(#clip30)" class="MetroMap_station_item" data-metro-map-node-id="127"> <path opacity=".01" d="M965 1297c0-1.1.895-2 2-2h69c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2h-69c-1.105 0-2-.9-2-2v-18z" fill="#FFDE5A" class="MetroMap_bg"></path><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="970" y="1310.97">Полянка</tspan> </text> </g> <g id="MetroMap_station_20507" clip-path="url(#clip31)" class="MetroMap_station_item" data-metro-map-node-id="128"> <path opacity=".01" d="M761 1119c0-1.1.895-2 2-2h95c1.105 0 2 .9 2 2v18c0 1.1-.895 2-2 2h-95c-1.105 0-2-.9-2-2v-18z" fill="#FFDE5A" class="MetroMap_bg"></path><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="766" y="1132.97">Боровицкая</tspan> </text> </g> <g id="MetroMap_station_20506" clip-path="url(#clip32)" class="MetroMap_station_item" data-metro-map-node-id="129"> <path opacity=".01" d="M965 957a2 2 0 0 1 2-2h83c1.1 0 2 .895 2 2v18c0 1.105-.9 2-2 2h-83a2 2 0 0 1-2-2v-18z" fill="#FFDE5A" class="MetroMap_bg"></path><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="970" y="970.972">Чеховская</tspan> </text> </g> <g id="MetroMap_station_20505" clip-path="url(#clip33)" class="MetroMap_station_item" data-metro-map-node-id="130"> <path opacity=".01" d="M940 795a2 2 0 0 1 2-2h71c1.1 0 2 .895 2 2v38c0 1.105-.9 2-2 2h-71a2 2 0 0 1-2-2v-38z" fill="#FFDE5A" class="MetroMap_bg"></path><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="945.297" y="808.972">Цветной</tspan> </text><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="949.531" y="827.972">бульвар</tspan> </text> </g> <g id="MetroMap_station_20504" class="MetroMap_station_item" data-metro-map-node-id="131"> <path fill-rule="evenodd" clip-rule="evenodd" d="M948 693a2 2 0 0 1 2-2h123c1.1 0 2 .895 2 2v18c0 1.105-.9 2-2 2H950a2 2 0 0 1-2-2v-18z" fill="#fff" fill-opacity=".8" class="MetroMap_bg1"></path> <path opacity=".01" d="M948 693a2 2 0 0 1 2-2h123c1.1 0 2 .895 2 2v18c0 1.105-.9 2-2 2H950a2 2 0 0 1-2-2v-18z" fill="#FFDE5A" class="MetroMap_bg"></path><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="953" y="706.972">Менделеевская</tspan> </text> </g> <g id="MetroMap_station_20383" clip-path="url(#clip34)" class="MetroMap_transit MetroMap_station_item" data-metro-map-node-id="132"> <path fill-rule="evenodd" clip-rule="evenodd" d="M817 629a2 2 0 0 1 2-2h102a2 2 0 0 1 2 2v18a2 2 0 0 1-2 2H819a2 2 0 0 1-2-2v-18z" fill="#fff" fill-opacity=".8" class="MetroMap_bg1"></path> <path opacity=".01" d="M817 629a2 2 0 0 1 2-2h102a2 2 0 0 1 2 2v18a2 2 0 0 1-2 2H819a2 2 0 0 1-2-2v-18z" fill="#FFDE5A" class="MetroMap_bg"></path><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="822" y="642.972">Савёловская</tspan> </text> </g> <g id="MetroMap_station_20382" clip-path="url(#clip35)" class="MetroMap_transit MetroMap_station_item" data-metro-map-node-id="133"> <path fill-rule="evenodd" clip-rule="evenodd" d="M889 543a2 2 0 0 1 2-2h107a2 2 0 0 1 2 2v18a2 2 0 0 1-2 2H891a2 2 0 0 1-2-2v-18z" fill="#fff" fill-opacity=".8" class="MetroMap_bg1"></path> <path opacity=".01" d="M889 543a2 2 0 0 1 2-2h107a2 2 0 0 1 2 2v18a2 2 0 0 1-2 2H891a2 2 0 0 1-2-2v-18z" fill="#FFDE5A" class="MetroMap_bg"></path><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="894" y="556.972">Дмитровская</tspan> </text> </g> <g id="MetroMap_station_20377" clip-path="url(#clip36)" class="MetroMap_transit MetroMap_station_item" data-metro-map-node-id="134"> <path opacity=".01" d="M742 502a2 2 0 0 1 2-2h121a2 2 0 0 1 2 2v18a2 2 0 0 1-2 2H744a2 2 0 0 1-2-2v-18z" fill="#FFDE5A" class="MetroMap_bg"></path><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="747" y="515.972">Тимирязевская</tspan> </text> </g> <g id="MetroMap_station_20381" clip-path="url(#clip37)" class="MetroMap_station_item" data-metro-map-node-id="135"> <path opacity=".01" d="M1063 349c0-1.105.9-2 2-2h89c1.1 0 2 .895 2 2v18c0 1.105-.9 2-2 2h-89c-1.1 0-2-.895-2-2v-18z" fill="#FFDE5A" class="MetroMap_bg"></path><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1068" y="362.972">Владыкино</tspan> </text> </g> <g id="MetroMap_station_20380" class="MetroMap_station_item" data-metro-map-node-id="136"> <rect opacity=".01" x="1063" y="299" width="85" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1069" y="314.972">Отрадное</tspan> </text> </g> <g id="MetroMap_station_20379" class="MetroMap_station_item" data-metro-map-node-id="137"> <path opacity=".01" d="M1063 254c0-1.105.9-2 2-2h80c1.1 0 2 .895 2 2v18c0 1.105-.9 2-2 2h-80c-1.1 0-2-.895-2-2v-18z" fill="#FFDE5A" class="MetroMap_bg"></path><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1068" y="267.972">Бибирево</tspan> </text> </g> <g id="MetroMap_station_20378" class="MetroMap_station_item" data-metro-map-node-id="138"> <path opacity=".01" d="M1063 206c0-1.105.9-2 2-2h89c1.1 0 2 .895 2 2v18c0 1.105-.9 2-2 2h-89c-1.1 0-2-.895-2-2v-18z" fill="#FFDE5A" class="MetroMap_bg"></path><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1068" y="219.972">Алтуфьево</tspan> </text> </g> </g> <g id="MetroMap_l_213_8a" class="MetroMap_stations_group"> <g id="MetroMap_station_189452" class="MetroMap_station_item" data-metro-map-node-id="139"> <path fill-rule="evenodd" clip-rule="evenodd" d="M525 819a2 2 0 0 1 2-2h106a2 2 0 0 1 2 2v18a2 2 0 0 1-2 2H527a2 2 0 0 1-2-2v-18z" fill="#fff" fill-opacity=".8" class="MetroMap_bg1"></path> <path opacity=".01" d="M525 819a2 2 0 0 1 2-2h106a2 2 0 0 1 2 2v18a2 2 0 0 1-2 2H527a2 2 0 0 1-2-2v-18z" fill="#FFDE5A" class="MetroMap_bg"></path><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="530" y="832.972">Хорошёвская</tspan> </text> </g> <g id="MetroMap_station_163517" class="MetroMap_station_item" data-metro-map-node-id="140"> <rect opacity=".01" x="304" y="1355" width="72" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="307" y="1370.97">Минская</tspan> </text> </g> <g id="MetroMap_station_163520" class="MetroMap_station_item" data-metro-map-node-id="141"> <rect opacity=".01" x="303" y="1400" width="127" height="42" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="306" y="1415.97">Ломоносовский</tspan> </text><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="306" y="1434.97">проспект</tspan> </text> </g> <g id="MetroMap_station_163522" class="MetroMap_station_item" data-metro-map-node-id="142"> <rect opacity=".01" x="302" y="1460" width="75" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="307" y="1475.97">Раменки</tspan> </text> </g> <g id="MetroMap_station_190121" class="MetroMap_station_item" data-metro-map-node-id="143"> <rect opacity=".01" x="302" y="1827" width="102" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="307" y="1842.97">Рассказовка</tspan> </text> </g> <g id="MetroMap_station_190119" class="MetroMap_station_item" data-metro-map-node-id="144"> <rect opacity=".01" x="302" y="1774" width="147" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="307" y="1789.97">Новопеределкино</tspan> </text> </g> <g id="MetroMap_station_190117" class="MetroMap_station_item" data-metro-map-node-id="145"> <rect opacity=".01" x="302" y="1723" width="140" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="307" y="1738.97">Боровское шоссе</tspan> </text> </g> <g id="MetroMap_station_190116" class="MetroMap_station_item" data-metro-map-node-id="146"> <rect opacity=".01" x="302" y="1670" width="83" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="307" y="1685.97">Солнцево</tspan> </text> </g> <g id="MetroMap_station_190115" class="MetroMap_station_item" data-metro-map-node-id="147"> <rect opacity=".01" x="302" y="1618" width="81" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="307" y="1633.97">Говорово</tspan> </text> </g> <g id="MetroMap_station_190114" class="MetroMap_station_item" data-metro-map-node-id="148"> <rect opacity=".01" x="302" y="1565" width="74" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="307" y="1580.97">Озёрная</tspan> </text> </g> <g id="MetroMap_station_190113" class="MetroMap_station_item" data-metro-map-node-id="149"> <rect opacity=".01" x="302" y="1504" width="114" height="42" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="307" y="1519.97">Мичуринский </tspan> <tspan x="307" y="1538.97">проспект</tspan> </text> </g> </g> <g id="MetroMap_l_213_8" class="MetroMap_stations_group"> <g id="MetroMap_station_20477" class="MetroMap_station_item" data-metro-map-node-id="150"> <path fill-rule="evenodd" clip-rule="evenodd" d="M1380 1203c0-1.1.9-2 2-2h112c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2h-112c-1.1 0-2-.9-2-2v-18z" fill="#fff" fill-opacity=".8" class="MetroMap_bg1"></path> <rect opacity=".01" x="1380" y="1201" width="116" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1385" y="1216.97">Марксистская</tspan> </text> </g> <g id="MetroMap_station_20476" class="MetroMap_station_item" data-metro-map-node-id="151"> <path fill-rule="evenodd" clip-rule="evenodd" d="M1542 1057c0-1.1.9-2 2-2h73c1.1 0 2 .9 2 2v38c0 1.1-.9 2-2 2h-73c-1.1 0-2-.9-2-2v-38z" fill="#fff" fill-opacity=".8" class="MetroMap_bg1"></path> <path opacity=".01" d="M1542 1057c0-1.1.9-2 2-2h73c1.1 0 2 .9 2 2v38c0 1.1-.9 2-2 2h-73c-1.1 0-2-.9-2-2v-38z" fill="#FFDE5A" class="MetroMap_bg"></path><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1547" y="1070.97">Площадь</tspan> </text><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1547" y="1090.97">Ильича</tspan> </text> </g> <g id="MetroMap_station_20408" class="MetroMap_station_item" data-metro-map-node-id="152"> <path fill-rule="evenodd" clip-rule="evenodd" d="M1623 988c0-1.105.9-2 2-2h117c1.1 0 2 .895 2 2v18c0 1.1-.9 2-2 2h-117c-1.1 0-2-.9-2-2v-18z" fill="#fff" fill-opacity=".8" class="MetroMap_bg1"></path> <rect opacity=".01" x="1623" y="986" width="121" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1629" y="1001.97">Авиамоторная</tspan> </text> </g> <g id="MetroMap_station_20392" class="MetroMap_station_item" data-metro-map-node-id="153"> <path fill-rule="evenodd" clip-rule="evenodd" d="M1652 951c0-1.105.9-2 2-2h153c1.1 0 2 .895 2 2v18c0 1.105-.9 2-2 2h-153c-1.1 0-2-.895-2-2v-18z" fill="#fff" fill-opacity=".8" class="MetroMap_bg1"></path> <rect opacity=".01" x="1652" y="949" width="157" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1657" y="964.972">Шоссе Энтузиастов</tspan> </text> </g> <g id="MetroMap_station_20391" clip-path="url(#clip38)" class="MetroMap_station_item" data-metro-map-node-id="154"> <path opacity=".01" d="M1708 898c0-1.105.9-2 2-2h62c1.1 0 2 .895 2 2v18c0 1.105-.9 2-2 2h-62c-1.1 0-2-.895-2-2v-18z" fill="#FFDE5A" class="MetroMap_bg"></path><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1713" y="911.972">Перово</tspan> </text> </g> <g id="MetroMap_station_20390" clip-path="url(#clip39)" class="MetroMap_station_item" data-metro-map-node-id="155"> <path opacity=".01" d="M1742 863c0-1.105.9-2 2-2h106c1.1 0 2 .895 2 2v18c0 1.105-.9 2-2 2h-106c-1.1 0-2-.895-2-2v-18z" fill="#FFDE5A" class="MetroMap_bg"></path><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1747" y="876.972">Новогиреево</tspan> </text> </g> <g id="MetroMap_station_114781" clip-path="url(#clip40)" class="MetroMap_station_item" data-metro-map-node-id="156"> <path opacity=".01" d="M1773 828c0-1.105.9-2 2-2h96c1.1 0 2 .895 2 2v18c0 1.105-.9 2-2 2h-96c-1.1 0-2-.895-2-2v-18z" fill="#FFDE5A" class="MetroMap_bg"></path><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1778" y="841.972">Новокосино</tspan> </text> </g> </g> <g id="MetroMap_l_213_7" class="MetroMap_stations_group"> <g id="MetroMap_station_20364" clip-path="url(#clip41)" class="MetroMap_station_item" data-metro-map-node-id="157"> <rect opacity=".01" x="458" y="324" width="92" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="463.062" y="339.972">Планерная</tspan> </text> </g> <g id="MetroMap_station_20365" class="MetroMap_station_item" data-metro-map-node-id="158"> <rect opacity=".01" x="458" y="383" width="107" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="463" y="399.972">Сходненская</tspan> </text> </g> <g id="MetroMap_station_20366" class="MetroMap_transit MetroMap_station_item" data-metro-map-node-id="159"> <path opacity=".01" d="M458 435a2 2 0 0 1 2-2h89a2 2 0 0 1 2 2v18a2 2 0 0 1-2 2h-89a2 2 0 0 1-2-2v-18z" fill="#FFDE5A" class="MetroMap_bg"></path><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="464" y="448.972">Тушинская</tspan> </text> </g> <g id="MetroMap_station_115791" class="MetroMap_station_item" data-metro-map-node-id="160"> <rect opacity=".01" x="357" y="518" width="72" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="363.375" y="533.972">Спартак</tspan> </text> </g> <g id="MetroMap_station_20367" class="MetroMap_station_item" data-metro-map-node-id="161"> <path opacity=".01" d="M334 595a2 2 0 0 1 2-2h91a2 2 0 0 1 2 2v18a2 2 0 0 1-2 2h-91a2 2 0 0 1-2-2v-18z" fill="#FFDE5A" class="MetroMap_bg"></path><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="340" y="608.972">Щукинская</tspan> </text> </g> <g id="MetroMap_station_20368" class="MetroMap_station_item" data-metro-map-node-id="162"> <path opacity=".01" d="M325 645a2 2 0 0 1 2-2h99a2 2 0 0 1 2 2v34a2 2 0 0 1-2 2h-99a2 2 0 0 1-2-2v-34z" fill="#FFDE5A" class="MetroMap_bg"></path><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="389.656" y="674.972">поле</tspan> </text><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="328.297" y="658.972">Октябрьское</tspan> </text> </g> <g id="MetroMap_station_20374" class="MetroMap_station_item" data-metro-map-node-id="163"> <path fill-rule="evenodd" clip-rule="evenodd" d="M522 774a2 2 0 0 1 2-2h114a2 2 0 0 1 2 2v18a2 2 0 0 1-2 2H524a2 2 0 0 1-2-2v-18z" fill="#fff" fill-opacity=".8" class="MetroMap_bg1"></path> <path opacity=".01" d="M522 774a2 2 0 0 1 2-2h114a2 2 0 0 1 2 2v18a2 2 0 0 1-2 2H524a2 2 0 0 1-2-2v-18z" fill="#FFDE5A" class="MetroMap_bg"></path><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="527" y="787.972">Полежаевская</tspan> </text> </g> <g id="MetroMap_station_20375" clip-path="url(#clip42)" class="MetroMap_transit MetroMap_station_item" data-metro-map-node-id="164"> <rect opacity=".01" x="504" y="860" width="70" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="509" y="875.972">Беговая</tspan> </text> </g> <g id="MetroMap_station_20499" class="MetroMap_station_item" data-metro-map-node-id="165"> <rect opacity=".01" x="579" y="920" width="82" height="39" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text id="MetroMap_1905 года" fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" white-space="pre"> <tspan x="585" y="952.972">1905 года</tspan> </text><text id="MetroMap_Улица" fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" white-space="pre"> <tspan x="585" y="936.972">Улица</tspan> </text> </g> <g id="MetroMap_station_20500" class="MetroMap_station_item" data-metro-map-node-id="166"> <path opacity=".01" d="M719 889a2 2 0 0 1 2-2h105a2 2 0 0 1 2 2v18a2 2 0 0 1-2 2H721a2 2 0 0 1-2-2v-18z" fill="#FFDE5A" class="MetroMap_bg"></path><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="724" y="902.972">Баррикадная</tspan> </text> </g> <g id="MetroMap_station_20501" clip-path="url(#clip43)" class="MetroMap_station_item" data-metro-map-node-id="167"> <rect opacity=".01" x="887" y="887" width="102" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="892" y="902.972">Пушкинская</tspan> </text> </g> <g id="MetroMap_station_20502" clip-path="url(#clip44)" class="MetroMap_station_item" data-metro-map-node-id="168"> <rect opacity=".01" x="1035" y="887" width="131" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1040" y="902.972">Кузнецкий мост</tspan> </text> </g> <g id="MetroMap_station_20503" class="MetroMap_station_item" data-metro-map-node-id="169"> <path fill-rule="evenodd" clip-rule="evenodd" d="M1505 1273c0-1.1.9-2 2-2h111c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2h-111c-1.1 0-2-.9-2-2v-18z" fill="#fff" fill-opacity=".8" class="MetroMap_bg1"></path> <path opacity=".01" d="M1505 1273c0-1.1.9-2 2-2h111c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2h-111c-1.1 0-2-.9-2-2v-18z" fill="#FFDE5A" class="MetroMap_bg"></path><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1510" y="1286.97">Пролетарская</tspan> </text> </g> <g id="MetroMap_station_20407" class="MetroMap_station_item" data-metro-map-node-id="170"> <path fill-rule="evenodd" clip-rule="evenodd" d="M1443 1328c0-1.1.9-2 2-2h119c1.1 0 2 .9 2 2v37c0 1.1-.9 2-2 2h-119c-1.1 0-2-.9-2-2v-37z" fill="#fff" fill-opacity=".8" class="MetroMap_bg1"></path> <rect opacity=".01" x="1443" y="1326" width="123" height="41" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1448.38" y="1341.97">Волгоградский</tspan> </text><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1492.84" y="1359.97">проспект</tspan> </text> </g> <g id="MetroMap_station_20406" class="MetroMap_transit MetroMap_station_item" data-metro-map-node-id="171"> <rect x="1637" y="1360" width="119" height="22" rx="2" fill="#fff" fill-opacity=".8" class="MetroMap_bg1"></rect> <rect opacity=".01" x="1637" y="1360" width="119" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1644" y="1374.97">Текстильщики</tspan> </text> </g> <g id="MetroMap_station_20405" class="MetroMap_station_item" data-metro-map-node-id="172"> <rect x="1696" y="1415" width="94" height="22" rx="2" fill="#fff" fill-opacity=".8" class="MetroMap_bg1"></rect> <rect opacity=".01" x="1696" y="1415" width="94" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1702" y="1430.97">Кузьминки</tspan> </text> </g> <g id="MetroMap_station_20404" clip-path="url(#clip45)" class="MetroMap_station_item" data-metro-map-node-id="173"> <path opacity=".01" d="M1761 1488c0-1.1.9-2 2-2h85c1.1 0 2 .9 2 2v35c0 1.1-.9 2-2 2h-85c-1.1 0-2-.9-2-2v-35z" fill="#FFDE5A" class="MetroMap_bg"></path><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1767" y="1501.97">Рязанский</tspan> </text><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1767" y="1517.97">проспект</tspan> </text> </g> <g id="MetroMap_station_20403" clip-path="url(#clip46)" class="MetroMap_station_item" data-metro-map-node-id="174"> <rect opacity=".01" x="1761" y="1570" width="68" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1767" y="1585.97">Выхино</tspan> </text> </g> <g id="MetroMap_station_115040" class="MetroMap_station_item" data-metro-map-node-id="175"> <rect opacity=".01" x="1761" y="1673" width="128" height="43" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1766" y="1708.97">проспект</tspan> </text><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1766" y="1689.97">Лермонтовский</tspan> </text> </g> <g id="MetroMap_station_115038" class="MetroMap_station_item" data-metro-map-node-id="176"> <rect opacity=".01" x="1554" y="1926" width="89" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1560" y="1941.97">Жулебино</tspan> </text> </g> <g id="MetroMap_station_121428" class="MetroMap_station_item" data-metro-map-node-id="177"> <rect opacity=".01" x="1544" y="2022" width="100" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1550" y="2038.97">Котельники</tspan> </text> </g> </g> <g id="MetroMap_l_213_6" class="MetroMap_stations_group"> <g id="MetroMap_station_20442" class="MetroMap_station_item" data-metro-map-node-id="178"> <rect opacity=".01" x="746" y="1977" width="133" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="751" y="1992.97">Новоясеневская</tspan> </text> </g> <g id="MetroMap_station_20441" class="MetroMap_station_item" data-metro-map-node-id="179"> <rect opacity=".01" x="725" y="1932" width="72" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="730" y="1947.97">Ясенево</tspan> </text> </g> <g id="MetroMap_station_20440" class="MetroMap_station_item" data-metro-map-node-id="180"> <rect opacity=".01" x="725" y="1887" width="102" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="730" y="1902.97">Тёплый стан</tspan> </text> </g> <g id="MetroMap_station_20439" class="MetroMap_station_item" data-metro-map-node-id="181"> <rect opacity=".01" x="725" y="1842" width="81" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="730" y="1857.97">Коньково</tspan> </text> </g> <g id="MetroMap_station_20438" class="MetroMap_station_item" data-metro-map-node-id="182"> <rect opacity=".01" x="725" y="1797" width="72" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="730" y="1812.97">Беляево</tspan> </text> </g> <g id="MetroMap_station_20437" class="MetroMap_station_item" data-metro-map-node-id="183"> <rect opacity=".01" x="725" y="1751" width="90" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="730" y="1766.97">Калужская</tspan> </text> </g> <g id="MetroMap_station_20436" class="MetroMap_station_item" data-metro-map-node-id="184"> <rect opacity=".01" x="725" y="1706" width="151" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="730" y="1721.97">Новые Черёмушки</tspan> </text> </g> <g id="MetroMap_station_20435" class="MetroMap_station_item" data-metro-map-node-id="185"> <rect opacity=".01" x="725" y="1661" width="114" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="730" y="1676.97">Профсоюзная</tspan> </text> </g> <g id="MetroMap_station_20434" class="MetroMap_station_item" data-metro-map-node-id="186"> <rect opacity=".01" x="725" y="1616" width="128" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="730" y="1631.97">Академическая</tspan> </text> </g> <g id="MetroMap_station_20433" class="MetroMap_station_item" data-metro-map-node-id="187"> <rect opacity=".01" x="722" y="1507" width="165" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="727" y="1522.97">Ленинский проспект</tspan> </text> </g> <g id="MetroMap_station_20416" class="MetroMap_station_item" data-metro-map-node-id="188"> <rect opacity=".01" x="792" y="1398" width="111" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="797" y="1413.97">Шаболовская</tspan> </text> </g> <g id="MetroMap_station_20468" class="MetroMap_transit MetroMap_station_item" data-metro-map-node-id="189"> <rect opacity=".01" x="1032" y="1198" width="116" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1035" y="1213.97">Третьяковская</tspan> </text> </g> <g id="MetroMap_station_20467" class="MetroMap_transit MetroMap_station_item" data-metro-map-node-id="190"> <path fill-rule="evenodd" clip-rule="evenodd" d="M1191 1013c0-1.1.9-2 2-2h102c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2h-102c-1.1 0-2-.9-2-2v-18z" fill="#fff" fill-opacity=".8" class="MetroMap_bg1"></path> <rect opacity=".01" x="1191" y="1011" width="106" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1196" y="1026.97">Китай-город</tspan> </text> </g> <g id="MetroMap_station_20466" class="MetroMap_station_item" data-metro-map-node-id="191"> <rect opacity=".01" x="1068" y="844" width="113" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1074.23" y="859.972">Тургеневская</tspan> </text> </g> <g id="MetroMap_station_20465" clip-path="url(#clip47)" class="MetroMap_station_item" data-metro-map-node-id="192"> <rect opacity=".01" x="1159" y="735" width="105" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1164" y="750.972">Сухаревская</tspan> </text> </g> <g id="MetroMap_station_20464" class="MetroMap_transit MetroMap_station_item" data-metro-map-node-id="193"> <rect x="1208" y="650" width="125" height="23" rx="2" fill="#fff" fill-opacity=".8" class="MetroMap_bg1"></rect> <rect opacity=".01" x="1208" y="650" width="125" height="23" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1213" y="665.972">Проспект Мира</tspan> </text> </g> <g id="MetroMap_station_20463" class="MetroMap_station_item" data-metro-map-node-id="194"> <rect opacity=".01" x="1272" y="586" width="74" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1277" y="601.972">Рижская</tspan> </text> </g> <g id="MetroMap_station_20389" class="MetroMap_station_item" data-metro-map-node-id="195"> <rect opacity=".01" x="1155" y="486" width="114" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1160.7" y="501.972">Алексеевская</tspan> </text> </g> <g id="MetroMap_station_20384" class="MetroMap_station_item" data-metro-map-node-id="196"> <rect opacity=".01" x="1214" y="449" width="55" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1219.77" y="464.972">ВДНХ</tspan> </text> </g> <g id="MetroMap_station_20388" class="MetroMap_station_item" data-metro-map-node-id="197"> <rect opacity=".01" x="1301" y="379" width="146" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1306" y="394.972">Ботанический сад</tspan> </text> </g> <g id="MetroMap_station_20387" class="MetroMap_station_item" data-metro-map-node-id="198"> <rect opacity=".01" x="1301" y="334" width="94" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1306" y="349.972">Свиблово</tspan> </text> </g> <g id="MetroMap_station_20386" class="MetroMap_station_item" data-metro-map-node-id="199"> <rect opacity=".01" x="1301" y="289" width="118" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1306" y="304.972">Бабушкинская</tspan> </text> </g> <g id="MetroMap_station_20385" class="MetroMap_station_item" data-metro-map-node-id="200"> <rect opacity=".01" x="1301" y="244" width="103" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1306" y="259.972">Медведково</tspan> </text> </g> </g> <g id="MetroMap_l_213_5" class="MetroMap_stations_group"> <g id="MetroMap_station_20512" class="MetroMap_station_item" data-metro-map-node-id="201"> <path fill-rule="evenodd" clip-rule="evenodd" d="M948 658a2 2 0 0 1 2-2h131c1.1 0 2 .895 2 2v18c0 1.105-.9 2-2 2H950a2 2 0 0 1-2-2v-18z" fill="#fff" fill-opacity=".8" class="MetroMap_bg1"></path> <rect opacity=".01" x="948" y="656" width="135" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="953" y="671.972">Новослободская</tspan> </text> </g> <g id="MetroMap_station_20484" class="MetroMap_transit MetroMap_station_item" data-metro-map-node-id="202"> <rect x="1346" y="753" width="127" height="22" rx="2" fill="#fff" fill-opacity=".8" class="MetroMap_bg1"></rect> <rect opacity=".01" x="1346" y="753" width="127" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1351" y="768.972">Комсомольская</tspan> </text> </g> <g id="MetroMap_station_20498" class="MetroMap_transit MetroMap_station_item" data-metro-map-node-id="203"> <path opacity=".01" d="M1293 1135c0-1.1.9-2 2-2h77c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2h-77c-1.1 0-2-.9-2-2v-18z" fill="#FFDE5A" class="MetroMap_bg"></path><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1296" y="1148.97">Таганская</tspan> </text> </g> <g id="MetroMap_station_20510" class="MetroMap_station_item" data-metro-map-node-id="204"> <rect opacity=".01" x="965" y="1335" width="123" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="971" y="1350.97">Добрынинская</tspan> </text> </g> <g id="MetroMap_station_20469" class="MetroMap_transit MetroMap_station_item" data-metro-map-node-id="205"> <rect opacity=".01" x="718" y="1314" width="106" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="723" y="1329.97">Октябрьская</tspan> </text> </g> <g id="MetroMap_station_20511" class="MetroMap_station_item" data-metro-map-node-id="206"> <path fill-rule="evenodd" clip-rule="evenodd" d="M669 939a2 2 0 0 1 2-2h155a2 2 0 0 1 2 2v18a2 2 0 0 1-2 2H671a2 2 0 0 1-2-2v-18z" fill="#fff" fill-opacity=".8" class="MetroMap_bg1"></path> <rect opacity=".01" x="669" y="937" width="159" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="674" y="953.972">Краснопресненская</tspan> </text> </g> </g> <g id="MetroMap_l_213_4" class="MetroMap_stations_group"> <g id="MetroMap_station_98560" class="MetroMap_station_item" data-metro-map-node-id="207"> <rect opacity=".01" x="247" y="1027" width="132" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="251.344" y="1042.97">Международная</tspan> </text> </g> <g id="MetroMap_station_98559" class="MetroMap_station_item" data-metro-map-node-id="208"> <rect opacity=".01" x="451" y="1052" width="107" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="456" y="1067.97">Выставочная</tspan> </text> </g> <g id="MetroMap_station_20497" class="MetroMap_station_item" data-metro-map-node-id="209"> <path fill-rule="evenodd" clip-rule="evenodd" d="M923 1112c0-1.1.895-2 2-2h171c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H925c-1.105 0-2-.9-2-2v-18z" fill="#fff" fill-opacity=".8" class="MetroMap_bg1"></path> <rect opacity=".01" x="923" y="1110" width="175" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="929" y="1125.97">Александровский сад</tspan> </text> </g> <g id="MetroMap_station_20481" class="MetroMap_station_item" data-metro-map-node-id="210"> <path fill-rule="evenodd" clip-rule="evenodd" d="M844 1022c0-1.1.895-2 2-2h85c1.105 0 2 .9 2 2v18c0 1.1-.895 2-2 2h-85c-1.105 0-2-.9-2-2v-18z" fill="#fff" fill-opacity=".8" class="MetroMap_bg1"></path> <rect opacity=".01" x="844" y="1020" width="89" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="850" y="1035.97">Арбатская</tspan> </text> </g> <g id="MetroMap_station_20482" class="MetroMap_station_item" data-metro-map-node-id="211"> <rect opacity=".01" x="709" y="1006" width="101" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="714" y="1021.97">Смоленская</tspan> </text> </g> <g id="MetroMap_station_20449" class="MetroMap_station_item" data-metro-map-node-id="212"> <path fill-rule="evenodd" clip-rule="evenodd" d="M586 1057c0-1.1.895-2 2-2h75c1.105 0 2 .9 2 2v18c0 1.1-.895 2-2 2h-75c-1.105 0-2-.9-2-2v-18z" fill="#fff" fill-opacity=".8" class="MetroMap_bg1"></path> <rect opacity=".01" x="586" y="1055" width="79" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="591" y="1070.97">Киевская</tspan> </text> </g> <g id="MetroMap_station_20461" class="MetroMap_station_item" data-metro-map-node-id="213"> <path fill-rule="evenodd" clip-rule="evenodd" d="M496 1165c0-1.1.895-2 2-2h109c1.105 0 2 .9 2 2v18c0 1.1-.895 2-2 2H498c-1.105 0-2-.9-2-2v-18z" fill="#fff" fill-opacity=".8" class="MetroMap_bg1"></path> <rect opacity=".01" x="496" y="1163" width="113" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="501" y="1178.97">Студенческая</tspan> </text> </g> <g id="MetroMap_station_20460" class="MetroMap_station_item" data-metro-map-node-id="214"> <rect x="324" y="1183" width="103" height="22" rx="2" fill="#fff" fill-opacity=".8" class="MetroMap_bg1"></rect> <rect opacity=".01" x="324" y="1183" width="103" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="329" y="1198.97">Кутузовская</tspan> </text> </g> <g id="MetroMap_station_20459" class="MetroMap_transit MetroMap_station_item" data-metro-map-node-id="215"> <rect x="250" y="1167" width="51" height="22" rx="2" fill="#fff" fill-opacity=".8" class="MetroMap_bg1"></rect> <rect opacity=".01" x="250" y="1167" width="51" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="255" y="1183.97">Фили</tspan> </text> </g> <g id="MetroMap_station_20458" class="MetroMap_station_item" data-metro-map-node-id="216"> <rect x="247" y="1122" width="139" height="22" rx="2" fill="#fff" fill-opacity=".8" class="MetroMap_bg1"></rect> <rect opacity=".01" x="247" y="1122" width="139" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="252" y="1137.97">Багратионовская</tspan> </text> </g> <g id="MetroMap_station_20457" class="MetroMap_station_item" data-metro-map-node-id="217"> <rect opacity=".01" x="247" y="967" width="133" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="252" y="982.972">Филевский парк</tspan> </text> </g> <g id="MetroMap_station_20456" class="MetroMap_station_item" data-metro-map-node-id="218"> <rect opacity=".01" x="247" y="928" width="100" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="252" y="943.972">Пионерская</tspan> </text> </g> <g id="MetroMap_station_20455" class="MetroMap_station_item" data-metro-map-node-id="219"> <rect opacity=".01" x="246" y="878" width="96" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="251" y="893.972">Кунцевская</tspan> </text> </g> </g> <g id="MetroMap_l_213_3" class="MetroMap_stations_group"> <g id="MetroMap_station_20393" clip-path="url(#clip48)" class="MetroMap_station_item" data-metro-map-node-id="220"> <rect opacity=".01" x="1683" y="470" width="101" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1688" y="485.972">Щёлковская</tspan> </text> </g> <g id="MetroMap_station_20394" clip-path="url(#clip49)" class="MetroMap_station_item" data-metro-map-node-id="221"> <path opacity=".01" d="M1683 548c0-1.105.9-2 2-2h115c1.1 0 2 .895 2 2v18c0 1.105-.9 2-2 2h-115c-1.1 0-2-.895-2-2v-18z" fill="#FFDE5A" class="MetroMap_bg"></path><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1688" y="561.972">Первомайская</tspan> </text> </g> <g id="MetroMap_station_20395" clip-path="url(#clip50)" class="MetroMap_station_item" data-metro-map-node-id="222"> <rect opacity=".01" x="1683" y="623" width="120" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1688" y="638.972">Измайловская</tspan> </text> </g> <g id="MetroMap_station_20396" clip-path="url(#clip51)" class="MetroMap_station_item" data-metro-map-node-id="223"> <path opacity=".01" d="M1645 709c0-1.105.9-2 2-2h111c1.1 0 2 .895 2 2v18c0 1.105-.9 2-2 2h-111c-1.1 0-2-.895-2-2v-18z" fill="#FFDE5A" class="MetroMap_bg"></path><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1650" y="722.972">Партизанская</tspan> </text> </g> <g id="MetroMap_station_20397" clip-path="url(#clip52)" class="MetroMap_station_item" data-metro-map-node-id="224"> <path opacity=".01" d="M1534 817c0-1.105.9-2 2-2h106c1.1 0 2 .895 2 2v18c0 1.105-.9 2-2 2h-106c-1.1 0-2-.895-2-2v-18z" fill="#FFDE5A" class="MetroMap_bg"></path><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1539" y="830.972">Семёновская</tspan> </text> </g> <g id="MetroMap_station_20398" class="MetroMap_station_item" data-metro-map-node-id="225"> <rect opacity=".01" x="1502" y="852" width="149" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1507" y="867.972">Электрозаводская</tspan> </text> </g> <g id="MetroMap_station_20478" class="MetroMap_station_item" data-metro-map-node-id="226"> <rect opacity=".01" x="1466" y="888" width="99" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1471" y="903.972">Бауманская</tspan> </text> </g> <g id="MetroMap_station_20479" clip-path="url(#clip53)" class="MetroMap_transit MetroMap_station_item" data-metro-map-node-id="227"> <path fill-rule="evenodd" clip-rule="evenodd" d="M1417 917c0-1.105.9-2 2-2h67c1.1 0 2 .895 2 2v18c0 1.105-.9 2-2 2h-67c-1.1 0-2-.895-2-2v-18z" fill="#fff" fill-opacity=".8" class="MetroMap_bg1"></path> <path opacity=".01" d="M1417 917c0-1.105.9-2 2-2h67c1.1 0 2 .895 2 2v18c0 1.105-.9 2-2 2h-67c-1.1 0-2-.895-2-2v-18z" fill="#FFDE5A" class="MetroMap_bg"></path><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1422" y="930.972">Курская</tspan> </text> </g> <g id="MetroMap_station_20480" class="MetroMap_station_item" data-metro-map-node-id="228"> <path fill-rule="evenodd" clip-rule="evenodd" d="M1092 1064c0-1.1.9-2 2-2h119c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2h-119c-1.1 0-2-.9-2-2v-18z" fill="#fff" fill-opacity=".8" class="MetroMap_bg1"></path> <rect opacity=".01" x="1092" y="1062" width="123" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1097" y="1077.97">Пл. Революции</tspan> </text> </g> <g id="MetroMap_station_20496" class="MetroMap_station_item" data-metro-map-node-id="229"> <path fill-rule="evenodd" clip-rule="evenodd" d="M902 1060h72v16h-72v-16z" fill="#fff" fill-opacity=".8" class="MetroMap_bg1"></path> <rect opacity=".01" x="900" y="1058" width="88" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="906" y="1073.97">Арбатская</tspan> </text> </g> <g id="MetroMap_station_20495" class="MetroMap_station_item" data-metro-map-node-id="230"> <rect opacity=".01" x="709" y="1058" width="101" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="714" y="1073.97">Смоленская</tspan> </text> </g> <g id="MetroMap_station_20450" class="MetroMap_transit MetroMap_station_item" data-metro-map-node-id="231"> <rect opacity=".01" x="303" y="1292" width="106" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="306" y="1307.97">Парк Победы</tspan> </text> </g> <g id="MetroMap_station_98561" class="MetroMap_station_item" data-metro-map-node-id="232"> <rect x="166" y="1292" width="96" height="42" rx="2" fill="#fff" fill-opacity=".8" class="MetroMap_bg1"></rect> <rect opacity=".01" x="166" y="1292" width="96" height="42" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="197.844" y="1326.97">Бульвар</tspan> </text><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="169.641" y="1307.97">Славянский</tspan> </text> </g> <g id="MetroMap_station_20454" class="MetroMap_station_item" data-metro-map-node-id="233"> <rect opacity=".01" x="236" y="745" width="106" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="241" y="760.972">Молодёжная</tspan> </text> </g> <g id="MetroMap_station_20453" class="MetroMap_station_item" data-metro-map-node-id="234"> <rect opacity=".01" x="236" y="681" width="98" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text id="MetroMap_Крылатское" fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" white-space="pre"> <tspan x="241" y="696.972">Крылатское</tspan> </text> </g> <g id="MetroMap_station_20568" class="MetroMap_station_item" data-metro-map-node-id="235"> <rect opacity=".01" x="236" y="618" width="82" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="241" y="633.972">Строгино</tspan> </text> </g> <g id="MetroMap_station_109160" clip-path="url(#clip54)" class="MetroMap_station_item" data-metro-map-node-id="236"> <rect opacity=".01" x="236" y="554" width="87" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="241" y="569.972">Мякинино</tspan> </text> </g> <g id="MetroMap_station_20570" clip-path="url(#clip55)" class="MetroMap_transit MetroMap_station_item" data-metro-map-node-id="237"> <rect opacity=".01" x="236" y="493" width="128" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text id="MetroMap_Волоколамская" fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" white-space="pre"> <tspan x="241" y="508.972">Волоколамская</tspan> </text> </g> <g id="MetroMap_station_20569" clip-path="url(#clip56)" class="MetroMap_station_item" data-metro-map-node-id="238"> <rect opacity=".01" x="236" y="386" width="68" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="241" y="401.972">Митино</tspan> </text> </g> <g id="MetroMap_station_114837" class="MetroMap_station_item" data-metro-map-node-id="239"> <rect opacity=".01" x="236" y="326" width="91" height="42" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="241" y="341.972">Пятницкое</tspan> </text><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="241" y="360.972">шоссе</tspan> </text> </g> </g> <g id="MetroMap_l_213_2" class="MetroMap_stations_group"> <g id="MetroMap_station_114836" class="MetroMap_station_item MetroMap_selected" data-metro-map-node-id="240"> <rect opacity=".01" x="1496" y="2095" width="79" height="42" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1501" y="2110.97">Алма-</tspan> </text><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1501" y="2129.97">Атинская</tspan> </text> </g> <g id="MetroMap_station_20424" class="MetroMap_station_item MetroMap_selected" data-metro-map-node-id="241"> <rect opacity=".01" x="1302" y="2095" width="156" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1306" y="2110.97">Красногвардейская</tspan> </text> </g> <g id="MetroMap_station_20423" class="MetroMap_station_item MetroMap_selected" data-metro-map-node-id="242"> <rect opacity=".01" x="1290" y="1986" width="129" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1295" y="2001.97">Домодедовская</tspan> </text> </g> <g id="MetroMap_station_20422" class="MetroMap_station_item MetroMap_selected" data-metro-map-node-id="243"> <rect opacity=".01" x="1236" y="1926" width="75" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1241" y="1941.97">Орехово</tspan> </text> </g> <g id="MetroMap_station_20421" class="MetroMap_transit MetroMap_station_item MetroMap_selected" data-metro-map-node-id="244"> <rect opacity=".01" x="1201" y="1888" width="89" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1206" y="1903.97">Царицыно</tspan> </text> </g> <g id="MetroMap_station_20420" class="MetroMap_station_item MetroMap_selected" data-metro-map-node-id="245"> <rect x="1202" y="1845" width="135" height="22" rx="2" fill="#fff" fill-opacity=".8" class="MetroMap_bg1"></rect> <rect opacity=".01" x="1202" y="1845" width="135" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1207" y="1860.97">Кантемировская</tspan> </text> </g> <g id="MetroMap_station_20419" class="MetroMap_transit MetroMap_station_item MetroMap_selected" data-metro-map-node-id="246"> <rect x="1202" y="1770" width="93" height="22" rx="2" fill="#fff" fill-opacity=".8" class="MetroMap_bg1"></rect> <rect opacity=".01" x="1202" y="1770" width="93" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1207" y="1785.97">Каширская</tspan> </text> </g> <g id="MetroMap_station_20418" class="MetroMap_station_item MetroMap_selected" data-metro-map-node-id="247"> <rect opacity=".01" x="1202" y="1722" width="109" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1205" y="1737.97">Коломенская</tspan> </text> </g> <g id="MetroMap_station_123593" class="MetroMap_station_item MetroMap_selected" data-metro-map-node-id="248"> <rect opacity=".01" x="1202" y="1651" width="89" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1205" y="1666.97">Технопарк</tspan> </text> </g> <g id="MetroMap_station_20417" class="MetroMap_station_item MetroMap_selected" data-metro-map-node-id="249"> <rect opacity=".01" x="1202" y="1557" width="120" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1205" y="1572.97">Автозаводская</tspan> </text> </g> <g id="MetroMap_station_20475" class="MetroMap_transit MetroMap_station_item MetroMap_selected" data-metro-map-node-id="250"> <rect opacity=".01" x="1202" y="1369" width="95" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1205" y="1384.97">Павелецкая</tspan> </text> </g> <g id="MetroMap_station_20474" class="MetroMap_station_item MetroMap_selected" data-metro-map-node-id="251"> <rect opacity=".01" x="1203" y="1198" width="122" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1206" y="1213.97">Новокузнецкая</tspan> </text> </g> <g id="MetroMap_station_20473" class="MetroMap_station_item MetroMap_selected" data-metro-map-node-id="252"> <rect opacity=".01" x="1067" y="1037" width="106" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1073" y="1052.97">Театральная</tspan> </text> </g> <g id="MetroMap_station_20472" clip-path="url(#clip57)" class="MetroMap_station_item MetroMap_selected" data-metro-map-node-id="253"> <path opacity=".01" d="M830 958a2 2 0 0 1 2-2h75a2 2 0 0 1 2 2v18a2 2 0 0 1-2 2h-75a2 2 0 0 1-2-2v-18z" fill="#FFDE5A" class="MetroMap_bg"></path><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="836.625" y="971.972">Тверская</tspan> </text> </g> <g id="MetroMap_station_20471" class="MetroMap_station_item MetroMap_selected" data-metro-map-node-id="254"> <rect opacity=".01" x="821" y="822" width="99" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="826" y="837.972">Маяковская</tspan> </text> </g> <g id="MetroMap_station_20470" class="MetroMap_transit MetroMap_station_item MetroMap_selected" data-metro-map-node-id="255"> <rect opacity=".01" x="786" y="779" width="105" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="791" y="794.972">Белорусская</tspan> </text> </g> <g id="MetroMap_station_20558" class="MetroMap_station_item MetroMap_selected" data-metro-map-node-id="256"> <rect opacity=".01" x="682" y="687" width="71" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="688" y="700.972">Динамо</tspan> </text> </g> <g id="MetroMap_station_20373" class="MetroMap_station_item MetroMap_selected" data-metro-map-node-id="257"> <rect x="627" y="624" width="85" height="22" rx="2" fill="#fff" fill-opacity=".8" class="MetroMap_bg1"></rect> <rect opacity=".01" x="627" y="624" width="85" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="633" y="639.972">Аэропорт</tspan> </text> </g> <g id="MetroMap_station_20372" class="MetroMap_station_item MetroMap_selected" data-metro-map-node-id="258"> <rect opacity=".01" x="620" y="595" width="56" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="625" y="609.972">Сокол</tspan> </text> </g> <g id="MetroMap_station_20371" class="MetroMap_station_item MetroMap_selected" data-metro-map-node-id="259"> <rect opacity=".01" x="619" y="446" width="98" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="624" y="461.972">Войковская</tspan> </text> </g> <g id="MetroMap_station_20370" class="MetroMap_station_item MetroMap_selected" data-metro-map-node-id="260"> <rect opacity=".01" x="621" y="383" width="134" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="626" y="399.972">Водный стадион</tspan> </text> </g> <g id="MetroMap_station_20369" class="MetroMap_station_item MetroMap_selected" data-metro-map-node-id="261"> <rect opacity=".01" x="621" y="324" width="120" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="626" y="339.972">Речной вокзал</tspan> </text> </g> <g id="MetroMap_station_215102" class="MetroMap_station_item MetroMap_selected" data-metro-map-node-id="262"> <rect opacity=".01" x="621" y="263" width="110" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="626" y="278.972">Беломорская</tspan> </text> </g> <g id="MetroMap_station_187151" class="MetroMap_station_item MetroMap_selected" data-metro-map-node-id="263"> <rect opacity=".01" x="621" y="205" width="76" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="626.719" y="220.972">Ховрино</tspan> </text> </g> </g> <g id="MetroMap_l_213_1" class="MetroMap_stations_group"> <g id="MetroMap_station_218464" class="MetroMap_station_item" data-metro-map-node-id="264"> <path opacity=".01" d="M512 1972c0-1.1.895-2 2-2h100c1.105 0 2 .9 2 2v18c0 1.1-.895 2-2 2H514c-1.105 0-2-.9-2-2v-18z" fill="#FFDE5A" class="MetroMap_bg"></path><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="517" y="1985.97">Коммунарка</tspan> </text> </g> <g id="MetroMap_station_218465" class="MetroMap_station_item" data-metro-map-node-id="265"> <path opacity=".01" d="M512 1920c0-1.1.895-2 2-2h78c1.105 0 2 .9 2 2v18c0 1.1-.895 2-2 2h-78c-1.105 0-2-.9-2-2v-18z" fill="#FFDE5A" class="MetroMap_bg"></path><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="517" y="1933.97">Ольховая</tspan> </text> </g> <g id="MetroMap_station_218466" class="MetroMap_station_item" data-metro-map-node-id="266"> <path opacity=".01" d="M512 1868c0-1.1.895-2 2-2h84c1.105 0 2 .9 2 2v18c0 1.1-.895 2-2 2h-84c-1.105 0-2-.9-2-2v-18z" fill="#FFDE5A" class="MetroMap_bg"></path><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="517" y="1881.97">Прокшино</tspan> </text> </g> <g id="MetroMap_station_218467" class="MetroMap_station_item" data-metro-map-node-id="267"> <path opacity=".01" d="M512 1816c0-1.1.895-2 2-2h99c1.105 0 2 .9 2 2v18c0 1.1-.895 2-2 2h-99c-1.105 0-2-.9-2-2v-18z" fill="#FFDE5A" class="MetroMap_bg"></path><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="517" y="1829.97">Филатов луг</tspan> </text> </g> <g id="MetroMap_station_144826" class="MetroMap_station_item" data-metro-map-node-id="268"> <path opacity=".01" d="M512 1763c0-1.1.895-2 2-2h86c1.105 0 2 .9 2 2v18c0 1.1-.895 2-2 2h-86c-1.105 0-2-.9-2-2v-18z" fill="#FFDE5A" class="MetroMap_bg"></path><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="517" y="1776.97">Саларьево</tspan> </text> </g> <g id="MetroMap_station_144612" class="MetroMap_station_item" data-metro-map-node-id="269"> <path opacity=".01" d="M512 1712c0-1.1.895-2 2-2h90c1.105 0 2 .9 2 2v18c0 1.1-.895 2-2 2h-90c-1.105 0-2-.9-2-2v-18z" fill="#FFDE5A" class="MetroMap_bg"></path><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="517" y="1725.97">Румянцево</tspan> </text> </g> <g id="MetroMap_station_116268" class="MetroMap_station_item" data-metro-map-node-id="270"> <path opacity=".01" d="M512 1660c0-1.1.895-2 2-2h86c1.105 0 2 .9 2 2v18c0 1.1-.895 2-2 2h-86c-1.105 0-2-.9-2-2v-18z" fill="#FFDE5A" class="MetroMap_bg"></path><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="517" y="1673.97">Тропарёво</tspan> </text> </g> <g id="MetroMap_station_20452" class="MetroMap_station_item" data-metro-map-node-id="271"> <rect opacity=".01" x="512" y="1606" width="117" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="517" y="1622.97">Юго-Западная</tspan> </text> </g> <g id="MetroMap_station_20451" class="MetroMap_station_item" data-metro-map-node-id="272"> <rect opacity=".01" x="512" y="1544" width="106" height="42" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="517" y="1578.97">Вернадского</tspan> </text><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="517" y="1559.97">Проспект</tspan> </text> </g> <g id="MetroMap_station_20444" class="MetroMap_station_item" data-metro-map-node-id="273"> <rect opacity=".01" x="512" y="1497" width="106" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="517" y="1512.97">Университет</tspan> </text> </g> <g id="MetroMap_station_20493" class="MetroMap_station_item" data-metro-map-node-id="274"> <path fill-rule="evenodd" clip-rule="evenodd" d="M512 1442c0-1.1.895-2 2-2h129c1.105 0 2 .9 2 2v18c0 1.1-.895 2-2 2H514c-1.105 0-2-.9-2-2v-18z" fill="#fff" fill-opacity=".8" class="MetroMap_bg1"></path> <rect opacity=".01" x="512" y="1440" width="133" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="517" y="1455.97">Воробьевы горы</tspan> </text> </g> <g id="MetroMap_station_20492" class="MetroMap_station_item" data-metro-map-node-id="275"> <rect opacity=".01" x="550" y="1334" width="100" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="555" y="1349.97">Спортивная</tspan> </text> </g> <g id="MetroMap_station_20491" class="MetroMap_station_item" data-metro-map-node-id="276"> <rect opacity=".01" x="627" y="1256" width="109" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="632" y="1271.97">Фрунзенская</tspan> </text> </g> <g id="MetroMap_station_20490" class="MetroMap_transit MetroMap_station_item" data-metro-map-node-id="277"> <path fill-rule="evenodd" clip-rule="evenodd" d="M671 1214c0-1.1.895-2 2-2h118c1.105 0 2 .9 2 2v18c0 1.1-.895 2-2 2H673c-1.105 0-2-.9-2-2v-18z" fill="#fff" fill-opacity=".8" class="MetroMap_bg1"></path> <rect opacity=".01" x="671" y="1212" width="122" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="676" y="1227.97">Парк Культуры</tspan> </text> </g> <g id="MetroMap_station_20494" class="MetroMap_station_item" data-metro-map-node-id="278"> <rect opacity=".01" x="803" y="1212" width="124" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="808" y="1227.97">Кропоткинская</tspan> </text> </g> <g id="MetroMap_station_20489" class="MetroMap_station_item" data-metro-map-node-id="279"> <rect opacity=".01" x="945" y="1158" width="186" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="950" y="1173.97">Библиотека им. Ленина</tspan> </text> </g> <g id="MetroMap_station_20488" class="MetroMap_station_item" data-metro-map-node-id="280"> <path fill-rule="evenodd" clip-rule="evenodd" d="M1027 1012c0-1.1.9-2 2-2h104c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2h-104c-1.1 0-2-.9-2-2v-18z" fill="#fff" fill-opacity=".8" class="MetroMap_bg1"></path> <rect opacity=".01" x="1027" y="1010" width="108" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1032" y="1025.97">Охотный ряд</tspan> </text> </g> <g id="MetroMap_station_20487" class="MetroMap_station_item" data-metro-map-node-id="281"> <rect opacity=".01" x="1126" y="959" width="73" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1132" y="974.972">Лубянка</tspan> </text> </g> <g id="MetroMap_station_20486" class="MetroMap_station_item" data-metro-map-node-id="282"> <path fill-rule="evenodd" clip-rule="evenodd" d="M1248 848c0-1.105.9-2 2-2h113c1.1 0 2 .895 2 2v18c0 1.105-.9 2-2 2h-113c-1.1 0-2-.895-2-2v-18z" fill="#fff" fill-opacity=".8" class="MetroMap_bg1"></path> <path opacity=".01" d="M1248 848c0-1.105.9-2 2-2h113c1.1 0 2 .895 2 2v18c0 1.105-.9 2-2 2h-113c-1.1 0-2-.895-2-2v-18z" fill="#FFDE5A" class="MetroMap_bg"></path><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1253" y="861.972">Чистые пруды</tspan> </text> </g> <g id="MetroMap_station_20485" class="MetroMap_station_item" data-metro-map-node-id="283"> <path fill-rule="evenodd" clip-rule="evenodd" d="M1295 807c0-1.105.9-2 2-2h126c1.1 0 2 .895 2 2v18c0 1.105-.9 2-2 2h-126c-1.1 0-2-.895-2-2v-18z" fill="#fff" fill-opacity=".8" class="MetroMap_bg1"></path> <rect opacity=".01" x="1295" y="805" width="130" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1300" y="820.972">Красные ворота</tspan> </text> </g> <g id="MetroMap_station_20483" class="MetroMap_station_item" data-metro-map-node-id="284"> <rect opacity=".01" x="1388" y="712" width="131" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1393" y="727.972">Красносельская</tspan> </text> </g> <g id="MetroMap_station_20402" clip-path="url(#clip58)" class="MetroMap_station_item" data-metro-map-node-id="285"> <path opacity=".01" d="M1422 681c0-1.105.9-2 2-2h96c1.1 0 2 .895 2 2v18c0 1.105-.9 2-2 2h-96c-1.1 0-2-.895-2-2v-18z" fill="#FFDE5A" class="MetroMap_bg"></path><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1427" y="694.972">Сокольники</tspan> </text> </g> <g id="MetroMap_station_20401" class="MetroMap_station_item" data-metro-map-node-id="286"> <path fill-rule="evenodd" clip-rule="evenodd" d="M1454 648c0-1.105.9-2 2-2h159c1.1 0 2 .895 2 2v18c0 1.105-.9 2-2 2h-159c-1.1 0-2-.895-2-2v-18z" fill="#fff" fill-opacity=".8" class="MetroMap_bg1"></path> <rect opacity=".01" x="1454" y="646" width="163" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1459" y="661.972">Преображенская пл.</tspan> </text> </g> <g id="MetroMap_station_20400" class="MetroMap_station_item" data-metro-map-node-id="287"> <rect opacity=".01" x="1360" y="586" width="115" height="22" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1365" y="601.972">Черкизовская</tspan> </text> </g> <g id="MetroMap_station_20399" class="MetroMap_station_item" data-metro-map-node-id="288"> <rect opacity=".01" x="1527" y="525" width="120" height="42" rx="2" fill="#FFDE5A" class="MetroMap_bg"></rect><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1532" y="540.972">Бульвар</tspan> </text><text fill="#444" font-family="YSText-Regular, YS Text" font-size="16" letter-spacing="0" class="MetroMap_text" white-space="pre"> <tspan x="1532" y="558.972">Рокоссовского</tspan> </text> </g> </g> </g> <g id="MetroMap_stops"> <g class="MetroMap_stop MetroMap_to_218549" data-metro-map-node-id="289"> <circle cx="152" cy="104" r="6" fill="#DF477C" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_218579" data-metro-map-node-id="290"> <circle cx="152" cy="170" r="6" fill="#DF477C" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_218559" data-metro-map-node-id="291"> <circle cx="152" cy="237" r="6" fill="#DF477C" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_218564" data-metro-map-node-id="292"> <circle cx="152" cy="303" r="6" fill="#DF477C" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_218570" data-metro-map-node-id="293"> <circle cx="152" cy="370" r="6" fill="#DF477C" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_218592" data-metro-map-node-id="294"> <circle cx="152" cy="436" r="6" fill="#DF477C" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_218547" data-metro-map-node-id="295"> <circle cx="336" cy="472" r="6" fill="#DF477C" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_218554" data-metro-map-node-id="296"> <circle cx="572" cy="513" r="6" fill="#DF477C" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_218582" data-metro-map-node-id="297"> <circle cx="784" cy="579" r="6" fill="#DF477C" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_218561" data-metro-map-node-id="298"> <circle cx="691" cy="579" r="6" fill="#DF477C" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_218590" data-metro-map-node-id="299"> <circle cx="1332" cy="718" r="6" fill="#DF477C" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_218556" data-metro-map-node-id="300"> <circle cx="1439" cy="965" r="6" fill="#DF477C" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_218576" data-metro-map-node-id="301"> <circle cx="1473" cy="997" r="6" fill="#DF477C" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_218569" data-metro-map-node-id="302"> <circle cx="1380" cy="1694" r="6" fill="#DF477C" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_218563" data-metro-map-node-id="303"> <circle cx="1340" cy="1730" r="6" fill="#DF477C" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_218585" data-metro-map-node-id="304"> <circle cx="1308" cy="1761" r="6" fill="#DF477C" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_218597" data-metro-map-node-id="305"> <circle cx="1250" cy="1817" r="6" fill="#DF477C" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_218558" data-metro-map-node-id="306"> <circle cx="1159" cy="1970" r="6" fill="#DF477C" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_218578" data-metro-map-node-id="307"> <circle cx="1159" cy="2019" r="6" fill="#DF477C" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_218548" data-metro-map-node-id="308"> <circle cx="1159" cy="2072" r="6" fill="#DF477C" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_218593" data-metro-map-node-id="309"> <circle cx="1159" cy="2124" r="6" fill="#DF477C" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_218571" data-metro-map-node-id="310"> <circle cx="1159" cy="2177" r="6" fill="#DF477C" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_218565" data-metro-map-node-id="311"> <circle cx="1159" cy="2229" r="6" fill="#DF477C" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_218586" data-metro-map-node-id="312"> <circle cx="1159" cy="2282" r="6" fill="#DF477C" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_218598" data-metro-map-node-id="313"> <circle cx="1159" cy="2334" r="6" fill="#DF477C" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_218588" data-metro-map-node-id="314"> <circle cx="909" cy="166" r="6" fill="#ED9F2D" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_218581" data-metro-map-node-id="315"> <circle cx="791" cy="53" r="6" fill="#ED9F2D" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_218551" data-metro-map-node-id="316"> <circle cx="909" cy="311" r="6" fill="#ED9F2D" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_218543" data-metro-map-node-id="317"> <circle cx="509" cy="51" r="6" fill="#ED9F2D" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_218542" data-metro-map-node-id="318"> <circle cx="909" cy="214" r="6" fill="#ED9F2D" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_218567" data-metro-map-node-id="319"> <circle cx="835" cy="80" r="6" fill="#ED9F2D" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_218544" data-metro-map-node-id="320"> <circle cx="400" cy="51" r="6" fill="#ED9F2D" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_218552" data-metro-map-node-id="321"> <circle cx="717" cy="51" r="6" fill="#ED9F2D" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_218572" data-metro-map-node-id="322"> <circle cx="909" cy="263" r="6" fill="#ED9F2D" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_218566" data-metro-map-node-id="323"> <circle cx="475" cy="1015" r="6" fill="#ED9F2D" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_218573" data-metro-map-node-id="324"> <circle cx="621" cy="51" r="6" fill="#ED9F2D" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_218541" data-metro-map-node-id="325"> <circle cx="152" cy="812" r="6" fill="#ED9F2D" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_218550" data-metro-map-node-id="326"> <circle cx="152" cy="756" r="6" fill="#ED9F2D" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_218555" data-metro-map-node-id="327"> <circle cx="152" cy="701" r="6" fill="#ED9F2D" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_218545" data-metro-map-node-id="328"> <circle cx="152" cy="645" r="6" fill="#ED9F2D" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_218562" data-metro-map-node-id="329"> <circle cx="152" cy="590" r="6" fill="#ED9F2D" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_218584" data-metro-map-node-id="330"> <circle cx="152" cy="536" r="6" fill="#ED9F2D" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_218430" data-metro-map-node-id="331"> <circle cx="1707" cy="1877" r="6" fill="#FF66E8" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_218623" data-metro-map-node-id="332"> <circle cx="1707" cy="1581" r="6" fill="#FF66E8" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_218622" data-metro-map-node-id="333"> <circle cx="1707" cy="1318" r="6" fill="#FF66E8" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_218621" data-metro-map-node-id="334"> <circle cx="1707" cy="1259" r="6" fill="#FF66E8" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_218618" data-metro-map-node-id="335"> <circle cx="1521" cy="927" r="6" fill="#FF66E8" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_218431" data-metro-map-node-id="336"> <circle cx="1707" cy="1936" r="6" fill="#FF66E8" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_218432" data-metro-map-node-id="337"> <circle cx="1707" cy="2035" r="6" fill="#FF66E8" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_transit_group MetroMap_to_152925"> <g class="MetroMap_stop MetroMap_transit" data-metro-map-node-id="338"> <circle cx="909" cy="358" r="6" fill="#ED9F2D" stroke="#fff" stroke-width="4" class="MetroMap_circle"></circle> </g> <g class="MetroMap_stop MetroMap_transit" data-metro-map-node-id="339"> <circle cx="942" cy="394" r="6" fill="#FFA8AF" stroke="#fff" stroke-width="4" class="MetroMap_circle"></circle> </g> <g class="MetroMap_stop MetroMap_transit" data-metro-map-node-id="340"> <circle cx="876" cy="358" r="6" fill="#69CD37" stroke="#fff" stroke-width="4" class="MetroMap_circle"></circle> </g> </g> <g class="MetroMap_stop MetroMap_to_152944" data-metro-map-node-id="341"> <circle cx="728" cy="1558" r="5" fill="#FFA8AF" stroke="#fff" stroke-width="2" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_152931" data-metro-map-node-id="342"> <circle cx="1521" cy="598" r="5" fill="#FFA8AF" stroke="#fff" stroke-width="2" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_152947" data-metro-map-node-id="343"> <circle cx="420" cy="1061" r="5" fill="#FFA8AF" stroke="#fff" stroke-width="2" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_152927" data-metro-map-node-id="344"> <circle cx="1257" cy="420" r="6" fill="#FFA8AF" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_152929" data-metro-map-node-id="345"> <circle cx="1382" cy="480" r="6" fill="#FFA8AF" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_152933" data-metro-map-node-id="346"> <circle cx="1641" cy="799" r="6" fill="#FFA8AF" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_transit_group MetroMap_to_152937"> <g class="MetroMap_stop MetroMap_transit" data-metro-map-node-id="347"> <circle cx="1647" cy="1212" r="5" fill="#FFA8AF" stroke="#fff" stroke-width="2" class="MetroMap_circle"></circle> </g> <g class="MetroMap_stop MetroMap_transit" data-metro-map-node-id="348"> <circle cx="1620" cy="1212" r="5" fill="#DF477C" stroke="#fff" stroke-width="2" class="MetroMap_circle"></circle> </g> </g> <g class="MetroMap_transit_group MetroMap_to_152936"> <g class="MetroMap_stop MetroMap_transit" data-metro-map-node-id="349"> <circle cx="1663" cy="1158" r="5" fill="#FFA8AF" stroke="#fff" stroke-width="2" class="MetroMap_circle"></circle> </g> <g class="MetroMap_stop MetroMap_transit" data-metro-map-node-id="350"> <circle cx="1706" cy="1158" r="5" fill="#FF66E8" stroke="#fff" stroke-width="2" class="MetroMap_circle"></circle> </g> </g> <g class="MetroMap_stop MetroMap_to_152938" data-metro-map-node-id="351"> <circle cx="1505" cy="1450" r="6" fill="#FFA8AF" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_152941" data-metro-map-node-id="352"> <circle cx="1142" cy="1638" r="6" fill="#FFA8AF" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_152943" data-metro-map-node-id="353"> <circle cx="897" cy="1626" r="6" fill="#FFA8AF" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_152919" data-metro-map-node-id="354"> <circle cx="462" cy="784" r="6" fill="#FFA8AF" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_152923" data-metro-map-node-id="355"> <circle cx="783" cy="443" r="6" fill="#FFA8AF" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_152932" data-metro-map-node-id="356"> <circle cx="1625" cy="759" r="6" fill="#FFA8AF" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_152942" data-metro-map-node-id="357"> <circle cx="1031" cy="1645" r="6" fill="#FFA8AF" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_152945" data-metro-map-node-id="358"> <circle cx="537" cy="1384" r="6" fill="#FFA8AF" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_transit_group MetroMap_to_152948"> <g class="MetroMap_stop MetroMap_transit" data-metro-map-node-id="359"> <circle cx="438" cy="930" r="5" fill="#FFE400" stroke="#fff" stroke-width="2" class="MetroMap_circle"></circle> </g> <g class="MetroMap_stop MetroMap_transit" data-metro-map-node-id="360"> <circle cx="448" cy="930" r="5" fill="#6FC1BA" stroke="#fff" stroke-width="2" class="MetroMap_circle"></circle> </g> <g class="MetroMap_stop MetroMap_transit" data-metro-map-node-id="361"> <circle cx="424" cy="930" r="5" fill="#FFA8AF" stroke="#fff" stroke-width="2" class="MetroMap_circle"></circle> </g> </g> <g class="MetroMap_stop MetroMap_to_152918" data-metro-map-node-id="362"> <circle cx="451" cy="815" r="6" fill="#FFA8AF" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_152924" data-metro-map-node-id="363"> <circle cx="833" cy="422" r="6" fill="#FFA8AF" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_152928" data-metro-map-node-id="364"> <circle cx="1322" cy="447" r="6" fill="#FFA8AF" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_transit_group MetroMap_to_152921"> <g class="MetroMap_stop MetroMap_transit" data-metro-map-node-id="365"> <circle cx="572" cy="601" r="5" fill="#FFA8AF" stroke="#fff" stroke-width="2" class="MetroMap_circle"></circle> </g> <g class="MetroMap_stop MetroMap_transit" data-metro-map-node-id="366"> <circle cx="572" cy="579" r="5" fill="#DF477C" stroke="#fff" stroke-width="2" class="MetroMap_circle"></circle> </g> </g> <g class="MetroMap_stop MetroMap_to_152922" data-metro-map-node-id="367"> <circle cx="712" cy="482" r="6" fill="#FFA8AF" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_152930" data-metro-map-node-id="368"> <circle cx="1463" cy="540" r="6" fill="#FFA8AF" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_152920" data-metro-map-node-id="369"> <circle cx="514" cy="681" r="6" fill="#FFA8AF" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_152940" data-metro-map-node-id="370"> <circle cx="1242" cy="1614" r="6" fill="#FFA8AF" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_152939" data-metro-map-node-id="371"> <circle cx="1400" cy="1538" r="6" fill="#FFA8AF" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_152934" data-metro-map-node-id="372"> <circle cx="1679" cy="1040" r="6" fill="#FFA8AF" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_152935" data-metro-map-node-id="373"> <circle cx="1672" cy="1108" r="6" fill="#FFA8AF" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20516" data-metro-map-node-id="374"> <circle cx="919" cy="2123" r="5" fill="#8DBECE" stroke="#fff" stroke-width="2" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_115084" data-metro-map-node-id="375"> <circle cx="733" cy="2024" r="5" fill="#8DBECE" stroke="#fff" stroke-width="2" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_115086" data-metro-map-node-id="376"> <circle cx="828" cy="2024" r="6" fill="#8DBECE" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20517" data-metro-map-node-id="377"> <circle cx="851" cy="2216" r="6" fill="#8DBECE" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20518" data-metro-map-node-id="378"> <circle cx="730" cy="2216" r="6" fill="#8DBECE" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20519" data-metro-map-node-id="379"> <circle cx="609" cy="2216" r="6" fill="#8DBECE" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20520" data-metro-map-node-id="380"> <circle cx="488" cy="2217" r="6" fill="#8DBECE" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20443" data-metro-map-node-id="381"> <circle cx="929" cy="1837" r="5" fill="#2CB2A7" stroke="#fff" stroke-width="2" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20425" data-metro-map-node-id="382"> <circle cx="1080" cy="1837" r="6" fill="#2CB2A7" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_115085" data-metro-map-node-id="383"> <circle cx="517" cy="1019" r="5" fill="#6FC1BA" stroke="#fff" stroke-width="2" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_218630" data-metro-map-node-id="384"> <circle cx="340" cy="865" r="6" fill="#6FC1BA" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_218629" data-metro-map-node-id="385"> <circle cx="401" cy="865" r="6" fill="#6FC1BA" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_transit_group MetroMap_to_189492"> <g class="MetroMap_stop MetroMap_transit" data-metro-map-node-id="386"> <circle cx="609" cy="728" r="5" fill="#6FC1BA" stroke="#fff" stroke-width="2" class="MetroMap_circle"></circle> </g> <g class="MetroMap_stop MetroMap_transit" data-metro-map-node-id="387"> <circle cx="602" cy="721" r="5" fill="#FFE400" stroke="#fff" stroke-width="2" class="MetroMap_circle"></circle> </g> </g> <g class="MetroMap_transit_group MetroMap_to_189451"> <g class="MetroMap_stop MetroMap_transit" data-metro-map-node-id="388"> <circle cx="645" cy="677" r="5" fill="#FFE400" stroke="#fff" stroke-width="2" class="MetroMap_circle"></circle> </g> <g class="MetroMap_stop MetroMap_transit" data-metro-map-node-id="389"> <circle cx="652" cy="684" r="5" fill="#6FC1BA" stroke="#fff" stroke-width="2" class="MetroMap_circle"></circle> </g> </g> <g class="MetroMap_stop MetroMap_to_20514" data-metro-map-node-id="390"> <circle cx="1500" cy="1065" r="5" fill="#69CD37" stroke="#fff" stroke-width="2" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20515" data-metro-map-node-id="391"> <circle cx="1368" cy="933" r="5" fill="#69CD37" stroke="#fff" stroke-width="2" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20565" data-metro-map-node-id="392"> <circle cx="1048" cy="793" r="5" fill="#69CD37" stroke="#fff" stroke-width="2" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20513" data-metro-map-node-id="393"> <circle cx="1484" cy="1260" r="5" fill="#69CD37" stroke="#fff" stroke-width="2" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20561" data-metro-map-node-id="394"> <circle cx="1428" cy="2058" r="5" fill="#69CD37" stroke="#fff" stroke-width="2" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20566" data-metro-map-node-id="395"> <circle cx="1214" cy="829" r="5" fill="#69CD37" stroke="#fff" stroke-width="2" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20562" data-metro-map-node-id="396"> <circle cx="1428" cy="1998" r="6" fill="#69CD37" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20559" data-metro-map-node-id="397"> <circle cx="1428" cy="1937" r="6" fill="#69CD37" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20415" data-metro-map-node-id="398"> <circle cx="1428" cy="1877" r="6" fill="#69CD37" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20414" data-metro-map-node-id="399"> <circle cx="1428" cy="1817" r="6" fill="#69CD37" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20413" data-metro-map-node-id="400"> <circle cx="1428" cy="1761" r="6" fill="#69CD37" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20412" data-metro-map-node-id="401"> <circle cx="1428" cy="1694" r="6" fill="#69CD37" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20411" data-metro-map-node-id="402"> <circle cx="1428" cy="1634" r="6" fill="#69CD37" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20410" data-metro-map-node-id="403"> <circle cx="1428" cy="1581" r="6" fill="#69CD37" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20409" data-metro-map-node-id="404"> <circle cx="1428" cy="1452" r="6" fill="#69CD37" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_153102" data-metro-map-node-id="405"> <circle cx="996" cy="464" r="6" fill="#69CD37" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20563" data-metro-map-node-id="406"> <circle cx="1048" cy="613" r="6" fill="#69CD37" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20567" data-metro-map-node-id="407"> <circle cx="1048" cy="548" r="6" fill="#69CD37" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_189450" data-metro-map-node-id="408"> <circle cx="876" cy="263" r="6" fill="#69CD37" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_189449" data-metro-map-node-id="409"> <circle cx="876" cy="214" r="6" fill="#69CD37" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_153101" data-metro-map-node-id="410"> <circle cx="1048" cy="516" r="6" fill="#69CD37" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_transit_group MetroMap_to_20376"> <g class="MetroMap_stop MetroMap_transit" data-metro-map-node-id="411"> <circle cx="948" cy="464" r="5" fill="#69CD37" stroke="#fff" stroke-width="2" class="MetroMap_circle"></circle> </g> <g class="MetroMap_stop MetroMap_transit" data-metro-map-node-id="412"> <circle cx="948" cy="440" r="5" fill="#909090" stroke="#fff" stroke-width="2" class="MetroMap_circle"></circle> </g> </g> <g class="MetroMap_stop MetroMap_to_20506" data-metro-map-node-id="413"> <circle cx="951" cy="956" r="5" fill="#909090" stroke="#fff" stroke-width="2" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20507" data-metro-map-node-id="414"> <circle cx="874" cy="1128" r="5" fill="#909090" stroke="#fff" stroke-width="2" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20446" data-metro-map-node-id="415"> <circle cx="949" cy="1857" r="5" fill="#909090" stroke="#fff" stroke-width="2" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20448" data-metro-map-node-id="416"> <circle cx="949" cy="2123" r="5" fill="#909090" stroke="#fff" stroke-width="2" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20505" data-metro-map-node-id="417"> <circle cx="1026" cy="805" r="5" fill="#909090" stroke="#fff" stroke-width="2" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_transit_group MetroMap_to_20381"> <g class="MetroMap_stop MetroMap_transit" data-metro-map-node-id="418"> <circle cx="1051" cy="360" r="5" fill="#909090" stroke="#fff" stroke-width="2" class="MetroMap_circle"></circle> </g> <g class="MetroMap_stop MetroMap_transit" data-metro-map-node-id="419"> <circle cx="1051" cy="387" r="5" fill="#FFA8AF" stroke="#fff" stroke-width="2" class="MetroMap_circle"></circle> </g> </g> <g class="MetroMap_stop MetroMap_to_20509" data-metro-map-node-id="420"> <circle r="5" transform="matrix(-1 0 0 1 949 1387)" fill="#909090" stroke="#fff" stroke-width="2" class="MetroMap_circle"></circle> </g> <g class="MetroMap_stop MetroMap_to_20432" data-metro-map-node-id="421"> <circle cx="949" cy="2072" r="6" fill="#909090" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20431" data-metro-map-node-id="422"> <circle cx="949" cy="2019" r="6" fill="#909090" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20430" data-metro-map-node-id="423"> <circle cx="949" cy="1970" r="6" fill="#909090" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20429" data-metro-map-node-id="424"> <circle cx="949" cy="1932" r="6" fill="#909090" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20447" data-metro-map-node-id="425"> <circle cx="949" cy="1894" r="6" fill="#909090" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20445" data-metro-map-node-id="426"> <circle cx="949" cy="1757" r="6" fill="#909090" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_transit_group MetroMap_to_20377"> <g class="MetroMap_stop MetroMap_transit" data-metro-map-node-id="427"> <circle cx="879" cy="511" r="6" fill="#909090" stroke="#fff" stroke-width="4" class="MetroMap_circle"></circle> </g> <g class="MetroMap_stop MetroMap_transit" data-metro-map-node-id="428"> <circle cx="909" cy="511" r="6" fill="#ED9F2D" stroke="#fff" stroke-width="4" class="MetroMap_circle"></circle> </g> </g> <g class="MetroMap_transit_group MetroMap_to_20382"> <g class="MetroMap_stop MetroMap_transit" data-metro-map-node-id="429"> <circle cx="879" cy="553" r="6" fill="#909090" stroke="#fff" stroke-width="4" class="MetroMap_circle"></circle> </g> <g class="MetroMap_stop MetroMap_transit" data-metro-map-node-id="430"> <circle cx="854" cy="579" r="6" fill="#DF477C" stroke="#fff" stroke-width="4" class="MetroMap_circle"></circle> </g> </g> <g class="MetroMap_stop MetroMap_to_20427" data-metro-map-node-id="431"> <circle cx="949" cy="1667" r="6" fill="#909090" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20426" data-metro-map-node-id="432"> <circle cx="949" cy="1494" r="6" fill="#909090" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20428" data-metro-map-node-id="433"> <circle cx="949" cy="1712" r="6" fill="#909090" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20508" data-metro-map-node-id="434"> <circle cx="949" cy="1306" r="6" fill="#909090" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20380" data-metro-map-node-id="435"> <circle cx="1051" cy="311" r="6" fill="#909090" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20379" data-metro-map-node-id="436"> <circle cx="1051" cy="264" r="6" fill="#909090" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20378" data-metro-map-node-id="437"> <circle cx="1051" cy="214" r="6" fill="#909090" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20504" data-metro-map-node-id="438"> <circle cx="935" cy="702" r="5" fill="#909090" stroke="#fff" stroke-width="2" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_163517" data-metro-map-node-id="439"> <circle cx="285" cy="1366" r="6" fill="#FFE400" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_163520" data-metro-map-node-id="440"> <circle cx="285" cy="1419" r="6" fill="#FFE400" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_163522" data-metro-map-node-id="441"> <circle cx="285" cy="1471" r="6" fill="#FFE400" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_190113" data-metro-map-node-id="442"> <circle cx="285" cy="1524" r="6" fill="#FFE400" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_190114" data-metro-map-node-id="443"> <circle cx="285" cy="1576" r="6" fill="#FFE400" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_190115" data-metro-map-node-id="444"> <circle cx="285" cy="1629" r="6" fill="#FFE400" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_190116" data-metro-map-node-id="445"> <circle cx="285" cy="1681" r="6" fill="#FFE400" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_190117" data-metro-map-node-id="446"> <circle cx="285" cy="1734" r="6" fill="#FFE400" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_190119" data-metro-map-node-id="447"> <circle cx="285" cy="1786" r="6" fill="#FFE400" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_190121" data-metro-map-node-id="448"> <circle cx="285" cy="1839" r="6" fill="#FFE400" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_transit_group MetroMap_to_20383"> <g class="MetroMap_stop MetroMap_transit" data-metro-map-node-id="449"> <circle cx="863" cy="613" r="5" fill="#909090" stroke="#fff" stroke-width="2" class="MetroMap_circle"></circle> </g> <g class="MetroMap_stop MetroMap_transit" data-metro-map-node-id="450"> <circle cx="848" cy="613" r="5" fill="#FFE400" stroke="#fff" stroke-width="2" class="MetroMap_circle"></circle> </g> <g class="MetroMap_stop MetroMap_transit" data-metro-map-node-id="451"> <circle cx="833" cy="613" r="5" fill="#6FC1BA" stroke="#fff" stroke-width="2" class="MetroMap_circle"></circle> </g> <g class="MetroMap_stop MetroMap_transit" data-metro-map-node-id="452"> <circle cx="895" cy="613" r="6" fill="#ED9F2D" stroke="#fff" stroke-width="4" class="MetroMap_circle"></circle> </g> </g> <g class="MetroMap_transit_group MetroMap_to_189452"> <g class="MetroMap_stop MetroMap_transit" data-metro-map-node-id="453"> <circle cx="508" cy="815" r="5" fill="#FFE400" stroke="#fff" stroke-width="2" class="MetroMap_circle"></circle> </g> <g class="MetroMap_stop MetroMap_transit" data-metro-map-node-id="454"> <circle cx="508" cy="828" r="5" fill="#6FC1BA" stroke="#fff" stroke-width="2" class="MetroMap_circle"></circle> </g> </g> <g class="MetroMap_stop MetroMap_to_20476" data-metro-map-node-id="455"> <circle cx="1528" cy="1065" r="5" fill="#FFE400" stroke="#fff" stroke-width="2" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20477" data-metro-map-node-id="456"> <circle cx="1403" cy="1189" r="5" fill="#FFE400" stroke="#fff" stroke-width="2" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20392" data-metro-map-node-id="457"> <circle cx="1643" cy="949" r="6" fill="#FFE400" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20391" data-metro-map-node-id="458"> <circle cx="1700" cy="892" r="6" fill="#FFE400" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_transit_group MetroMap_to_20408"> <g class="MetroMap_stop MetroMap_transit" data-metro-map-node-id="459"> <circle cx="1613" cy="978" r="5" fill="#FFE400" stroke="#fff" stroke-width="2" class="MetroMap_circle"></circle> </g> <g class="MetroMap_stop MetroMap_transit" data-metro-map-node-id="460"> <circle cx="1613" cy="1015" r="5" fill="#FF66E8" stroke="#fff" stroke-width="2" class="MetroMap_circle"></circle> </g> </g> <g class="MetroMap_stop MetroMap_to_20390" data-metro-map-node-id="461"> <circle cx="1734" cy="858" r="6" fill="#FFE400" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_114781" data-metro-map-node-id="462"> <circle cx="1768" cy="824" r="6" fill="#FFE400" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20501" data-metro-map-node-id="463"> <circle cx="938" cy="923" r="5" fill="#B1179A" stroke="#fff" stroke-width="2" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20503" data-metro-map-node-id="464"> <circle cx="1513" cy="1260" r="5" fill="#B1179A" stroke="#fff" stroke-width="2" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20500" data-metro-map-node-id="465"> <circle cx="727" cy="923" r="5" fill="#B1179A" stroke="#fff" stroke-width="2" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20502" data-metro-map-node-id="466"> <circle cx="1129" cy="923" r="5" fill="#B1179A" stroke="#fff" stroke-width="2" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_121428" data-metro-map-node-id="467"> <circle cx="1654" cy="2035" r="6" fill="#B1179A" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_115038" data-metro-map-node-id="468"> <circle cx="1654" cy="1936" r="6" fill="#B1179A" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20405" data-metro-map-node-id="469"> <circle cx="1686" cy="1435" r="6" fill="#B1179A" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20407" data-metro-map-node-id="470"> <circle cx="1573" cy="1320" r="6" fill="#B1179A" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20499" data-metro-map-node-id="471"> <circle cx="628" cy="913" r="6" fill="#B1179A" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20368" data-metro-map-node-id="472"> <circle cx="443" cy="663" r="6" fill="#B1179A" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20374" data-metro-map-node-id="473"> <circle cx="508" cy="792" r="5" fill="#B1179A" stroke="#fff" stroke-width="2" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_transit_group MetroMap_to_20366"> <g class="MetroMap_stop MetroMap_transit" data-metro-map-node-id="474"> <circle cx="443" cy="444" r="6" fill="#B1179A" stroke="#fff" stroke-width="4" class="MetroMap_circle"></circle> </g> <g class="MetroMap_stop MetroMap_transit" data-metro-map-node-id="475"> <circle cx="472" cy="473" r="6" fill="#DF477C" stroke="#fff" stroke-width="4" class="MetroMap_circle"></circle> </g> </g> <g class="MetroMap_transit_group MetroMap_to_20375"> <g class="MetroMap_stop MetroMap_transit" data-metro-map-node-id="476"> <circle cx="587" cy="872" r="5" fill="#B1179A" stroke="#fff" stroke-width="2" class="MetroMap_circle"></circle> </g> <g class="MetroMap_stop MetroMap_transit" data-metro-map-node-id="477"> <circle cx="626" cy="872" r="5" fill="#ED9F2D" stroke="#fff" stroke-width="2" class="MetroMap_circle"></circle> </g> </g> <g class="MetroMap_stop MetroMap_to_20403" data-metro-map-node-id="478"> <circle cx="1746" cy="1581" r="6" fill="#B1179A" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_218429" data-metro-map-node-id="479"> <circle cx="1708" cy="1686" r="5" fill="#FF66E8" stroke="#fff" stroke-width="2" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_115040" data-metro-map-node-id="480"> <circle cx="1746" cy="1686" r="5" fill="#B1179A" stroke="#fff" stroke-width="2" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20404" data-metro-map-node-id="481"> <circle cx="1745" cy="1497" r="6" fill="#B1179A" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_transit_group MetroMap_to_20406"> <g class="MetroMap_stop MetroMap_transit" data-metro-map-node-id="482"> <circle cx="1648" cy="1395" r="5" fill="#B1179A" stroke="#fff" stroke-width="2" class="MetroMap_circle"></circle> </g> <g class="MetroMap_stop MetroMap_transit" data-metro-map-node-id="483"> <circle cx="1620" cy="1395" r="5" fill="#DF477C" stroke="#fff" stroke-width="2" class="MetroMap_circle"></circle> </g> </g> <g class="MetroMap_stop MetroMap_to_20367" data-metro-map-node-id="484"> <circle cx="443" cy="604" r="6" fill="#B1179A" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_115791" data-metro-map-node-id="485"> <circle cx="443" cy="531" r="6" fill="#B1179A" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20365" data-metro-map-node-id="486"> <circle cx="443" cy="394" r="6" fill="#B1179A" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20364" data-metro-map-node-id="487"> <circle cx="443" cy="334" r="6" fill="#B1179A" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20442" data-metro-map-node-id="488"> <circle cx="733" cy="1996" r="5" fill="#FF8103" stroke="#fff" stroke-width="2" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20441" data-metro-map-node-id="489"> <circle cx="709" cy="1943" r="6" fill="#FF8103" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20440" data-metro-map-node-id="490"> <circle cx="709" cy="1898" r="6" fill="#FF8103" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20439" data-metro-map-node-id="491"> <circle cx="709" cy="1853" r="6" fill="#FF8103" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20438" data-metro-map-node-id="492"> <circle cx="709" cy="1808" r="6" fill="#FF8103" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20437" data-metro-map-node-id="493"> <circle cx="709" cy="1762" r="6" fill="#FF8103" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20436" data-metro-map-node-id="494"> <circle cx="709" cy="1717" r="6" fill="#FF8103" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20435" data-metro-map-node-id="495"> <circle cx="709" cy="1672" r="6" fill="#FF8103" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20434" data-metro-map-node-id="496"> <circle cx="709" cy="1627" r="6" fill="#FF8103" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20433" data-metro-map-node-id="497"> <circle cx="709" cy="1539" r="5" fill="#FF8103" stroke="#fff" stroke-width="2" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20416" data-metro-map-node-id="498"> <circle cx="780" cy="1394" r="6" fill="#FF8103" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_transit_group MetroMap_to_20468"> <g class="MetroMap_stop MetroMap_transit" data-metro-map-node-id="499"> <circle cx="1171" cy="1236" r="5" fill="#FFE400" stroke="#fff" stroke-width="2" class="MetroMap_circle"></circle> </g> <g class="MetroMap_stop MetroMap_transit" data-metro-map-node-id="500"> <circle cx="1162" cy="1210" r="5" fill="#FF8103" stroke="#fff" stroke-width="2" class="MetroMap_circle"></circle> </g> </g> <g class="MetroMap_transit_group MetroMap_to_20467"> <g class="MetroMap_stop MetroMap_transit" data-metro-map-node-id="501"> <circle cx="1228" cy="998" r="5" fill="#FF8103" stroke="#fff" stroke-width="2" class="MetroMap_circle"></circle> </g> <g class="MetroMap_stop MetroMap_transit" data-metro-map-node-id="502"> <circle cx="1250" cy="998" r="5" fill="#B1179A" stroke="#fff" stroke-width="2" class="MetroMap_circle"></circle> </g> </g> <g class="MetroMap_stop MetroMap_to_20466" data-metro-map-node-id="503"> <circle cx="1194" cy="855" r="5" fill="#FF8103" stroke="#fff" stroke-width="2" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20465" data-metro-map-node-id="504"> <circle cx="1145" cy="746" r="6" fill="#FF8103" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_transit_group MetroMap_to_20464"> <g class="MetroMap_stop MetroMap_transit" data-metro-map-node-id="505"> <circle cx="1192" cy="676" r="5" fill="#794835" stroke="#fff" stroke-width="2" class="MetroMap_circle"></circle> </g> <g class="MetroMap_stop MetroMap_transit" data-metro-map-node-id="506"> <circle cx="1192" cy="652" r="5" fill="#FF8103" stroke="#fff" stroke-width="2" class="MetroMap_circle"></circle> </g> </g> <g class="MetroMap_transit_group MetroMap_to_20463"> <g class="MetroMap_stop MetroMap_transit" data-metro-map-node-id="507"> <circle cx="1262" cy="596" r="6" fill="#FF8103" stroke="#fff" stroke-width="4" class="MetroMap_circle"></circle> </g> <g class="MetroMap_stop MetroMap_transit" data-metro-map-node-id="508"> <circle cx="1196" cy="596" r="6" fill="#DF477C" stroke="#fff" stroke-width="4" class="MetroMap_circle"></circle> </g> </g> <g class="MetroMap_stop MetroMap_to_20389" data-metro-map-node-id="509"> <circle cx="1285" cy="497" r="6" fill="#FF8103" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20384" data-metro-map-node-id="510"> <circle cx="1285" cy="460" r="6" fill="#FF8103" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20388" data-metro-map-node-id="511"> <circle cx="1285" cy="391" r="6" fill="#FF8103" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20387" data-metro-map-node-id="512"> <circle cx="1285" cy="345" r="6" fill="#FF8103" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20386" data-metro-map-node-id="513"> <circle cx="1285" cy="300" r="6" fill="#FF8103" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20385" data-metro-map-node-id="514"> <circle cx="1285" cy="254" r="6" fill="#FF8103" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20512" data-metro-map-node-id="515"> <circle cx="935" cy="668" r="5" fill="#794835" stroke="#fff" stroke-width="2" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_transit_group MetroMap_to_20498"> <g class="MetroMap_stop MetroMap_transit" data-metro-map-node-id="516"> <circle cx="1380" cy="1167" r="5" fill="#794835" stroke="#fff" stroke-width="2" class="MetroMap_circle"></circle> </g> <g class="MetroMap_stop MetroMap_transit" data-metro-map-node-id="517"> <circle cx="1406" cy="1154" r="5" fill="#B1179A" stroke="#fff" stroke-width="2" class="MetroMap_circle"></circle> </g> </g> <g class="MetroMap_stop MetroMap_to_20510" data-metro-map-node-id="518"> <circle r="5" transform="matrix(-1 0 0 1 966 1371)" fill="#794835" stroke="#fff" stroke-width="2" class="MetroMap_circle"></circle> </g> <g class="MetroMap_transit_group MetroMap_to_20469"> <g class="MetroMap_stop MetroMap_transit" data-metro-map-node-id="519"> <circle cx="839" cy="1335" r="5" fill="#FF8103" stroke="#fff" stroke-width="2" class="MetroMap_circle"></circle> </g> <g class="MetroMap_stop MetroMap_transit" data-metro-map-node-id="520"> <circle cx="839" cy="1314" r="5" fill="#794835" stroke="#fff" stroke-width="2" class="MetroMap_circle"></circle> </g> </g> <g class="MetroMap_stop MetroMap_to_20511" data-metro-map-node-id="521"> <circle cx="695" cy="923" r="5" fill="#794835" stroke="#fff" stroke-width="2" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_98560" data-metro-map-node-id="522"> <circle cx="398" cy="1040" r="5" fill="#099DD4" stroke="#fff" stroke-width="2" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_98559" data-metro-map-node-id="523"> <circle cx="517" cy="1040" r="5" fill="#099DD4" stroke="#fff" stroke-width="2" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20497" data-metro-map-node-id="524"> <circle cx="908" cy="1121" r="5" fill="#099DD4" stroke="#fff" stroke-width="2" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20481" data-metro-map-node-id="525"> <circle cx="839" cy="1051" r="6" fill="#099DD4" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20482" data-metro-map-node-id="526"> <circle cx="759" cy="1040" r="6" fill="#099DD4" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_transit_group MetroMap_to_20449"> <g class="MetroMap_stop MetroMap_transit" data-metro-map-node-id="527"> <circle cx="661" cy="1040" r="5" fill="#099DD4" stroke="#fff" stroke-width="2" class="MetroMap_circle"></circle> </g> <g class="MetroMap_stop MetroMap_transit" data-metro-map-node-id="528"> <circle cx="686.68" cy="1066" r="5" fill="#794835" stroke="#fff" stroke-width="2" class="MetroMap_circle"></circle> </g> <g class="MetroMap_stop MetroMap_transit" data-metro-map-node-id="529"> <circle cx="661" cy="1092" r="5" fill="#0042A5" stroke="#fff" stroke-width="2" class="MetroMap_circle"></circle> </g> </g> <g class="MetroMap_stop MetroMap_to_20461" data-metro-map-node-id="530"> <circle cx="487" cy="1162" r="6" fill="#099DD4" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_transit_group MetroMap_to_20460"> <g class="MetroMap_stop MetroMap_transit" data-metro-map-node-id="531"> <circle cx="440" cy="1209" r="5" fill="#099DD4" stroke="#fff" stroke-width="2" class="MetroMap_circle"></circle> </g> <g class="MetroMap_stop MetroMap_transit" data-metro-map-node-id="532"> <circle cx="440" cy="1180" r="5" fill="#FFA8AF" stroke="#fff" stroke-width="2" class="MetroMap_circle"></circle> </g> </g> <g class="MetroMap_transit_group MetroMap_to_20459"> <g class="MetroMap_stop MetroMap_transit" data-metro-map-node-id="533"> <circle cx="234" cy="1188" r="6" fill="#099DD4" stroke="#fff" stroke-width="4" class="MetroMap_circle"></circle> </g> <g class="MetroMap_stop MetroMap_transit" data-metro-map-node-id="534"> <circle cx="277" cy="1206" r="6" fill="#ED9F2D" stroke="#fff" stroke-width="4" class="MetroMap_circle"></circle> </g> </g> <g class="MetroMap_stop MetroMap_to_20458" data-metro-map-node-id="535"> <circle cx="234" cy="1132" r="6" fill="#099DD4" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20457" data-metro-map-node-id="536"> <circle cx="234" cy="978" r="6" fill="#099DD4" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20456" data-metro-map-node-id="537"> <circle cx="234" cy="938" r="6" fill="#099DD4" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20393" data-metro-map-node-id="538"> <circle cx="1667" cy="480" r="6" fill="#0042A5" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20394" data-metro-map-node-id="539"> <circle cx="1667" cy="558" r="6" fill="#0042A5" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20395" data-metro-map-node-id="540"> <circle cx="1667" cy="635" r="6" fill="#0042A5" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20396" data-metro-map-node-id="541"> <circle cx="1632" cy="708" r="6" fill="#0042A5" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20397" data-metro-map-node-id="542"> <circle cx="1535" cy="806" r="6" fill="#0042A5" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20398" data-metro-map-node-id="543"> <circle cx="1497" cy="843" r="6" fill="#0042A5" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20478" data-metro-map-node-id="544"> <circle cx="1459" cy="881" r="6" fill="#0042A5" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_transit_group MetroMap_to_20479"> <g class="MetroMap_stop MetroMap_transit" data-metro-map-node-id="545"> <circle cx="1399" cy="915" r="5" fill="#794835" stroke="#fff" stroke-width="2" class="MetroMap_circle"></circle> </g> <g class="MetroMap_stop MetroMap_transit" data-metro-map-node-id="546"> <circle cx="1393" cy="947" r="5" fill="#0042A5" stroke="#fff" stroke-width="2" class="MetroMap_circle"></circle> </g> <g class="MetroMap_stop MetroMap_transit" data-metro-map-node-id="547"> <circle cx="1421" cy="894" r="5" fill="#DF477C" stroke="#fff" stroke-width="2" class="MetroMap_circle"></circle> </g> </g> <g class="MetroMap_stop MetroMap_to_20480" data-metro-map-node-id="548"> <circle cx="1089" cy="1092" r="5" fill="#0042A5" stroke="#fff" stroke-width="2" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20496" data-metro-map-node-id="549"> <circle cx="910" cy="1092" r="5" fill="#0042A5" stroke="#fff" stroke-width="2" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20495" data-metro-map-node-id="550"> <circle cx="759" cy="1092" r="6" fill="#0042A5" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_transit_group MetroMap_to_20450"> <g class="MetroMap_stop MetroMap_transit" data-metro-map-node-id="551"> <circle cx="302" cy="1279" r="5" fill="#0042A5" stroke="#fff" stroke-width="2" class="MetroMap_circle"></circle> </g> <g class="MetroMap_stop MetroMap_transit" data-metro-map-node-id="552"> <circle cx="285" cy="1296" r="5" fill="#FFE400" stroke="#fff" stroke-width="2" class="MetroMap_circle"></circle> </g> </g> <g class="MetroMap_stop MetroMap_to_98561" data-metro-map-node-id="553"> <circle cx="242" cy="1279" r="6" fill="#0042A5" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_transit_group MetroMap_to_20455"> <g class="MetroMap_stop MetroMap_transit" data-metro-map-node-id="554"> <circle cx="218" cy="868" r="5" fill="#0042A5" stroke="#fff" stroke-width="2" class="MetroMap_circle"></circle> </g> <g class="MetroMap_stop MetroMap_transit" data-metro-map-node-id="555"> <circle cx="234" cy="889" r="5" fill="#099DD4" stroke="#fff" stroke-width="2" class="MetroMap_circle"></circle> </g> <g class="MetroMap_stop MetroMap_transit" data-metro-map-node-id="556"> <circle cx="152" cy="866" r="6" fill="#ED9F2D" stroke="#fff" stroke-width="4" class="MetroMap_circle"></circle> </g> </g> <g class="MetroMap_stop MetroMap_to_20454" data-metro-map-node-id="557"> <circle cx="221" cy="756" r="6" fill="#0042A5" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20453" data-metro-map-node-id="558"> <circle cx="221" cy="692" r="6" fill="#0042A5" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20568" data-metro-map-node-id="559"> <circle cx="221" cy="629" r="6" fill="#0042A5" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_109160" data-metro-map-node-id="560"> <circle cx="221" cy="565" r="6" fill="#0042A5" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_transit_group MetroMap_to_20570"> <g class="MetroMap_stop MetroMap_transit" data-metro-map-node-id="561"> <circle cx="221" cy="505" r="6" fill="#0042A5" stroke="#fff" stroke-width="4" class="MetroMap_circle"></circle> </g> <g class="MetroMap_stop MetroMap_transit" data-metro-map-node-id="562"> <circle cx="250" cy="472" r="6" fill="#DF477C" stroke="#fff" stroke-width="4" class="MetroMap_circle"></circle> </g> </g> <g class="MetroMap_stop MetroMap_to_20569" data-metro-map-node-id="563"> <circle cx="221" cy="396" r="6" fill="#0042A5" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_114837" data-metro-map-node-id="564"> <circle cx="221" cy="339" r="6" fill="#0042A5" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_114836 MetroMap_selected" data-metro-map-node-id="565"> <circle cx="1536" cy="2082" r="6" fill="#4F8242" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20424 MetroMap_selected" data-metro-map-node-id="566"> <circle cx="1428" cy="2082" r="5" fill="#4F8242" stroke="#fff" stroke-width="2" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20423 MetroMap_selected" data-metro-map-node-id="567"> <circle cx="1275" cy="1997" r="6" fill="#4F8242" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20422 MetroMap_selected" data-metro-map-node-id="568"> <circle cx="1216" cy="1937" r="6" fill="#4F8242" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_transit_group MetroMap_to_20421"> <g class="MetroMap_stop MetroMap_transit MetroMap_selected" data-metro-map-node-id="569"> <circle cx="1187" cy="1907" r="5" fill="#4F8242" stroke="#fff" stroke-width="2" class="MetroMap_circle"></circle> </g> <g class="MetroMap_stop MetroMap_transit MetroMap_selected" data-metro-map-node-id="570"> <circle cx="1159" cy="1907" r="5" fill="#DF477C" stroke="#fff" stroke-width="2" class="MetroMap_circle"></circle> </g> </g> <g class="MetroMap_stop MetroMap_to_20420 MetroMap_selected" data-metro-map-node-id="571"> <circle cx="1188" cy="1847" r="6" fill="#4F8242" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_transit_group MetroMap_to_20419"> <g class="MetroMap_stop MetroMap_transit MetroMap_selected" data-metro-map-node-id="572"> <circle cx="1208" cy="1808" r="5" fill="#2CB2A7" stroke="#fff" stroke-width="2" class="MetroMap_circle"></circle> </g> <g class="MetroMap_stop MetroMap_transit MetroMap_selected" data-metro-map-node-id="573"> <circle cx="1188" cy="1788" r="5" fill="#4F8242" stroke="#fff" stroke-width="2" class="MetroMap_circle"></circle> </g> </g> <g class="MetroMap_stop MetroMap_to_20418 MetroMap_selected" data-metro-map-node-id="574"> <circle cx="1188" cy="1732" r="6" fill="#4F8242" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_123593 MetroMap_selected" data-metro-map-node-id="575"> <circle cx="1188" cy="1663" r="6" fill="#4F8242" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20417 MetroMap_selected" data-metro-map-node-id="576"> <circle cx="1188" cy="1568" r="6" fill="#4F8242" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_transit_group MetroMap_to_20475"> <g class="MetroMap_stop MetroMap_transit MetroMap_selected" data-metro-map-node-id="577"> <circle cx="1204" cy="1345" r="5" fill="#794835" stroke="#fff" stroke-width="2" class="MetroMap_circle"></circle> </g> <g class="MetroMap_stop MetroMap_transit MetroMap_selected" data-metro-map-node-id="578"> <circle cx="1188" cy="1372" r="5" fill="#4F8242" stroke="#fff" stroke-width="2" class="MetroMap_circle"></circle> </g> </g> <g class="MetroMap_stop MetroMap_to_20474 MetroMap_selected" data-metro-map-node-id="579"> <circle cx="1188" cy="1217" r="5" fill="#4F8242" stroke="#fff" stroke-width="2" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20473 MetroMap_selected" data-metro-map-node-id="580"> <circle cx="1060" cy="1066" r="5" fill="#4F8242" stroke="#fff" stroke-width="2" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20472 MetroMap_selected" data-metro-map-node-id="581"> <circle cx="925" cy="956" r="5" fill="#4F8242" stroke="#fff" stroke-width="2" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20471 MetroMap_selected" data-metro-map-node-id="582"> <circle cx="810" cy="840" r="6" fill="#4F8242" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_transit_group MetroMap_to_20470"> <g class="MetroMap_stop MetroMap_transit MetroMap_selected" data-metro-map-node-id="583"> <circle cx="774" cy="774" r="5" fill="#794835" stroke="#fff" stroke-width="2" class="MetroMap_circle"></circle> </g> <g class="MetroMap_stop MetroMap_transit MetroMap_selected" data-metro-map-node-id="584"> <circle cx="774" cy="805" r="5" fill="#4F8242" stroke="#fff" stroke-width="2" class="MetroMap_circle"></circle> </g> <g class="MetroMap_stop MetroMap_transit MetroMap_selected" data-metro-map-node-id="585"> <circle cx="774" cy="728" r="6" fill="#ED9F2D" stroke="#fff" stroke-width="4" class="MetroMap_circle"></circle> </g> </g> <g class="MetroMap_stop MetroMap_to_20558 MetroMap_selected" data-metro-map-node-id="586"> <circle cx="674" cy="705" r="5" fill="#4F8242" stroke="#fff" stroke-width="2" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20373 MetroMap_selected" data-metro-map-node-id="587"> <circle cx="616" cy="646" r="6" fill="#4F8242" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20372 MetroMap_selected" data-metro-map-node-id="588"> <circle cx="608" cy="604" r="6" fill="#4F8242" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20371 MetroMap_selected" data-metro-map-node-id="589"> <circle cx="608" cy="456" r="6" fill="#4F8242" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20370 MetroMap_selected" data-metro-map-node-id="590"> <circle cx="608" cy="395" r="6" fill="#4F8242" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20369 MetroMap_selected" data-metro-map-node-id="591"> <circle cx="608" cy="335" r="6" fill="#4F8242" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_215102 MetroMap_selected" data-metro-map-node-id="592"> <circle cx="608" cy="274" r="6" fill="#4F8242" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_187151 MetroMap_selected" data-metro-map-node-id="593"> <circle cx="608" cy="214" r="6" fill="#4F8242" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20399" data-metro-map-node-id="594"> <circle cx="1515" cy="536" r="6" fill="#E4402D" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20400" data-metro-map-node-id="595"> <circle cx="1491" cy="598" r="5" fill="#E4402D" stroke="#fff" stroke-width="2" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20401" data-metro-map-node-id="596"> <circle cx="1444" cy="645" r="6" fill="#E4402D" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20402" data-metro-map-node-id="597"> <circle cx="1412" cy="677" r="6" fill="#E4402D" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20483" data-metro-map-node-id="598"> <circle cx="1380" cy="709" r="6" fill="#E4402D" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_transit_group MetroMap_to_20484"> <g class="MetroMap_stop MetroMap_transit" data-metro-map-node-id="599"> <circle cx="1331" cy="785" r="5" fill="#794835" stroke="#fff" stroke-width="2" class="MetroMap_circle"></circle> </g> <g class="MetroMap_stop MetroMap_transit" data-metro-map-node-id="600"> <circle cx="1331" cy="758" r="5" fill="#E4402D" stroke="#fff" stroke-width="2" class="MetroMap_circle"></circle> </g> </g> <g class="MetroMap_stop MetroMap_to_20485" data-metro-map-node-id="601"> <circle cx="1283" cy="805" r="6" fill="#E4402D" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20486" data-metro-map-node-id="602"> <circle cx="1233" cy="855" r="5" fill="#E4402D" stroke="#fff" stroke-width="2" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20487" data-metro-map-node-id="603"> <circle cx="1143" cy="945" r="5" fill="#E4402D" stroke="#fff" stroke-width="2" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20488" data-metro-map-node-id="604"> <circle cx="1040" cy="1048" r="5" fill="#E4402D" stroke="#fff" stroke-width="2" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20489" data-metro-map-node-id="605"> <circle cx="935" cy="1153" r="5" fill="#E4402D" stroke="#fff" stroke-width="2" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20494" data-metro-map-node-id="606"> <circle cx="840" cy="1201" r="6" fill="#E4402D" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_transit_group MetroMap_to_20490"> <g class="MetroMap_stop MetroMap_transit" data-metro-map-node-id="607"> <circle cx="724" cy="1183" r="5" fill="#794835" stroke="#fff" stroke-width="2" class="MetroMap_circle"></circle> </g> <g class="MetroMap_stop MetroMap_transit" data-metro-map-node-id="608"> <circle cx="724" cy="1201" r="5" fill="#E4402D" stroke="#fff" stroke-width="2" class="MetroMap_circle"></circle> </g> </g> <g class="MetroMap_stop MetroMap_to_20491" data-metro-map-node-id="609"> <circle cx="615" cy="1255" r="6" fill="#E4402D" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20492" data-metro-map-node-id="610"> <circle cx="537" cy="1333" r="6" fill="#E4402D" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20493" data-metro-map-node-id="611"> <circle cx="496" cy="1451" r="6" fill="#E4402D" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20444" data-metro-map-node-id="612"> <circle cx="496" cy="1508" r="6" fill="#E4402D" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20451" data-metro-map-node-id="613"> <circle cx="496" cy="1565" r="6" fill="#E4402D" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_20452" data-metro-map-node-id="614"> <circle cx="496" cy="1617" r="6" fill="#E4402D" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_116268" data-metro-map-node-id="615"> <circle cx="496" cy="1669" r="6" fill="#E4402D" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_144612" data-metro-map-node-id="616"> <circle cx="496" cy="1721" r="6" fill="#E4402D" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_144826" data-metro-map-node-id="617"> <circle cx="496" cy="1773" r="6" fill="#E4402D" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_218467" data-metro-map-node-id="618"> <circle cx="496" cy="1825" r="6" fill="#E4402D" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_218466" data-metro-map-node-id="619"> <circle cx="496" cy="1877" r="6" fill="#E4402D" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_218465" data-metro-map-node-id="620"> <circle cx="496" cy="1929" r="6" fill="#E4402D" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> <g class="MetroMap_stop MetroMap_to_218464" data-metro-map-node-id="621"> <circle cx="496" cy="1981" r="6" fill="#E4402D" stroke="#fff" stroke-width="4" class="MetroMap_circle"> </circle> </g> </g> </g> <defs> <clipPath id="clip0"> <path fill="#fff" transform="translate(1691 2064.94)" d="M0 0h32v33H0z"></path> </clipPath> <clipPath id="clip1"> <path fill="#fff" transform="translate(1306 1298.9)" d="M0 0h32v32.395H0z"></path> </clipPath> <clipPath id="clip2"> <path fill="#fff" transform="translate(1655 786)" d="M0 0h91v42H0z"></path> </clipPath> <clipPath id="clip3"> <path fill="#fff" transform="translate(1685 1098)" d="M0 0h101v22H0z"></path> </clipPath> <clipPath id="clip4"> <path fill="#fff" transform="translate(980 1608)" d="M0 0h123v22H0z"></path> </clipPath> <clipPath id="clip5"> <path fill="#fff" transform="translate(798 444)" d="M0 0h71v22H0z"></path> </clipPath> <clipPath id="clip6"> <path fill="#fff" transform="translate(637 2036)" d="M0 0h138v22H0z"></path> </clipPath> <clipPath id="clip7"> <path fill="#fff" transform="translate(622 726)" d="M0 0h53v22H0z"></path> </clipPath> <clipPath id="clip8"> <path fill="#fff" transform="translate(668 655)" d="M0 0h140v22H0z"></path> </clipPath> <clipPath id="clip9"> <path fill="#fff" transform="translate(524 1003)" d="M0 0h124v22H0z"></path> </clipPath> <clipPath id="clip10"> <path fill="#fff" transform="translate(348 878)" d="M0 0h171v23H0z"></path> </clipPath> <clipPath id="clip11"> <path fill="#fff" transform="translate(1444 1987)" d="M0 0h115v22H0z"></path> </clipPath> <clipPath id="clip12"> <path fill="#fff" transform="translate(1444 1866)" d="M0 0h79v22H0z"></path> </clipPath> <clipPath id="clip13"> <path fill="#fff" transform="translate(1444 1806)" d="M0 0h123v22H0z"></path> </clipPath> <clipPath id="clip14"> <path fill="#fff" transform="translate(1445 1752)" d="M0 0h80v22H0z"></path> </clipPath> <clipPath id="clip15"> <path fill="#fff" transform="translate(1444 1683)" d="M0 0h85v22H0z"></path> </clipPath> <clipPath id="clip16"> <path fill="#fff" transform="translate(1444 1623)" d="M0 0h92v22H0z"></path> </clipPath> <clipPath id="clip17"> <path fill="#fff" transform="translate(1444 1570)" d="M0 0h109v22H0z"></path> </clipPath> <clipPath id="clip18"> <path fill="#fff" transform="translate(1259 922)" d="M0 0h97v22H0z"></path> </clipPath> <clipPath id="clip19"> <path fill="#fff" transform="translate(1169 774)" d="M0 0h98v42H0z"></path> </clipPath> <clipPath id="clip20"> <path fill="#fff" transform="translate(1063 602)" d="M0 0h107v22H0z"></path> </clipPath> <clipPath id="clip21"> <path fill="#fff" transform="translate(1063 504)" d="M0 0h89v22H0z"></path> </clipPath> <clipPath id="clip22"> <path fill="#fff" transform="translate(959 427)" d="M0 0h192v22H0z"></path> </clipPath> <clipPath id="clip23"> <path fill="#fff" transform="translate(965 2113)" d="M0 0h153v42H0z"></path> </clipPath> <clipPath id="clip24"> <path fill="#fff" transform="translate(965 2061)" d="M0 0h68v22H0z"></path> </clipPath> <clipPath id="clip25"> <path fill="#fff" transform="translate(965 1959)" d="M0 0h83v22H0z"></path> </clipPath> <clipPath id="clip26"> <path fill="#fff" transform="translate(965 1921)" d="M0 0h63v22H0z"></path> </clipPath> <clipPath id="clip27"> <path fill="#fff" transform="translate(965 1883)" d="M0 0h114v22H0z"></path> </clipPath> <clipPath id="clip28"> <path fill="#fff" transform="translate(965 1849)" d="M0 0h138v22H0z"></path> </clipPath> <clipPath id="clip29"> <path fill="#fff" transform="translate(965 1701)" d="M0 0h81v22H0z"></path> </clipPath> <clipPath id="clip30"> <path fill="#fff" transform="translate(965 1295)" d="M0 0h73v22H0z"></path> </clipPath> <clipPath id="clip31"> <path fill="#fff" transform="translate(761 1117)" d="M0 0h99v22H0z"></path> </clipPath> <clipPath id="clip32"> <path fill="#fff" transform="translate(965 955)" d="M0 0h87v22H0z"></path> </clipPath> <clipPath id="clip33"> <path fill="#fff" transform="translate(940 793)" d="M0 0h75v42H0z"></path> </clipPath> <clipPath id="clip34"> <path fill="#fff" transform="translate(817 627)" d="M0 0h106v22H0z"></path> </clipPath> <clipPath id="clip35"> <path fill="#fff" transform="translate(889 541)" d="M0 0h111v22H0z"></path> </clipPath> <clipPath id="clip36"> <path fill="#fff" transform="translate(742 500)" d="M0 0h125v22H0z"></path> </clipPath> <clipPath id="clip37"> <path fill="#fff" transform="translate(1063 347)" d="M0 0h93v22H0z"></path> </clipPath> <clipPath id="clip38"> <path fill="#fff" transform="translate(1708 896)" d="M0 0h66v22H0z"></path> </clipPath> <clipPath id="clip39"> <path fill="#fff" transform="translate(1742 861)" d="M0 0h110v22H0z"></path> </clipPath> <clipPath id="clip40"> <path fill="#fff" transform="translate(1773 826)" d="M0 0h100v22H0z"></path> </clipPath> <clipPath id="clip41"> <path fill="#fff" transform="translate(458 324)" d="M0 0h92v22H0z"></path> </clipPath> <clipPath id="clip42"> <path fill="#fff" transform="translate(504 860)" d="M0 0h70v22H0z"></path> </clipPath> <clipPath id="clip43"> <path fill="#fff" transform="translate(887 887)" d="M0 0h102v22H0z"></path> </clipPath> <clipPath id="clip44"> <path fill="#fff" transform="translate(1035 887)" d="M0 0h131v22H0z"></path> </clipPath> <clipPath id="clip45"> <path fill="#fff" transform="translate(1761 1486)" d="M0 0h89v39H0z"></path> </clipPath> <clipPath id="clip46"> <path fill="#fff" transform="translate(1761 1570)" d="M0 0h68v22H0z"></path> </clipPath> <clipPath id="clip47"> <path fill="#fff" transform="translate(1159 735)" d="M0 0h105v22H0z"></path> </clipPath> <clipPath id="clip48"> <path fill="#fff" transform="translate(1683 470)" d="M0 0h101v22H0z"></path> </clipPath> <clipPath id="clip49"> <path fill="#fff" transform="translate(1683 546)" d="M0 0h119v22H0z"></path> </clipPath> <clipPath id="clip50"> <path fill="#fff" transform="translate(1683 623)" d="M0 0h120v22H0z"></path> </clipPath> <clipPath id="clip51"> <path fill="#fff" transform="translate(1645 707)" d="M0 0h115v22H0z"></path> </clipPath> <clipPath id="clip52"> <path fill="#fff" transform="translate(1534 815)" d="M0 0h110v22H0z"></path> </clipPath> <clipPath id="clip53"> <path fill="#fff" transform="translate(1417 915)" d="M0 0h71v22H0z"></path> </clipPath> <clipPath id="clip54"> <path fill="#fff" transform="translate(236 554)" d="M0 0h87v22H0z"></path> </clipPath> <clipPath id="clip55"> <path fill="#fff" transform="translate(236 493)" d="M0 0h121v22H0z"></path> </clipPath> <clipPath id="clip56"> <path fill="#fff" transform="translate(236 386)" d="M0 0h68v22H0z"></path> </clipPath> <clipPath id="clip57"> <path fill="#fff" transform="translate(830 956)" d="M0 0h79v22H0z"></path> </clipPath> <clipPath id="clip58"> <path fill="#fff" transform="translate(1422 679)" d="M0 0h100v22H0z"></path> </clipPath> </defs> </svg> <div class="metro__controls"> <button class="metro__zoom" id="zoom-in"><img src="img/icons/zoom-in.svg" alt=""></button> <button class="metro__zoom" id="zoom-out"><img src="img/icons/zoom-out.svg" alt=""></button> </div> </div> <div class="metro-mobile"> <div class="location__content"> <div class="metro__filter field"> <input type="text" class="metro__search" placeholder="Поиск по станции"> <div class="select metro-time"> <input type="text" class="select__input" placeholder="Время до метро" value=""> <div class="select__dropdown custom-scroll"> <div class="select__item" data-value="1">1</div> <div class="select__item" data-value="2">2</div> <div class="select__item" data-value="3">3</div> </div> </div> </div> <div class="location__list custom-scroll"> <div class="location__col"> <div class="metro__title"><span class="line red"></span> Таганско-Краснопренсненская </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Авиамоторная</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">ул Академика Янгеля</span> </label> </div> </div> <div class="location__col"> <div class="metro__title"><span class="line blue"></span> МЦД-1 </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">САО</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">б-р Адмирала Ушакова</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Лермонтовский пр-т</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">ул Академика Янгеля</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Раменки</span> </label> </div> </div> <div class="location__col"> <div class="metro__title"><span class="line green"></span> Аэропорт </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Новый город</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">пр-т Ленина</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Садовое кольцо</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Выставочная</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Митино</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Строгино</span> </label> </div> </div> <div class="location__col"> <div class="metro__title"><span class="line blue"></span> МЦД-1 </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">САО</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">б-р Адмирала Ушакова</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Лермонтовский пр-т</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">ул Академика Янгеля</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Раменки</span> </label> </div> </div> <div class="location__col"> <div class="metro__title"><span class="line red"></span> Таганско-Краснопренсненская </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Авиамоторная</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">ул Академика Янгеля</span> </label> </div> </div> <div class="location__col"> <div class="metro__title"><span class="line blue"></span> МЦД-1 </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">САО</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">б-р Адмирала Ушакова</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Лермонтовский пр-т</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">ул Академика Янгеля</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Раменки</span> </label> </div> </div> <div class="location__col"> <div class="metro__title"><span class="line green"></span> Аэропорт </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Новый город</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">пр-т Ленина</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Садовое кольцо</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Выставочная</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Митино</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Строгино</span> </label> </div> </div> <div class="location__col"> <div class="metro__title"><span class="line blue"></span> МЦД-1 </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">САО</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">б-р Адмирала Ушакова</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Лермонтовский пр-т</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">ул Академика Янгеля</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Раменки</span> </label> </div> </div> <div class="location__col"> <div class="metro__title"><span class="line red"></span> Таганско-Краснопренсненская </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Авиамоторная</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">ул Академика Янгеля</span> </label> </div> </div> <div class="location__col"> <div class="metro__title"><span class="line blue"></span> МЦД-1 </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">САО</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">б-р Адмирала Ушакова</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Лермонтовский пр-т</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">ул Академика Янгеля</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Раменки</span> </label> </div> </div> <div class="location__col"> <div class="metro__title"><span class="line green"></span> Аэропорт </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Новый город</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">пр-т Ленина</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Садовое кольцо</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Выставочная</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Митино</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Строгино</span> </label> </div> </div> <div class="location__col"> <div class="metro__title"><span class="line blue"></span> МЦД-1 </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">САО</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">б-р Адмирала Ушакова</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Лермонтовский пр-т</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">ул Академика Янгеля</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Раменки</span> </label> </div> </div> </div> </div> </div> </div> <div class="tabs__content" data-tabs-target="district"> <div class="location__content"> <div class="location__list custom-scroll"> <div class="location__col"> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark checkbox-500">САО</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" checked name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Орехово-Борисово Северное</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Восточное Измайлово</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" disabled name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">0 доступных, неактивный чекбокс</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Метрогородок</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Десёновское</span> </label> </div> </div> <div class="location__col"> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" checked name="check-group" value=""> <span class="checkbox-group__label checkbox-mark checkbox-500">САО</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Метрогородок</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Воскресенское</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" checked name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Десёновское</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Марушкинское</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Кокошкино</span> </label> </div> </div> <div class="location__col"> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark checkbox-500">САО</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Десёновское</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" checked name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Марушкинское</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Кокошкино</span> </label> </div> </div> <div class="location__col"> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark checkbox-500">САО</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Орехово-Борисово Северное</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" checked name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Воскресенское</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" checked name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Марушкинское</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Кокошкино</span> </label> </div> </div> <div class="location__col"> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark checkbox-500">САО</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Орехово-Борисово Северное</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Восточное Измайлово</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Метрогородок</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Десёновское</span> </label> </div> </div> <div class="location__col"> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark checkbox-500">САО</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Метрогородок</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Воскресенское</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Десёновское</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Марушкинское</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Кокошкино</span> </label> </div> </div> <div class="location__col"> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark checkbox-500">САО</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Десёновское</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Марушкинское</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Кокошкино</span> </label> </div> </div> <div class="location__col"> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark checkbox-500">САО</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Орехово-Борисово Северное</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Воскресенское</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Марушкинское</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Кокошкино</span> </label> </div> </div> <div class="location__col"> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark checkbox-500">САО</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" checked name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Орехово-Борисово Северное</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Восточное Измайлово</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" disabled name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">0 доступных, неактивный чекбокс</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Метрогородок</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Десёновское</span> </label> </div> </div> <div class="location__col"> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" checked name="check-group" value=""> <span class="checkbox-group__label checkbox-mark checkbox-500">САО</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Метрогородок</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Воскресенское</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" checked name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Десёновское</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Марушкинское</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Кокошкино</span> </label> </div> </div> <div class="location__col"> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark checkbox-500">САО</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Десёновское</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" checked name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Марушкинское</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Кокошкино</span> </label> </div> </div> <div class="location__col"> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark checkbox-500">САО</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Орехово-Борисово Северное</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" checked name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Воскресенское</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" checked name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Марушкинское</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Кокошкино</span> </label> </div> </div> <div class="location__col"> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark checkbox-500">САО</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" checked name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Орехово-Борисово Северное</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Восточное Измайлово</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" disabled name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">0 доступных, неактивный чекбокс</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Метрогородок</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Десёновское</span> </label> </div> </div> <div class="location__col"> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" checked name="check-group" value=""> <span class="checkbox-group__label checkbox-mark checkbox-500">САО</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Метрогородок</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Воскресенское</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" checked name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Десёновское</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Марушкинское</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Кокошкино</span> </label> </div> </div> <div class="location__col"> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark checkbox-500">САО</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Десёновское</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" checked name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Марушкинское</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Кокошкино</span> </label> </div> </div> <div class="location__col"> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark checkbox-500">САО</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Орехово-Борисово Северное</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" checked name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Воскресенское</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" checked name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Марушкинское</span> </label> </div> <div class="checkbox-group__item"> <label class="checkbox-group__button"> <input type="checkbox" class="checkbox-group__input" name="check-group" value=""> <span class="checkbox-group__label checkbox-mark">Кокошкино</span> </label> </div> </div> </div> </div> </div> <div class="location__controls"> <button class="btn" type="button">Показать 4444 квартир</button> <button class="btn-reset btn-reset--outline"> <svg width="8" height="9" viewBox="0 0 8 9" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M7 1.5L1 7.5" stroke="#FF502F" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" /> <path d="M1 1.5L7 7.5" stroke="#FF502F" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" /> </svg> <span>Сбросить 20 станций</span> </button> </div> </div> </div> </div> </div> </div> </section> <button class="scrolltop"></button> <footer class="root__footer footer"> <div class="container-fluid"> <div class="footer__top"> <div class="footer__main"> <div class="footer__main--block"> <ul class="footer__contacts"> <li> <div class="footer__worktime">Режим работы с 44 до 44</div> </li> <li> <a href="tel:89872346790" class="footer__phone">8 987 234 67 90</a> </li> <li> <a href="#callback" class="footer__callback" data-dest="modal">Перезвонить вам?</a> </li> </ul> <ul class="footer__social social"> <li class="social__item"> <a href="javascript:void(0)" class="social__link"> <i class="social__link--color"> <img src="img/social/fb__color.svg" class="img-fluid" alt=""> </i> <i class="social__link--gray"> <img src="img/social/fb__gray.svg" class="img-fluid" alt=""> </i> </a> </li> <li class="social__item"> <a href="javascript:void(0)" class="social__link"> <i class="social__link--color"> <img src="img/social/tw__color.svg" class="img-fluid" alt=""> </i> <i class="social__link--gray"> <img src="img/social/tw__gray.svg" class="img-fluid" alt=""> </i> </a> </li> <li class="social__item"> <a href="javascript:void(0)" class="social__link"> <i class="social__link--color"> <img src="img/social/inst__color.svg" class="img-fluid" alt=""> </i> <i class="social__link--gray"> <img src="img/social/inst__gray.svg" class="img-fluid" alt=""> </i> </a> </li> <li class="social__item"> <a href="javascript:void(0)" class="social__link"> <i class="social__link--color"> <img src="img/social/vk__color.svg" class="img-fluid" alt=""> </i> <i class="social__link--gray"> <img src="img/social/vk__gray.svg" class="img-fluid" alt=""> </i> </a> </li> <li class="social__item"> <a href="javascript:void(0)" class="social__link"> <i class="social__link--color"> <img src="img/social/odnkl__color.svg" class="img-fluid" alt=""> </i> <i class="social__link--gray"> <img src="img/social/odnkl__gray.svg" class="img-fluid" alt=""> </i> </a> </li> </ul> </div> <div class="footer__main--block"> <div class="footer__office"> <div class="footer__office--title">Центральный офис</div> <div class="footer__office--address">г. Москва, Ленинградский пр-т, д. 31А стр. 1</div> </div> <div class="footer__data"> Агентство недвижимости Стрижи<br /> ИНН 7714468929 / ОГРН 1217700066980 </div> </div> <div class="footer__main--block"> <div class="footer__search"> <div class="footer__search--label">Поиск по артикулу</div> <div class="footer__search--form"> <input type="text" class="footer__search--input" placeholder="А-12"> </div> </div> </div> </div> <div class="footer__nav"> <div class="footer-nav"> <div class="footer-nav__group"> <div class="footer-nav__header">Новостройки</div> <div class="footer-nav__content"> <ul class="footer-nav__menu"> <li> <a href="javascript:void(0)">Солнечный город</a> </li> <li> <a href="javascript:void(0)">Заречный парк</a> </li> <li> <a href="javascript:void(0)">Мосфильмовский</a> </li> <li> <a href="javascript:void(0)">Зеленый квартал</a> </li> <li> <a href="javascript:void(0)">Хорошевский</a> </li> <li> <a href="javascript:void(0)">Кантемировская 11</a> </li> <li> <a href="javascript:void(0)">Ultra city</a> </li> <li> <a href="javascript:void(0)">Legenda героев</a> </li> <li> <a href="javascript:void(0)">Парковый 2</a> </li> <li> <a href="javascript:void(0)">Реут</a> </li> <li> <a href="javascript:void(0)">Пехра</a> </li> <li> <a href="javascript:void(0)">Боярский палисадник</a> </li> <li> <a href="javascript:void(0)">Императорские мытищи</a> </li> <li> <a href="javascript:void(0)">Апарт-отель ArtStudio Moskovsky</a> </li> <li> <a href="javascript:void(0)">Зеленый квартал на Пулковских высотах</a> </li> </ul> <button class="footer-nav__toggle" data-close="Развернуть" data-open="Свернуть"> <i class="footer-nav__toggle--icon"> <svg class="ico-svg" viewBox="0 0 320 512" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#angle-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </i> </button> </div> </div> <div class="footer-nav__group"> <div class="footer-nav__header">Популярное</div> <div class="footer-nav__content"> <ul class="footer-nav__menu"> <li> <a href="javascript:void(0)">Евродвушки до 44,44 миллионов</a> </li> <li> <a href="javascript:void(0)">Проект А101 (1,2,3 очереди)</a> </li> <li> <a href="javascript:void(0)">Новостройки от ПИК</a> </li> <li> <a href="javascript:void(0)">Технологический институт</a> </li> <li> <a href="javascript:void(0)">Петр Великий и Екатерина Великая</a> </li> <li> <a href="javascript:void(0)">4-комнатные до 44,44 миллионов</a> </li> <li> <a href="javascript:void(0)">б-р Дмитрия Донского</a> </li> <li> <a href="javascript:void(0)">4-комнатные евро квартиры</a> </li> <li> <a href="javascript:void(0)">ул Академика Янгеля</a> </li> <li> <a href="javascript:void(0)">Зеленый квартал на Пулковских</a> </li> <li> <a href="javascript:void(0)">Евродвушки до 44,44 миллионов</a> </li> <li> <a href="javascript:void(0)">Хорошевский</a> </li> <li> <a href="javascript:void(0)">б-р Предательски длинных названий</a> </li> <li> <a href="javascript:void(0)">С видом на Москва Реку</a> </li> <li> <a href="javascript:void(0)">С лоджией и парковками</a> </li> </ul> <button class="footer-nav__toggle" data-close="Развернуть" data-open="Свернуть"> <i class="footer-nav__toggle--icon"> <svg class="ico-svg" viewBox="0 0 320 512" xmlns="http://www.w3.org/2000/svg"> <use xlink:href="img/sprites/sprite-mono.svg#angle-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </i> </button> </div> </div> <div class="footer-nav__group"> <div class="footer-nav__header">Ипотека</div> <div class="footer-nav__content"> <ul class="footer-nav__menu"> <li> <a href="javascript:void(0)">Ипотека</a> </li> <li> <a href="javascript:void(0)">Военная ипотека</a> </li> <li> <a href="javascript:void(0)">Материнский капитал</a> </li> <li> <a href="javascript:void(0)">Субсидии</a> </li> </ul> </div> </div> </div> </div> </div> <div class="footer-bottom"> <ul class="footer-bottom__links"> <li> <a href="javascript:void(0)" class="footer-bottom__link">Информация про оферту</a> </li> <li> <a href="javascript:void(0)" class="footer-bottom__link">Политика конфиденциальности</a> </li> </ul> <ul class="footer-bottom__info"> <li> <div class="footer-bottom__copy">Стрижи 2021</div> </li> <li> <a href="javascript:void(0)" class="footer-bottom__dev"> <span class="footer-bottom__dev--text">Сайт разработали в</span> <i class="footer-bottom__dev--logo"> <img src="img/logo__develop.svg" class="img-fluid" alt=""> </i> </a> </li> </ul> </div> </div> </footer> </div> </div> </div> <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> <script src="https://cdn.jsdelivr.net/npm/vanilla-lazyload@17.4.0/dist/lazyload.min.js"></script> <script src="https://unpkg.com/simplebar@latest/dist/simplebar.min.js"></script> <script src="https://cdn.jsdelivr.net/npm/@fancyapps/ui/dist/fancybox.umd.js"></script> <script src="https://unpkg.com/swiper@7/swiper-bundle.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/ion-rangeslider/2.3.1/js/ion.rangeSlider.min.js"></script> <script src="https://unpkg.com/@popperjs/core@2"></script> <script src="https://unpkg.com/tippy.js@6"></script> <script src="https://cdn.jsdelivr.net/npm/choices.js@9.0.1/public/assets/scripts/choices.min.js"></script> <script src="https://cdn.jsdelivr.net/npm/svg-pan-zoom@3.5.0/dist/svg-pan-zoom.min.js"></script> <script src="https://api-maps.yandex.ru/2.1/?lang=ru_RU&amp;apikey=<ваш API-ключ>" type="text/javascript"></script> <script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDMV_bUVV-Yc2mGO1bGiO0Jopxjws26hn8&callback=initMap&libraries=&v=weekly" async ></script> <script src="js/sticky.min.js"></script> <script src="js/datepicker.min.js"></script> <script src="js/app.js"></script> </body> </html>
64.451376
421
0.447511
fb9d5e0b22a3e27afd4af2b01763259d00e2f643
974
java
Java
src/main/java/com/simplegame/server/bus/account/action/AccountAction.java
zuesgooogle/game-server
ec25cecb6601e5ba0a0531d6ebb96d2cbb5b865a
[ "Apache-2.0" ]
null
null
null
src/main/java/com/simplegame/server/bus/account/action/AccountAction.java
zuesgooogle/game-server
ec25cecb6601e5ba0a0531d6ebb96d2cbb5b865a
[ "Apache-2.0" ]
null
null
null
src/main/java/com/simplegame/server/bus/account/action/AccountAction.java
zuesgooogle/game-server
ec25cecb6601e5ba0a0531d6ebb96d2cbb5b865a
[ "Apache-2.0" ]
null
null
null
package com.simplegame.server.bus.account.action; import javax.annotation.Resource; import com.simplegame.core.action.annotation.ActionMapping; import com.simplegame.core.action.annotation.ActionWorker; import com.simplegame.core.message.Message; import com.simplegame.server.bus.account.command.AccountCommands; import com.simplegame.server.bus.account.service.IAccountService; import com.simplegame.server.bus.swap.BusMsgSender; /** * * @Author zeusgooogle@gmail.com * @sine 2015年5月6日 上午11:09:18 * */ @ActionWorker public class AccountAction { @Resource private IAccountService accountService; @Resource private BusMsgSender busMsgSender; @ActionMapping(mapping = AccountCommands.MONRY_CHANGE) public void getMoneyData(Message message) { String roleId = message.getRoleId(); Object[] moneyData = accountService.getMoneyData(roleId); busMsgSender.send2One(AccountCommands.MONRY_CHANGE, roleId, moneyData); } }
27.055556
76
0.774127
c31043dd3f243d6803b32764f4b8defba1d5b68f
901
ps1
PowerShell
OctopusDSC/Tests/OctopusServerExeInvocationFiles/ConfigureWhenOlderMsiPreInstalled/ExpectedResult.ps1
iserje/OctopusDSC
a56ac11a5bf89c674c8376c79f321bee4ac32a4c
[ "Apache-2.0" ]
68
2015-01-12T06:47:00.000Z
2021-09-09T14:31:29.000Z
OctopusDSC/Tests/OctopusServerExeInvocationFiles/ConfigureWhenOlderMsiPreInstalled/ExpectedResult.ps1
iserje/OctopusDSC
a56ac11a5bf89c674c8376c79f321bee4ac32a4c
[ "Apache-2.0" ]
170
2015-07-01T05:57:27.000Z
2022-03-24T09:30:45.000Z
OctopusDSC/Tests/OctopusServerExeInvocationFiles/ConfigureWhenOlderMsiPreInstalled/ExpectedResult.ps1
iserje/OctopusDSC
a56ac11a5bf89c674c8376c79f321bee4ac32a4c
[ "Apache-2.0" ]
69
2015-02-09T11:31:09.000Z
2021-11-11T10:27:50.000Z
return @( "create-instance --console --instance OctopusServer --config $($env:SystemDrive)\Octopus\OctopusServer-OctopusServer.config --home C:\Octopus", "database --instance OctopusServer --connectionstring Server=(local);Database=Octopus;Trusted_Connection=True; --create --grant NT AUTHORITY\SYSTEM", "configure --console --instance OctopusServer --upgradeCheck True --upgradeCheckWithStatistics False --webForceSSL False --webListenPrefixes http://localhost:82 --commsListenPort 10935 --autoLoginEnabled True --hstsEnabled False --hstsMaxAge 3600", "service --console --instance OctopusServer --stop", "admin --console --instance OctopusServer --username Admin --password S3cur3P4ssphraseHere!", "license --console --instance OctopusServer --free", "service --console --instance OctopusServer --install --reconfigure --stop", "service --start --console --instance OctopusServer" )
81.909091
250
0.766926
57a02c4ea8edd7b7fdbd3f9faf37a26c4718db62
740
c
C
src/PJ/flic386p/libsrc/fli/finish.c
AnimatorPro/Animator-Pro
6d0b68cd94bb5cfde2cdd05e9a7c8ee1e1cb3cbb
[ "BSD-3-Clause" ]
119
2015-01-10T15:13:50.000Z
2022-01-24T04:54:34.000Z
src/PJ/flic386p/libsrc/fli/finish.c
AnimatorPro/Animator-Pro
6d0b68cd94bb5cfde2cdd05e9a7c8ee1e1cb3cbb
[ "BSD-3-Clause" ]
6
2015-10-22T20:14:59.000Z
2021-07-10T03:25:21.000Z
src/PJ/flic386p/libsrc/fli/finish.c
AnimatorPro/Animator-Pro
6d0b68cd94bb5cfde2cdd05e9a7c8ee1e1cb3cbb
[ "BSD-3-Clause" ]
27
2015-04-24T22:55:30.000Z
2022-01-21T13:54:00.000Z
#include "fli.h" Errcode pj_fli_finish(char *name, /* name for error reporting * if NULL no reports */ Flifile *flif, void *cbuf, Rcel *last_screen, Rcel *work_screen) { Errcode err; LONG endoset; if((endoset = pj_tell(flif->fd)) < 0) goto oseterr; if((err = pj_fli_seek_first(flif)) < Success) goto error; if((err = pj_fli_read_uncomp(name, flif, work_screen, cbuf, TRUE)) < Success) goto error; if((endoset = pj_seek(flif->fd, endoset, JSEEK_START)) < 0) goto oseterr; return(pj_fli_add_ring(name, flif, cbuf, last_screen, work_screen)); oseterr: err = endoset; error: if(name) err = pj_fli_error_report(err,"Error writing FLC \"%s\"", name); return(err); }
23.125
79
0.643243
4c3420825286a1a842c7e27f1b4b76807d79af93
4,422
php
PHP
src/AppBundle/Services/RemoteHandlerTools.php
survos/remote
595153564aecd2c15865220b02c77392f221a145
[ "MIT" ]
null
null
null
src/AppBundle/Services/RemoteHandlerTools.php
survos/remote
595153564aecd2c15865220b02c77392f221a145
[ "MIT" ]
1
2017-02-21T22:42:19.000Z
2017-02-21T22:42:19.000Z
src/AppBundle/Services/RemoteHandlerTools.php
survos/remote
595153564aecd2c15865220b02c77392f221a145
[ "MIT" ]
null
null
null
<?php namespace AppBundle\Services; use Survos\Client\SurvosClient; use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\OptionsResolver\OptionsResolver; use Survos\Client\Resource\ChannelResource; class RemoteHandlerTools { private $platformPath; /** @var OutputInterface */ private $output; public function __construct(string $platformPath) { $this->platformPath = $platformPath; } /** * @param OutputInterface $output */ public function setOutput(OutputInterface $output) { $this->output = $output; } public function resolveLocalPath($url): string { $platformRoot = realpath($this->platformPath . '/web'); if (!file_exists($platformRoot)) { throw new \Exception("Can't find the platform root. It's supposed to be here: {$platformRoot}"); } if (!preg_match('/(\/uploads.+$)/', $url, $matches)) { throw new \Exception("Can't parse file location from url: {$url}"); } $path = $platformRoot . $matches[1]; if (!file_exists($path)) { throw new \Exception("Can't resolve local path ({$path}) from url: {$url}"); } return $path; } public function downloadFile($url) { $path = sys_get_temp_dir() . '/' . md5($url). '.zip'; if (!file_exists($path)) { $newfname = $path; if ($file = fopen($url, 'rb')) { $newf = fopen($newfname, 'wb'); if ($newf) { while (!feof($file)) { fwrite($newf, fread($file, 1024 * 8), 1024 * 8); } } fclose($file); if ($newf) { fclose($newf); } } } return $path; } /** * send the answers back to using ChannelResource::sendData */ public function sendData(SurvosClient $client, array $channelData, array $answers): array { $channelData = (new OptionsResolver())->setDefaults([ 'assignmentId' => null, 'command' => 'complete', ])->setRequired([ 'taskId', 'channelCode' ])->resolve($channelData); dump(__METHOD__, $answers); $currentUserId = $client->getLoggedUser()['id']; $res = new ChannelResource($client); $response = $res->sendData($channelData['channelCode'], $sentData = [ 'answers' => $answers, // seems like this meta-data could be grouped 'command' => $channelData['command'], 'memberId' => $currentUserId, 'taskId' => $channelData['taskId'], 'assignmentId' => $channelData['assignmentId'], ]); $this->writeln(sprintf("Submitted to %s:\n %s\nReceived: %s", $res->getLastRequestPath(), json_encode($sentData, JSON_PRETTY_PRINT), json_encode($response, JSON_PRETTY_PRINT)) ); return $response; } /** * send error to ChannelResource::sendData */ public function sendError(SurvosClient $client, string $channelCode, string $error, int $taskId, ?int $assignmentId): array { dump(__METHOD__, $error); $currentUserId = $client->getLoggedUser()['id']; $res = new ChannelResource($client); $response = $res->sendData($channelCode, [ 'error' => $error, 'memberId' => $currentUserId, 'taskId' => $taskId, 'assignmentId' => $assignmentId, ]); $this->writeln('Submitted: ' . json_encode($response, JSON_PRETTY_PRINT)); return $response; } /** * @param array $data * @return array */ public function validateMessage($data) { $resolver = new OptionsResolver(); $resolver->setDefined([ 'action', 'deployment', 'parameters', //TODO: we don't use these params 'statusEndpoint', 'receiveEndpoint', 'receiveMethod', ]); $resolver->setRequired(['payload', 'mapmobToken', 'apiUrl', 'accessToken', 'taskId', 'assignmentId', 'channelCode']); return $resolver->resolve((array) $data); } private function writeln($messages) { if ($this->output) { $this->output->writeln($messages); } } }
31.585714
127
0.543419
71ccfcbe8676e465413d394175ba7b5db957e549
1,717
tsx
TypeScript
src/components/Posts/PostsPagination.tsx
aggrep/aggrep-ui
b95bbc28811c9a328057e83e53307fc68db92a29
[ "MIT" ]
null
null
null
src/components/Posts/PostsPagination.tsx
aggrep/aggrep-ui
b95bbc28811c9a328057e83e53307fc68db92a29
[ "MIT" ]
1
2021-05-10T20:19:41.000Z
2021-05-10T20:19:41.000Z
src/components/Posts/PostsPagination.tsx
dkrichards86/aggrep-ui
b95bbc28811c9a328057e83e53307fc68db92a29
[ "MIT" ]
null
null
null
import React from 'react'; import { useDispatch } from 'react-redux'; import { TablePagination } from '@material-ui/core'; import { makeStyles } from '@material-ui/core/styles'; import { setFilter } from 'store/actions'; import { RootState } from 'store/reducers'; import { useSelector } from 'store/types'; const useStyles = makeStyles(() => ({ root: { display: 'flex', justifyContent: 'flex-end', flexWrap: 'wrap' } })); const PostPagination:React.FunctionComponent = () => { const classes = useStyles(); const dispatch = useDispatch(); const numPages = useSelector((state: RootState) => state.posts.total_pages); const pageNumber = useSelector((state: RootState) => state.posts.page); const postCount = useSelector((state: RootState) => state.posts.total_items) const handleChangePage = (_:any, newPage: number):void => { dispatch(setFilter('page', newPage + 1)); }; let pagination = null; if (numPages > 1) { pagination = ( <TablePagination classes={{ toolbar: classes.root, }} rowsPerPageOptions={[20]} component="div" count={postCount} page={pageNumber - 1} rowsPerPage={20} labelRowsPerPage="Posts to show: " backIconButtonProps={{ 'aria-label': 'previous page', }} nextIconButtonProps={{ 'aria-label': 'next page', }} onChangePage={handleChangePage} /> ); } return pagination; } export default PostPagination;
30.122807
80
0.554455
e435b626dde7c872babbdbfc2ac38d26b031d332
1,665
kt
Kotlin
app/src/main/java/com/ch8n/thatsmine/MainActivity.kt
ch8n/Jetpack-compose-thatsMine
25f1d73865fe57bfed49a88d56eff52a011b2c4f
[ "Apache-2.0" ]
8
2021-03-11T10:11:46.000Z
2022-02-23T17:11:40.000Z
app/src/main/java/com/ch8n/thatsmine/MainActivity.kt
ch8n/Jetpack-compose-thatsMine
25f1d73865fe57bfed49a88d56eff52a011b2c4f
[ "Apache-2.0" ]
1
2020-11-08T07:13:45.000Z
2020-11-08T07:13:45.000Z
app/src/main/java/com/ch8n/thatsmine/MainActivity.kt
ch8n/Jetpack-compose-thatsMine
25f1d73865fe57bfed49a88d56eff52a011b2c4f
[ "Apache-2.0" ]
null
null
null
package com.ch8n.thatsmine import android.os.Bundle import androidx.appcompat.app.AppCompatActivity import androidx.compose.foundation.Text import androidx.compose.material.MaterialTheme import androidx.compose.material.Surface import androidx.compose.runtime.Composable import androidx.compose.ui.platform.setContent import androidx.lifecycle.MutableLiveData import androidx.lifecycle.Observer import androidx.ui.tooling.preview.Preview import com.ch8n.thatsmine.base.ThatsMineTheme import com.ch8n.thatsmine.data.local.datasource.persistence.datastores.config.StoreConfig import com.ch8n.thatsmine.data.local.datasource.persistence.datastores.prefs.RestoreFormDataStoreImpl import com.ch8n.thatsmine.data.local.datasource.persistence.datastores.proto.SerializersSettings import com.ch8n.thatsmine.data.local.datasource.persistence.datastores.proto.SettingsProtoStoreImpl import com.ch8n.thatsmine.domain.models.User import kotlinx.coroutines.GlobalScope import kotlinx.coroutines.flow.collect import kotlinx.coroutines.launch class MainActivity : AppCompatActivity() { override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) setContent { ThatsMineTheme { // A surface container using the 'background' color from the theme Surface(color = MaterialTheme.colors.background) { Greeting("Android") } } } } } @Composable fun Greeting(name: String) { Text(text = "Hello $name!") } @Preview(showBackground = true) @Composable fun DefaultPreview() { ThatsMineTheme { Greeting("Android") } }
33.3
101
0.765165
b63509fee93f44909fab105f21a939d9c20b6a68
1,002
rb
Ruby
tools/build/lib/nhsx/helpers/lambda.rb
shehir12/covid19-app-system-public
63184012d85335f7c499fe41ab534a0ef935a4b8
[ "MIT" ]
169
2020-08-13T12:38:01.000Z
2021-02-26T09:01:35.000Z
tools/build/lib/nhsx/helpers/lambda.rb
shehir12/covid19-app-system-public
63184012d85335f7c499fe41ab534a0ef935a4b8
[ "MIT" ]
30
2020-09-24T08:41:19.000Z
2020-11-09T15:37:11.000Z
tools/build/lib/nhsx/helpers/lambda.rb
shehir12/covid19-app-system-public
63184012d85335f7c499fe41ab534a0ef935a4b8
[ "MIT" ]
40
2020-08-13T12:01:07.000Z
2021-01-27T12:05:31.000Z
require 'fileutils' require 'json' require_relative 'target' require_relative 'venv' require_relative '../../gaudi/helpers/utilities' module NHSx # Methods to query and manipulate the target environment module Lambda include NHSx::Venv include Gaudi::Utilities PYTHON_ACTIVE_BIN = 'bin/activate' TMP_PATH = 'out/analytics/tmp' def package(out_path) python_venv_path = python_venv_path(out_path) setup_python_virtual_environment(python_venv_path) source_path = "src/analytics/lambdas" puts "copying to temp" p `chmod -R a+x #{source_path}` if Dir.exist?(TMP_PATH) if rm_r(TMP_PATH) end end cp_r(source_path, TMP_PATH) install_dependencies(TMP_PATH, source_path) end def pack() if Dir.exist?('out/python_package') if rm_r("out/python_package/") end end out_path = "out/analytics/lambdas" package(out_path) end end end
23.857143
58
0.650699
c31a2293135ae52e39045d27737d4ee940a0b4ef
392
go
Go
ghost/vector_test.go
alexyer/ghost
7bcfc8b5e005cccbb61949c932c3c5949f51f080
[ "MIT" ]
5
2015-12-30T21:45:50.000Z
2019-06-21T09:45:02.000Z
ghost/vector_test.go
alexyer/ghost
7bcfc8b5e005cccbb61949c932c3c5949f51f080
[ "MIT" ]
15
2015-11-11T00:14:17.000Z
2016-02-01T12:41:42.000Z
ghost/vector_test.go
alexyer/ghost
7bcfc8b5e005cccbb61949c932c3c5949f51f080
[ "MIT" ]
3
2016-01-09T08:42:58.000Z
2018-09-28T14:13:36.000Z
package ghost import "testing" func TestVectorPush(t *testing.T) { vec := vector{} vec.Push(node{"key", "val"}) vec.Push(node{"key1", "val1"}) vec.Push(node{"key2", "val2"}) vec.Push(node{"key3", "val3"}) index := vec.Find("key1") if index == -1 { t.Errorf("Expected index, got -1") } vec.Pop(index) index = vec.Find("key1") if index != -1 { t.Errorf("Wrong pop.") } }
15.076923
36
0.594388
be10d6972f1f63b878bc2fa0a7b71e041672e4ae
37
sql
SQL
SQL2/pg_catalog/tables/pg_available_extensions.sql
andrewp-as-is/postgresql-examples
a93af3600e65c20c9b3774bfcf245adf11d5cf1f
[ "Unlicense" ]
null
null
null
SQL2/pg_catalog/tables/pg_available_extensions.sql
andrewp-as-is/postgresql-examples
a93af3600e65c20c9b3774bfcf245adf11d5cf1f
[ "Unlicense" ]
null
null
null
SQL2/pg_catalog/tables/pg_available_extensions.sql
andrewp-as-is/postgresql-examples
a93af3600e65c20c9b3774bfcf245adf11d5cf1f
[ "Unlicense" ]
null
null
null
select * from pg_available_extensions
37
37
0.891892
2edf58c0177046ae18385469679671b1b5dff220
3,129
asm
Assembly
src/setup.asm
freem/freem_pong
e7236e05d304cafe5ac7341bbc05607e5c3172c4
[ "Unlicense" ]
1
2021-09-13T18:05:13.000Z
2021-09-13T18:05:13.000Z
src/setup.asm
freem/freem_pong
e7236e05d304cafe5ac7341bbc05607e5c3172c4
[ "Unlicense" ]
4
2016-07-10T20:59:49.000Z
2016-07-10T21:02:25.000Z
src/setup.asm
freem/freem_pong
e7236e05d304cafe5ac7341bbc05607e5c3172c4
[ "Unlicense" ]
null
null
null
; Program Setup ;==============================================================================; ProgramSetup: ; lots of this will differ for PCE/NES. ;==============================================================================; ; NES-specific section ;==============================================================================; .ifdef __NES__ ;-- set palette --; ldx #>$3F00 ldy #<$3F00 stx PPU_ADDR sty PPU_ADDR ; 32 values in tbl_paletteNES ldy #0 @Reset_nes_LoadPalette: lda tbl_paletteNES,y sta PPU_DATA iny cpy #32 bne @Reset_nes_LoadPalette ; reset PPU addresses ldx #$3F ldy #$00 stx PPU_ADDR ; palette 1/2 sty PPU_ADDR ; palette 2/2 sty PPU_ADDR ; regular ppu 1/2 sty PPU_ADDR ; regular ppu 2/2 ;-- clear nametables --; ;jsr ppu_ClearNT_All ;-- load CHR data --; ; BG tiles ldx #<nes_tilesBG ldy #>nes_tilesBG stx tmp00 sty tmp01 lda #80 ; 80 2BPP NES tiles sta tmp02 jsr nes_LoadTiles ; sprite tiles ldx #>$1000 ldy #<$0000 stx PPU_ADDR sty PPU_ADDR ldx #<nes_tilesSPR ldy #>nes_tilesSPR stx tmp00 sty tmp01 lda #7 ; 7 8x8 sprite tiles sta tmp02 jsr nes_LoadTiles ; reset PPU address lda #0 sta PPU_ADDR sta PPU_ADDR ;-- reset scroll --; sta PPU_SCROLL sta PPU_SCROLL .endif ;==============================================================================; ; PCE-specific section ;==============================================================================; .ifdef __PCE__ ;-- set palette --; ; first 16 background colors tbl_palettePCE_BG1 ldx #<VCE_BGPAL_START ldy #>VCE_BGPAL_START stx VCE_ADDR_LO sty VCE_ADDR_HI tia tbl_palettePCE_BG1,VCE_DATA_LO,4*2 ; second 16 background colors tbl_palettePCE_BG2 ldx #<VCE_BGPAL_START+(VCE_PALSET_SIZE*1) ldy #>VCE_BGPAL_START+(VCE_PALSET_SIZE*1) stx VCE_ADDR_LO sty VCE_ADDR_HI tia tbl_palettePCE_BG2,VCE_DATA_LO,4*2 ; third 16 background colors tbl_palettePCE_BG3 ldx #<VCE_BGPAL_START+(VCE_PALSET_SIZE*2) ldy #>VCE_BGPAL_START+(VCE_PALSET_SIZE*2) stx VCE_ADDR_LO sty VCE_ADDR_HI tia tbl_palettePCE_BG3,VCE_DATA_LO,4*2 ; first 16 sprite colors tbl_palettePCE_SPR ldx #<VCE_SPRPAL_START ldy #>VCE_SPRPAL_START stx VCE_ADDR_LO sty VCE_ADDR_HI tia tbl_palettePCE_SPR,VCE_DATA_LO,10*2 ;-- set up self-modifying transfer code --; ldx #$E3 ; TIA opcode ldy #$60 ; RTS opcode stx pce_quickTIA sty pce_quickTIA+7 ;-- load BG tiles --; ; BAT takes up first $0800 of VRAM, so put BG tiles at $1000 ldx #<pce_tilesBG ldy #>pce_tilesBG stx tmp00 sty tmp01 ldx #<$1000 ldy #>$1000 stx tmp02 sty tmp03 lda #80 ; 80 4BPP BG tiles sta tmp04 jsr pce_LoadTilesBG ;-- load SPR tiles --; ; put SPR tiles at $2000 ldx #<pce_tilesSPR ldy #>pce_tilesSPR stx tmp00 sty tmp01 ldx #<$2000 ldy #>$2000 stx tmp02 sty tmp03 lda #5 ; 5 16x16 sprite tiles sta tmp04 jsr pce_LoadTilesSPR ;-- clear BAT --; ; BG characters are loaded, fill the BAT with the first tile ($0100). ldx #<$0100 ldy #>$0100 stx tmp00 sty tmp01 jsr vdc_ClearBat .endif ;==============================================================================; ; execution is handed to the program
21
80
0.613934
0efeb4250ee4dda6d678d8c448a8685947127a01
47
ts
TypeScript
libs/thunder/other-pages/feature/src/public_api.ts
VincentThomas06/Codebase
cf3194b24a567e5842c8bb616817b4cf23a07125
[ "MIT" ]
2
2022-02-21T23:15:46.000Z
2022-02-28T07:59:25.000Z
libs/thunder/other-pages/feature/src/public_api.ts
VincentThomas06/Codebase
cf3194b24a567e5842c8bb616817b4cf23a07125
[ "MIT" ]
81
2022-02-21T16:48:36.000Z
2022-03-16T22:25:41.000Z
libs/thunder/other-pages/feature/src/public_api.ts
VincentThomas06/Codebase
cf3194b24a567e5842c8bb616817b4cf23a07125
[ "MIT" ]
1
2022-02-22T21:51:26.000Z
2022-02-22T21:51:26.000Z
export * from './404'; export * from './home';
15.666667
23
0.574468
2663b987be60266705792d28e6e38e2bdb980af0
629
java
Java
app/src/main/java/com/sleep/sleepapp/ProfilePatient.java
oliver-leung/hh-sleepapp
1238a5f2f4aa10cec1e0944b28dc184b3fba2f0d
[ "MIT" ]
null
null
null
app/src/main/java/com/sleep/sleepapp/ProfilePatient.java
oliver-leung/hh-sleepapp
1238a5f2f4aa10cec1e0944b28dc184b3fba2f0d
[ "MIT" ]
null
null
null
app/src/main/java/com/sleep/sleepapp/ProfilePatient.java
oliver-leung/hh-sleepapp
1238a5f2f4aa10cec1e0944b28dc184b3fba2f0d
[ "MIT" ]
null
null
null
package com.sleep.sleepapp; import android.os.Bundle; import android.support.v7.app.AppCompatActivity; import android.widget.TextView; /** * Created by vivian on 3/3/18. */ public class ProfilePatient extends AppCompatActivity{ @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.profile_patient); TextView wtView = findViewById(R.id.weight); TextView htView = findViewById(R.id.height); wtView.setText(patientInfo.getWeight() + " lb"); htView.setText(patientInfo.getHeight() + " in"); } }
25.16
56
0.704293
515e4192e424d0d242b15d3837038c58bd11dc27
3,182
swift
Swift
Tests/APIServiceTests/Github+ServicesTests.swift
imindeu/cci
ee707f85a274c8ecb26dc8745ab847a9e3220956
[ "MIT" ]
null
null
null
Tests/APIServiceTests/Github+ServicesTests.swift
imindeu/cci
ee707f85a274c8ecb26dc8745ab847a9e3220956
[ "MIT" ]
1
2021-12-11T10:45:52.000Z
2021-12-11T10:45:52.000Z
Tests/APIServiceTests/Github+ServicesTests.swift
imindeu/cci
ee707f85a274c8ecb26dc8745ab847a9e3220956
[ "MIT" ]
null
null
null
// // Github+ServicesTests.swift // APIConnectTests // // Created by Peter Geszten-Kovacs on 2019. 01. 07.. // import APIConnect import APIModels import XCTest import JWT import HTTP @testable import APIService class GithubServicesTests: XCTestCase { func testVerify() throws { let signature = "sha1=2c1c62e048a5824dfb3ed698ef8ef96f5185a369" XCTAssertTrue(Github.verify(body: "y", secret: "x", signature: signature)) XCTAssertFalse(Github.verify(body: "x", secret: "x", signature: signature)) } func testJwt() throws { let iss = "0101" let iat: TimeInterval = 1 let exp = (10 * 60) + iat guard let token = try Github.jwt(date: Date(timeIntervalSince1970: iat), appId: iss, privateKey: privateKeyString) else { XCTFail("No token was created") return } let data: Data = token.data(using: .utf8) ?? Data() let jwt = try JWT<Github.JWTPayloadData>(unverifiedFrom: data) XCTAssertEqual(jwt.payload.iss, iss) XCTAssertEqual(jwt.payload.iat, Int(iat)) XCTAssertEqual(jwt.payload.exp, Int(exp)) } func testAccessToken() throws { let token = "x" let api: API = { hostname, _ in return { context, _ in return pure(HTTPResponse(body: "{\"token\":\"\(token)\"}"), context) } } XCTAssertEqual(try Github.accessToken(context: MultiThreadedEventLoopGroup(numberOfThreads: 1), jwtToken: "a", installationId: 1, api: api).wait(), token) } } // swiftlint:disable prefixed_toplevel_constant let privateKeyString = """ -----BEGIN RSA PRIVATE KEY----- MIICXAIBAAKBgQC0cOtPjzABybjzm3fCg1aCYwnxPmjXpbCkecAWLj/CcDWEcuTZ kYDiSG0zgglbbbhcV0vJQDWSv60tnlA3cjSYutAv7FPo5Cq8FkvrdDzeacwRSxYu Iq1LtYnd6I30qNaNthntjvbqyMmBulJ1mzLI+Xg/aX4rbSL49Z3dAQn8vQIDAQAB AoGBAJeBFGLJ1EI8ENoiWIzu4A08gRWZFEi06zs+quU00f49XwIlwjdX74KP03jj H14wIxMNjSmeixz7aboa6jmT38pQIfE3DmZoZAbKPG89SdP/S1qprQ71LgBGOuNi LoYTZ96ZFPcHbLZVCJLPWWWX5yEqy4MS996E9gMAjSt8yNvhAkEA38MufqgrAJ0H VSgL7ecpEhWG3PHryBfg6fK13RRpRM3jETo9wAfuPiEodnD6Qcab52H2lzMIysv1 Ex6nGv2pCQJBAM5v9SMbMG20gBzmeZvjbvxkZV2Tg9x5mWQpHkeGz8GNyoDBclAc BFEWGKVGYV6jl+3F4nqQ6YwKBToE5KIU5xUCQEY9Im8norgCkrasZ3I6Sa4fi8H3 PqgEttk5EtVe/txWNJzHx3JsCuD9z5G+TRAwo+ex3JIBtxTRiRCDYrkaPuECQA2W vRI0hfmSuiQs37BtRi8DBNEmFrX6oyg+tKmMrDxXcw8KrNWtInOb+r9WZK5wIl4a epAK3fTD7Bgnnk01BwkCQHQwEdGNGN3ntYfuRzPA4KiLrt8bpACaHHr2wn9N3fRI bxEd3Ax0uhHVqKRWNioL7UBvd4lxoReY8RmmfghZHEA= -----END RSA PRIVATE KEY----- """ // public key for later testing let publicKeyString = """ -----BEGIN PUBLIC KEY----- MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC0cOtPjzABybjzm3fCg1aCYwnx PmjXpbCkecAWLj/CcDWEcuTZkYDiSG0zgglbbbhcV0vJQDWSv60tnlA3cjSYutAv 7FPo5Cq8FkvrdDzeacwRSxYuIq1LtYnd6I30qNaNthntjvbqyMmBulJ1mzLI+Xg/ aX4rbSL49Z3dAQn8vQIDAQAB -----END PUBLIC KEY----- """ // swiftlint:enable prefixed_toplevel_constant
35.355556
103
0.691075
2dac453c09f92f9b2a3bc80e5fc96e517d343a67
1,788
html
HTML
Val_datos/fotografias/index.html
AlexGtz26/archivos-frontend
ea4e47bcd63693ab659f0bb543a114933ee5017d
[ "MIT" ]
null
null
null
Val_datos/fotografias/index.html
AlexGtz26/archivos-frontend
ea4e47bcd63693ab659f0bb543a114933ee5017d
[ "MIT" ]
1
2021-05-11T05:05:13.000Z
2021-05-11T05:05:13.000Z
fotografias/index.html
AlejandroEchavarria/ProgramacionFrontEnd
80f4ff0c235b4ff6e6bea6348e005f23c42a85f0
[ "MIT" ]
null
null
null
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Api fotografias</title> <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous"> <link rel="stylesheet" href="style.css"> </head> <body> <div class="container"> <div class="row"> <div class="col-md-12"> <button id="search" class="btn btn-primary">Search photo about dog</button> </div> </div> <div class="row"> <div id="res" class="col-md-12"></div> </div> </div> <script src="https://code.jquery.com/jquery-3.4.1.min.js" integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script> <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script> <script> jQuery(document).ready(function() { $("#search").click(function(){ $.get( "https://dog.ceo/api/breeds/image/random",{ r: "json", s: $("#search").val() }, function(data,status){ var $message=""; var message=data.message; var res= '<div class="card" style="width: 18rem;"><img src="'+message+'" class="card-img-top" alt="..."> </div>'; $("#res").append(res); } ); }); }); </script> </body> </html>
35.76
215
0.568233
fb6c3d75ad3c09d6faf7d2b9df0ea3c3f94f8d41
3,772
java
Java
src/main/java/net/tridentsdk/server/packet/play/PlayInPlayerDig.java
JLLeitschuh/Trident
54a44513c60e116b37c84194e2ef9bbc77dfd291
[ "Apache-2.0" ]
51
2015-01-03T01:59:02.000Z
2022-01-13T07:27:25.000Z
src/main/java/net/tridentsdk/server/packet/play/PlayInPlayerDig.java
JLLeitschuh/Trident
54a44513c60e116b37c84194e2ef9bbc77dfd291
[ "Apache-2.0" ]
51
2015-01-08T17:47:19.000Z
2018-03-11T05:32:03.000Z
src/main/java/net/tridentsdk/server/packet/play/PlayInPlayerDig.java
JLLeitschuh/Trident
54a44513c60e116b37c84194e2ef9bbc77dfd291
[ "Apache-2.0" ]
5,599
2015-01-03T18:51:24.000Z
2020-02-11T15:47:07.000Z
/* * Trident - A Multithreaded Server Alternative * Copyright 2017 The TridentSDK Team * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package net.tridentsdk.server.packet.play; import io.netty.buffer.ByteBuf; import net.tridentsdk.base.Block; import net.tridentsdk.base.Position; import net.tridentsdk.base.Substance; import net.tridentsdk.event.player.PlayerDigEvent; import net.tridentsdk.server.TridentServer; import net.tridentsdk.server.net.NetClient; import net.tridentsdk.server.net.NetData; import net.tridentsdk.server.packet.PacketIn; import net.tridentsdk.server.player.TridentPlayer; import net.tridentsdk.world.opt.GameMode; /** * @author TridentSDK * @since 0.5-alpha */ public class PlayInPlayerDig extends PacketIn { /** * (http://wiki.vg/Protocol#Player_Digging) */ public static final int MAX_DIST_SQ = 36; public PlayInPlayerDig() { super(PlayInPlayerDig.class); } @Override public void read(ByteBuf buf, NetClient client) { DigStatus status = DigStatus.values()[NetData.rvint(buf)]; // Single thread usage of the vector uses a noninflated lock, // no optimization needed here TridentPlayer player = client.getPlayer(); Position position = NetData.rvec(buf).toPosition(player.getWorld()); DigFace face = DigFace.get(buf.readByte()); if (status == DigStatus.START_DIGGING && player.getGameMode() == GameMode.CREATIVE) { Block block = position.getBlock(); if (position.distanceSquared(player.getPosition()) > MAX_DIST_SQ) { TridentServer.getInstance().getLogger().warn( "Suspicious dig @ " + position + " by " + player.getName() + " (" + player.getUuid() + ')'); return; } TridentServer.getInstance().getEventController().dispatch(new PlayerDigEvent(player, block), e -> { if (!e.isCancelled()) { block.setSubstance(Substance.AIR); } }); return; } if (status == DigStatus.FINISH_DIGGING) { Block block = position.getBlock(); if (position.distanceSquared(player.getPosition()) > MAX_DIST_SQ) { TridentServer.getInstance().getLogger().warn( "Suspicious dig @ " + position + " by " + player.getName() + " (" + player.getUuid() + ')'); return; } TridentServer.getInstance().getEventController().dispatch(new PlayerDigEvent(player, block), e -> { if (!e.isCancelled()) { block.setSubstance(Substance.AIR); } }); } } private enum DigStatus { START_DIGGING, CANCEL_DIGGING, FINISH_DIGGING, DROP_ITEM_STACK, DROP_ITEM, SHOOT_ARROW_FINISH_EATING, SWAP_ITEM_IN_HAND } public enum DigFace { BOTTOM, TOP, NORTH, SOUTH, WEST, EAST, SPECIAL; public static DigFace get(int face){ if(face <= 5){ return values()[face]; } return SPECIAL; } } }
33.380531
116
0.610286
26b5d638e2bc97a3363f0d13e30ce4cf2296e985
525
java
Java
edu/cmsoft/adapterexample/IConnectable.java
carlosdeveloper10/AdapterPatternExample
189f601f7f495f0fd9a420d505a31f5c53fa27dc
[ "MIT" ]
null
null
null
edu/cmsoft/adapterexample/IConnectable.java
carlosdeveloper10/AdapterPatternExample
189f601f7f495f0fd9a420d505a31f5c53fa27dc
[ "MIT" ]
null
null
null
edu/cmsoft/adapterexample/IConnectable.java
carlosdeveloper10/AdapterPatternExample
189f601f7f495f0fd9a420d505a31f5c53fa27dc
[ "MIT" ]
null
null
null
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package edu.cmsoft.adapterexample; /** * Provides a groups of methods to connect a plug. * * You can see it like a "electric outlet" * * @author carlos mario <carlos_programmer10@hotmail.com> */ public interface IConnectable { String connectToStandarLeftInput(); String connectToStandarRightInput(); }
25
80
0.706667
56b6ef3f65b3db311194620592d8ce0acaf12b78
817
go
Go
cmd/plannergen/plannergen.go
DaveHarrington/latex-yearly-planner
aef0648920360b22c7584a3b13c9db1f88e6f340
[ "MIT" ]
133
2021-08-11T16:47:10.000Z
2022-03-31T07:49:05.000Z
cmd/plannergen/plannergen.go
DaveHarrington/latex-yearly-planner
aef0648920360b22c7584a3b13c9db1f88e6f340
[ "MIT" ]
6
2021-08-11T17:27:38.000Z
2022-02-14T18:52:31.000Z
cmd/plannergen/plannergen.go
DaveHarrington/latex-yearly-planner
aef0648920360b22c7584a3b13c9db1f88e6f340
[ "MIT" ]
26
2021-08-11T17:36:51.000Z
2022-03-24T16:08:42.000Z
package main import ( "context" "errors" "fmt" "os" "strings" "github.com/kudrykv/latex-yearly-planner/app" ) var code int func main() { ctx := context.Background() defer func() { os.Exit(code) }() shouldExit("", app.New().RunContext(ctx, os.Args)) } func shouldExit(msg string, err error) bool { if err == nil { return false } code = 1 printErr(msg, err) return true } // nolint:forbidigo func printErr(msg string, err error) { if len(msg) > 0 { err = fmt.Errorf("%s: %w", msg, err) } indent := 0 a, b := errors.Unwrap(err), err for a != nil { index := strings.Index(b.Error(), a.Error()) fmt.Print(strings.Repeat(" ", indent)) fmt.Println(b.Error()[0:index]) indent += 2 a, b = errors.Unwrap(a), a } fmt.Print(strings.Repeat(" ", indent)) fmt.Println(b.Error()) }
14.589286
51
0.618115
46916c429d10fcf808b4277d88f60c7223cdd906
972
asm
Assembly
Data/INPUT_ADD.asm
Anikcb/Microprocessor
b17c805dce1b09c0a12f05c3f0014a5d40c2ed53
[ "MIT" ]
null
null
null
Data/INPUT_ADD.asm
Anikcb/Microprocessor
b17c805dce1b09c0a12f05c3f0014a5d40c2ed53
[ "MIT" ]
null
null
null
Data/INPUT_ADD.asm
Anikcb/Microprocessor
b17c805dce1b09c0a12f05c3f0014a5d40c2ed53
[ "MIT" ]
null
null
null
.Model Small .Stack 100h .Data .Code main Proc MOV ax, @data MOV ds, ax MOV AH, 1 INT 21h MOV bl, al SUB bl, 48 MOV AH, 2 MOV DL, 10 INT 21H MOV AH, 2 MOV DL, 13 INT 21H MOV AH, 1 INT 21h MOV bh, al SUB BH, 48 ADD bl, bh ;SUB bl, 60 MOV AH, 2 MOV DL, 10 INT 21H MOV AH, 2 MOV DL, 13 INT 21H mov CX, 8 PRINT: MOV AL, 2 MOV DL, '0' TEST BL, 10000000b JZ Zero mov DL, '1' Zero: INT 21h SHL BL, 1 LOOP PRINT MOV AH, 2 MOV DL, 'b' INT 21H Exit: MOV AH, 4ch INT 21h main ENDP END main
11.302326
30
0.328189
e81effc4e4c8204220d05aac06c099942d168869
3,675
swift
Swift
Project/Project/Base/Initialization.swift
PFei-He/Project-Swift
58abe08bb8c57dcb8da5bded13e992bc3722eea3
[ "MIT" ]
3
2016-06-04T14:03:56.000Z
2021-04-24T15:25:07.000Z
Project/Project/Base/Initialization.swift
PFei-He/Project-Swift
58abe08bb8c57dcb8da5bded13e992bc3722eea3
[ "MIT" ]
null
null
null
Project/Project/Base/Initialization.swift
PFei-He/Project-Swift
58abe08bb8c57dcb8da5bded13e992bc3722eea3
[ "MIT" ]
null
null
null
// // Initialization.swift // Project // // Created by PFei_He on 16/5/10. // Copyright © 2016年 PFei_He. All rights reserved. // // __________ __________ _________ ___________ ___________ __________ ___________ // | _______ \ | _______ \ / _______ \ |______ __|| _________| / _________||____ ____| // | | \ || | \ || / \ | | | | | | / | | // | |_______/ || |_______/ || | | | | | | |_________ | | | | // | ________/ | _____ _/ | | | | _ | | | _________|| | | | // | | | | \ \ | | | || | | | | | | | | | // | | | | \ \ | \_______/ || \____/ | | |_________ | \_________ | | // |_| |_| \_\ \_________/ \______/ |___________| \__________| |_| // // // The framework design by https://github.com/PFei-He/Project-Swift // // 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. // // ***** 初始化 ***** // import PFKitSwift class Initialization: NSObject { /** 初始化登录页 - Note: 无 - Parameter 无 - Returns: 根视图控制器 */ class func initLaunch() -> UIViewController { if NSUserDefaults.standardUserDefaults().boolForKey("launch") { let tabBarController = UIStoryboard(name: "Main", bundle: NSBundle.mainBundle()).instantiateInitialViewController() as! UITabBarController tabBarController.viewControllers = [UIStoryboard(name: "Home", bundle: NSBundle.mainBundle()).instantiateInitialViewController()!, UIStoryboard(name: "More", bundle: NSBundle.mainBundle()).instantiateInitialViewController()!] return tabBarController } else { NSUserDefaults.standardUserDefaults().setBool(true, forKey: "launch") NSUserDefaults.standardUserDefaults().synchronize() let viewController = UIStoryboard(name: "Guide", bundle: NSBundle.mainBundle()).instantiateInitialViewController() return viewController! } } /** 初始化主机地址 - Note: 无 - Parameter url: 主机地址 - Returns: 无 */ class func initHost(url: String) { BaseRequest.sharedInstance().hostAddress = url } /** 初始化接口地址 - Note: 无 - Parameter 无 - Returns: 无 */ class func initApi() { Api.sharedInstance().JSON = File.read(JSON: "api") } /** 初始化用户文件 - Note: 无 - Parameter 无 - Returns: 无 */ class func initUserFile() { File.create("User-Settings.txt") } }
38.684211
150
0.591565
9ad7c3b4cbc0110f6280d9eef82ddbb41b394b97
151
ps1
PowerShell
1-Lesson-Plans/07-Windows-Administration-and-Hardening/2/Activities/09_Removing_Packages/Solved/removepackages.ps1
BaleBase/lala
33193a7dd3563c7636493e52fa9a4956ec4b9dc6
[ "CNRI-Python" ]
null
null
null
1-Lesson-Plans/07-Windows-Administration-and-Hardening/2/Activities/09_Removing_Packages/Solved/removepackages.ps1
BaleBase/lala
33193a7dd3563c7636493e52fa9a4956ec4b9dc6
[ "CNRI-Python" ]
null
null
null
1-Lesson-Plans/07-Windows-Administration-and-Hardening/2/Activities/09_Removing_Packages/Solved/removepackages.ps1
BaleBase/lala
33193a7dd3563c7636493e52fa9a4956ec4b9dc6
[ "CNRI-Python" ]
1
2021-06-08T06:50:23.000Z
2021-06-08T06:50:23.000Z
$csv = Import-Csv -Path .\chocoactivity.csv foreach ($package in $csv) { choco uninstall -y $package.name Write-Output $package.name removed! }
30.2
43
0.701987
abda01e0b47ce5dc70ae996b02b92f62861d6872
1,267
go
Go
src/github.com/lss/webapp/main.go
mohamedkashifuddin/Web-application-with-golang
41589c82596ccb538464423351d54eaf87d36acf
[ "MIT" ]
null
null
null
src/github.com/lss/webapp/main.go
mohamedkashifuddin/Web-application-with-golang
41589c82596ccb538464423351d54eaf87d36acf
[ "MIT" ]
null
null
null
src/github.com/lss/webapp/main.go
mohamedkashifuddin/Web-application-with-golang
41589c82596ccb538464423351d54eaf87d36acf
[ "MIT" ]
null
null
null
package main import ( "html/template" "log" "net/http" ) func main() { templates := populateTemplates() //http.ListenAndServe(":3006", http.FileServer(http.Dir("/Users/Admin/Desktop/go-workspace/Web-application-with-golang/public/"))) http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) { requestedFile := r.URL.Path[1:] t := templates.Lookup(requestedFile + ".html") if t != nil { err := t.Execute(w, nil) if err != nil { log.Println(err) } } else { w.WriteHeader(http.StatusNotFound) } }) http.Handle("/img/", http.FileServer(http.Dir("/Users/Admin/Desktop/go-workspace/Web-application-with-golang/public/"))) http.Handle("/css/", http.FileServer(http.Dir("/Users/Admin/Desktop/go-workspace/Web-application-with-golang/public/"))) http.ListenAndServe(":8080", nil) } func populateTemplates() map[string]*template.Template { /*const templates = "/Users/Admin/Desktop/go-workspace/Web-application-with-golang/templates/" result := template.New("template") const basePath = templates template.Must(result.ParseGlob(basePath + "/*.html")) return result */ result := make(map[string]*template.Template) const basePath = "templetes" layout := template.Must(template.ParseFiles(basePath + "/_layout,html")) }
30.902439
131
0.705604
8174ce88f086baadf98a44f51fed20628a5aba49
12,191
rs
Rust
devices/src/usb/xhci/xhci_abi_schema.rs
g2p/crosvm
0e6bb00b90d5ee3c002fc95a22217afe90fe0c52
[ "BSD-3-Clause" ]
null
null
null
devices/src/usb/xhci/xhci_abi_schema.rs
g2p/crosvm
0e6bb00b90d5ee3c002fc95a22217afe90fe0c52
[ "BSD-3-Clause" ]
null
null
null
devices/src/usb/xhci/xhci_abi_schema.rs
g2p/crosvm
0e6bb00b90d5ee3c002fc95a22217afe90fe0c52
[ "BSD-3-Clause" ]
null
null
null
// Copyright 2018 The Chromium OS Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. use bit_field::*; use std; // TODO(jkwang) move these to bitfield crate. type B0 = BitField0; type B1 = BitField1; type B2 = BitField2; type B3 = BitField3; type B4 = BitField4; type B5 = BitField5; type B6 = BitField6; type B7 = BitField7; type B8 = BitField8; type B9 = BitField9; type B10 = BitField10; type B11 = BitField11; type B12 = BitField12; type B13 = BitField13; type B14 = BitField14; type B15 = BitField15; type B16 = BitField16; type B17 = BitField17; type B18 = BitField18; type B19 = BitField19; type B20 = BitField20; type B21 = BitField21; type B22 = BitField22; type B23 = BitField23; type B24 = BitField24; type B25 = BitField25; type B26 = BitField26; type B27 = BitField27; type B28 = BitField28; type B29 = BitField29; type B30 = BitField30; type B31 = BitField31; type B32 = BitField32; type B33 = BitField33; type B34 = BitField34; type B35 = BitField35; type B36 = BitField36; type B37 = BitField37; type B38 = BitField38; type B39 = BitField39; type B40 = BitField40; type B41 = BitField41; type B42 = BitField42; type B43 = BitField43; type B44 = BitField44; type B45 = BitField45; type B46 = BitField46; type B47 = BitField47; type B48 = BitField48; type B49 = BitField49; type B50 = BitField50; type B51 = BitField51; type B52 = BitField52; type B53 = BitField53; type B54 = BitField54; type B55 = BitField55; type B56 = BitField56; type B57 = BitField57; type B58 = BitField58; type B59 = BitField59; type B60 = BitField60; type B61 = BitField61; type B62 = BitField62; type B63 = BitField63; type B64 = BitField64; // Fixed size of all TRB types. const TRB_SIZE: usize = 16; // Size of segment table. const SEGMENT_TABLE_SIZE: usize = 16; // Generic TRB struct containing only fields common to all types. #[bitfield] #[derive(Clone, Copy, PartialEq)] pub struct Trb { parameter: B64, status: B32, cycle: B1, flags: B9, trb_type: B6, control: B16, } #[bitfield] #[derive(Clone, Copy)] pub struct NormalTrb { data_buffer: B64, trb_transfer_length: B17, td_size: B5, interrupter_target: B10, cycle: B1, evaluate_next_trb: B1, interrupt_on_short_packet: B1, no_snoop: B1, chain: B1, interrupt_on_completion: B1, immediate_data: B1, reserved: B2, block_event_interrupt: B1, trb_type: B6, reserved1: B16, } #[bitfield] #[derive(Clone, Copy)] pub struct SetupStageTrb { request_type: B8, request: B8, value: B16, index: B16, length: B16, trb_transfer_length: B17, reserved0: B5, interrupter_target: B10, cycle: B1, reserved1: B4, interrupt_on_completion: B1, immediate_data: B1, reserved2: B3, trb_type: B6, transfer_type: B2, reserved3: B14, } #[bitfield] #[derive(Clone, Copy)] pub struct DataStageTrb { data_buffer_pointer: B64, trb_transfer_length: B17, td_size: B5, interrupter_target: B10, cycle: B1, evaluate_next_trb: B1, interrupt_on_short_packet: B1, no_snoop: B1, chain: B1, interrupt_on_completion: B1, immediate_data: B1, reserved0: B3, trb_type: B6, direction: B1, reserved1: B15, } #[bitfield] #[derive(Clone, Copy)] pub struct StatusStageTrb { reserved0: B64, reserved1: B22, interrupter_target: B10, cycle: B1, evaluate_next_trb: B1, reserved2: B2, chain: B1, interrupt_on_completion: B1, reserved3: B4, trb_type: B6, direction: B1, reserved4: B15, } #[bitfield] #[derive(Clone, Copy)] pub struct IsochTrb { data_buffer_pointer: B64, trb_transfer_length: B17, td_size: B5, interrupter_target: B10, cycle: B1, evaulate_nex_trb: B1, interrupt_on_short_packet: B1, no_snoop: B1, chain: B1, interrupt_on_completion: B1, immediate_data: B1, transfer_burst_count: B2, block_event_interrupt: B1, trb_type: B6, tlbpc: B4, frame_id: B11, sia: B1, } #[bitfield] #[derive(Clone, Copy)] pub struct LinkTrb { ring_segment_pointer: B64, reserved0: B22, interrupter_target: B10, cycle: B1, toggle_cycle: B1, reserved1: B2, chain: B1, interrupt_on_completion: B1, reserved2: B4, trb_type: B6, reserved3: B16, } #[bitfield] #[derive(Clone, Copy)] pub struct EventDataTrb { event_data: B64, reserved0: B22, interrupter_target: B10, cycle: B1, evaluate_next_trb: B1, reserved1: B2, chain: B1, interrupt_on_completion: B1, reserved2: B3, block_event_interrupt: B1, trb_type: B6, reserved3: B16, } #[bitfield] #[derive(Clone, Copy)] pub struct NoopTrb { reserved0: B64, reserved1: B22, interrupter_target: B10, cycle: B1, evaluate_next_trb: B1, reserved2: B2, chain: B1, interrupt_on_completion: B1, reserved3: B4, trb_type: B6, reserved4: B16, } #[bitfield] #[derive(Clone, Copy)] pub struct DisableSlotCommandTrb { reserved0: B32, reserved1: B32, reserved2: B32, cycle: B1, reserved3: B9, trb_type: B6, reserved4: B8, slot_id: B8, } #[bitfield] #[derive(Clone, Copy)] pub struct AddressDeviceCommandTrb { input_context_pointer: B64, reserved: B32, cycle: B1, reserved2: B8, block_set_address_request: B1, trb_type: B6, reserved3: B8, slot_id: B8, } #[bitfield] #[derive(Clone, Copy)] pub struct ConfigureEndpointCommandTrb { input_context_pointer: B64, reserved0: B32, cycle: B1, reserved1: B8, deconfigure: B1, trb_type: B6, reserved2: B8, slot_id: B8, } #[bitfield] #[derive(Clone, Copy)] pub struct EvaluateContextCommandTrb { input_context_pointer: B64, reserved0: B32, cycle: B1, reserved1: B9, trb_type: B6, reserved2: B8, slot_id: B8, } #[bitfield] #[derive(Clone, Copy)] pub struct ResetEndpointCommandTrb { reserved0: B32, reserved1: B32, reserved2: B32, cycle: B1, reserved3: B8, transfer_state_preserve: B1, trb_type: B6, endpoint_id: B5, reserved4: B3, slot_id: B8, } #[bitfield] #[derive(Clone, Copy)] pub struct StopEndpointCommandTrb { reserved0: B32, reserved1: B32, reserved2: B32, cycle: B1, reserved3: B9, trb_type: B6, endpoint_id: B5, reserved4: B2, suspend: B1, slot_id: B8, } #[bitfield] #[derive(Clone, Copy)] pub struct SetTRDequeuePointerCommandTrb { dequeue_cycle_state: B1, stream_context_type: B3, dequeue_ptr: B60, reserved0: B16, stream_id: B16, cycle: B1, reserved1: B9, trb_type: B6, endpoint_id: B5, reserved3: B2, suspend: B1, slot_id: B8, } #[bitfield] #[derive(Clone, Copy)] pub struct ResetDeviceCommandTrb { reserved0: B32, reserved1: B32, reserved2: B32, cycle: B1, reserved3: B9, trb_type: B6, reserved4: B8, slot_id: B8, } #[bitfield] #[derive(Clone, Copy)] pub struct TransferEventTrb { trb_pointer: B64, trb_transfer_length: B24, completion_code: B8, cycle: B1, reserved0: B1, event_data: B1, reserved1: B7, trb_type: B6, endpoint_id: B5, reserved2: B3, slot_id: B8, } #[bitfield] #[derive(Clone, Copy)] pub struct CommandCompletionEventTrb { trb_pointer: B64, command_completion_parameter: B24, completion_code: B8, cycle: B1, reserved: B9, trb_type: B6, vf_id: B8, slot_id: B8, } #[bitfield] #[derive(Clone, Copy)] pub struct PortStatusChangeEventTrb { reserved0: B24, port_id: B8, reserved1: B32, reserved2: B24, completion_code: B8, cycle: B1, reserved3: B9, trb_type: B6, reserved4: B16, } #[bitfield] #[derive(Clone, Copy)] pub struct EventRingSegmentTableEntry { ring_segment_base_address: B64, ring_segment_size: B16, reserved2: B48, } #[bitfield] #[derive(Clone, Copy)] pub struct InputControlContext { // Xhci spec 6.2.5.1. drop_context_flags: B32, add_context_flags: B32, reserved0: B32, reserved1: B32, reserved2: B32, reserved3: B32, reserved4: B32, configuration_value: B8, interface_number: B8, alternate_setting: B8, reserved5: B8, } // Size of device context entries (SlotContext and EndpointContext). pub const DEVICE_CONTEXT_ENTRY_SIZE: usize = 32usize; #[bitfield] #[derive(Clone, Copy)] pub struct SlotContext { route_string: B20, speed: B4, reserved1: B1, mtt: B1, hub: B1, context_entries: B5, max_exit_latency: B16, root_hub_port_number: B8, num_ports: B8, tt_hub_slot_id: B8, tt_port_number: B8, tt_think_time: B2, reserved2: B4, interrupter_target: B10, usb_device_address: B8, reserved3: B19, slot_state: B5, reserved4: B32, reserved5: B32, reserved6: B32, reserved7: B32, } #[bitfield] #[derive(Clone, Copy)] pub struct EndpointContext { endpoint_state: B3, reserved1: B5, mult: B2, max_primary_streams: B5, linear_stream_array: B1, interval: B8, max_esit_payload_hi: B8, reserved2: B1, error_count: B2, endpoint_type: B3, reserved3: B1, host_initiate_disable: B1, max_burst_size: B8, max_packet_size: B16, dequeue_cycle_state: B1, reserved4: B3, tr_dequeue_pointer: B60, average_trb_length: B16, max_esit_payload_lo: B16, reserved5: B32, reserved6: B32, reserved7: B32, } /// Device context. #[derive(Clone, Copy, Debug)] pub struct DeviceContext { pub slot_context: SlotContext, pub endpoint_context: [EndpointContext; 31], } /// POD struct associates a TRB with its address in guest memory. This is /// useful because transfer and command completion event TRBs must contain /// pointers to the original TRB that generated the event. #[derive(Clone, Copy)] pub struct AddressedTrb { pub trb: Trb, pub gpa: u64, } pub type TransferDescriptor = Vec<AddressedTrb>; #[cfg(test)] mod tests { use super::*; #[test] fn check_struct_sizes() { assert_eq!(std::mem::size_of::<Trb>(), TRB_SIZE); assert_eq!(std::mem::size_of::<NormalTrb>(), TRB_SIZE); assert_eq!(std::mem::size_of::<SetupStageTrb>(), TRB_SIZE); assert_eq!(std::mem::size_of::<DataStageTrb>(), TRB_SIZE); assert_eq!(std::mem::size_of::<StatusStageTrb>(), TRB_SIZE); assert_eq!(std::mem::size_of::<IsochTrb>(), TRB_SIZE); assert_eq!(std::mem::size_of::<LinkTrb>(), TRB_SIZE); assert_eq!(std::mem::size_of::<EventDataTrb>(), TRB_SIZE); assert_eq!(std::mem::size_of::<NoopTrb>(), TRB_SIZE); assert_eq!(std::mem::size_of::<DisableSlotCommandTrb>(), TRB_SIZE); assert_eq!(std::mem::size_of::<AddressDeviceCommandTrb>(), TRB_SIZE); assert_eq!(std::mem::size_of::<ConfigureEndpointCommandTrb>(), TRB_SIZE); assert_eq!(std::mem::size_of::<EvaluateContextCommandTrb>(), TRB_SIZE); assert_eq!(std::mem::size_of::<ResetEndpointCommandTrb>(), TRB_SIZE); assert_eq!(std::mem::size_of::<StopEndpointCommandTrb>(), TRB_SIZE); assert_eq!( std::mem::size_of::<SetTRDequeuePointerCommandTrb>(), TRB_SIZE ); assert_eq!(std::mem::size_of::<ResetDeviceCommandTrb>(), TRB_SIZE); assert_eq!(std::mem::size_of::<TransferEventTrb>(), TRB_SIZE); assert_eq!(std::mem::size_of::<CommandCompletionEventTrb>(), TRB_SIZE); assert_eq!(std::mem::size_of::<PortStatusChangeEventTrb>(), TRB_SIZE); assert_eq!( std::mem::size_of::<EventRingSegmentTableEntry>(), SEGMENT_TABLE_SIZE ); assert_eq!(std::mem::size_of::<InputControlContext>(), 32); assert_eq!( std::mem::size_of::<SlotContext>(), DEVICE_CONTEXT_ENTRY_SIZE ); assert_eq!( std::mem::size_of::<EndpointContext>(), DEVICE_CONTEXT_ENTRY_SIZE ); assert_eq!( std::mem::size_of::<DeviceContext>(), 32 * DEVICE_CONTEXT_ENTRY_SIZE ); } }
22.409926
81
0.65737
e50f5e1bff9ff3d3a03eb0a772e7854c1aeef8c2
839
html
HTML
dictionary/templates/dictionary/play_game.html
imcinerney/argot
570e90fa6a4637b61e8ca1f223642a9fe060308b
[ "MIT" ]
2
2018-12-15T21:06:40.000Z
2018-12-21T01:19:13.000Z
dictionary/templates/dictionary/play_game.html
imcinerney/argot
570e90fa6a4637b61e8ca1f223642a9fe060308b
[ "MIT" ]
21
2018-11-02T16:47:38.000Z
2019-02-26T02:39:38.000Z
dictionary/templates/dictionary/play_game.html
imcinerney/argot
570e90fa6a4637b61e8ca1f223642a9fe060308b
[ "MIT" ]
null
null
null
{% extends 'argot/default_header.html' %} {% block content %} <h1>Welcome to the vocab game. The word list is {{word_list.list_name}}</h1> <h1>{{msg}}</h1> <p>Select the word that most closely describes {{ test_word }}</p> <form action="{% url 'dictionary:play_game' word_list.id %}" method="POST"> {% csrf_token %} {{form.base_word}}<input type='hidden' name='base_word' value={{test_word}}> {% for choice in choices %} {% if choice == choice_synonym %} {{form.correct_choice}}<input type='hidden' name='correct_choice' value={{choice}}> <input type='radio' name='choice' value="{{choice}}">{{choice}}</input> {% else %} <input type='radio' name='choice' value="{{choice}}">{{choice}}</input> {% endif %} {% endfor %} <input type="submit" value='Submit'/> </form> <a href='/'><button>Home</button></a> {% endblock %}
36.478261
87
0.643623
78b55e40846cf4a6499d4bb4818e7e5024b84a5a
128
ps1
PowerShell
Libraries/fact.ps1
meop/powershell
b016879c94f4c17ea4ee4e9d8ff26d178225aa80
[ "MIT" ]
null
null
null
Libraries/fact.ps1
meop/powershell
b016879c94f4c17ea4ee4e9d8ff26d178225aa80
[ "MIT" ]
null
null
null
Libraries/fact.ps1
meop/powershell
b016879c94f4c17ea4ee4e9d8ff26d178225aa80
[ "MIT" ]
null
null
null
function Get-Fact ( [Parameter(Mandatory = $false)] $Config = (Get-ProfileConfig) ) { Read-Fact $Config['fact']['uri'] }
25.6
65
0.632813
d5462325b6bedd015b3dad2ea0f885cb9a86bb29
848
swift
Swift
V2EX/V2EX/Class/Protocol/SegueHandlerType.swift
ZwxWhite/V2EX
b0c5bc4481a6b3d3ba08542f9e7ac2e48c571f62
[ "MIT" ]
9
2015-12-24T07:05:07.000Z
2017-10-31T07:35:38.000Z
V2EX/V2EX/Class/Protocol/SegueHandlerType.swift
ZwxWhite/V2EX
b0c5bc4481a6b3d3ba08542f9e7ac2e48c571f62
[ "MIT" ]
null
null
null
V2EX/V2EX/Class/Protocol/SegueHandlerType.swift
ZwxWhite/V2EX
b0c5bc4481a6b3d3ba08542f9e7ac2e48c571f62
[ "MIT" ]
null
null
null
// // SegueHandlerType.swift // V2EX // // Created by wenxuan.zhang on 16/3/2. // Copyright © 2016年 张文轩. All rights reserved. // import UIKit protocol SegueHandlerType { associatedtype SegueIdentifier: RawRepresentable } extension SegueHandlerType where Self: UIViewController, SegueIdentifier.RawValue == String { func performSegueWithIdentifier(segueIdentifier: SegueIdentifier, sender: AnyObject?) { performSegueWithIdentifier(segueIdentifier.rawValue, sender: sender) } func segueIdentifierForSegue(segue: UIStoryboardSegue) -> SegueIdentifier { guard let identifier = segue.identifier, segueIdentifier = SegueIdentifier(rawValue: identifier) else { fatalError("Invalid segue identifier \(segue.identifier).") } return segueIdentifier } }
29.241379
93
0.705189
dd85fc6d228d1b99b60703ff60fcffe3d0f945ab
5,262
php
PHP
util.php
cmllr/honeypress
38b4f1d2968c6a7f056e0e1dcae8c34347f6990d
[ "Apache-2.0" ]
null
null
null
util.php
cmllr/honeypress
38b4f1d2968c6a7f056e0e1dcae8c34347f6990d
[ "Apache-2.0" ]
null
null
null
util.php
cmllr/honeypress
38b4f1d2968c6a7f056e0e1dcae8c34347f6990d
[ "Apache-2.0" ]
null
null
null
<?php /* Copyright 2021-2022 https://github.com/cmllr Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ function create_log_folder($id, $credentials) { if (!$id) { return; /* no empty id folders */ } $rootFolder = ABSPATH . "/logs"; if (!is_dir($rootFolder)) { mkdir($rootFolder); } if (!is_dir($rootFolder . "/" . $id)) { mkdir($rootFolder . "/" . $id); } file_put_contents($rootFolder . "/" . $id . "/credentials.json", json_encode($credentials)); $data = get_request_env(); $data["credentials"] = $credentials; $userName = $credentials["credentials"]["user"]; $password = $credentials["credentials"]["password"]; log_action($id, $data, false, "Created session folder $id ($userName:$password)", "session_create"); } function generateRandomString($length = 10) { $characters = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'; $charactersLength = strlen($characters); $randomString = ''; for ($i = 0; $i < $length; $i++) { $randomString .= $characters[rand(0, $charactersLength - 1)]; } return $randomString; } /** * Get an generic info about the request * * @returns get, post, target, userAgent, referrer, ip */ function get_request_env() { $xmlContent = defined("XMLRPC_REQUEST") ? file_get_contents('php://input') : ""; $result = array( "get" => $_GET, "post" => $_POST, "target" => get_value("REQUEST_URI", $_SERVER), "userAgent" => get_value("HTTP_USER_AGENT", $_SERVER), "referrer" => get_value("HTTP_REFERER", $_SERVER), "ip" => get_ip(), "notFound" => is_404(), "isAdmin" => is_admin(), "isFailedLogin" => false ); if (defined("XMLRPC_REQUEST")) { $result["isXMLRPC"] = true; $result["xmlPayload"] = $xmlContent; } return $result; } function getSetting($key) { $defaults = array( "mask" => true, "hidePlugin" => true, "blockedLogins" => [ "admin" ], "existingUsersOnly" => true, "deleteAfterLogin" => true, "generatorTag" => "WordPress 5.7", "allowUploads" => true, "expireUser" => 60, "catchComments" => true, "watchFiles" => true, "userRole" => "contributor", "logStyle" => "flat" ); $configPath = ABSPATH . "/honeypress.json"; $config = null; if (is_file($configPath)) { $config = json_decode(file_get_contents($configPath)); } if ($config) { $configKeys = get_object_vars($config); if (in_array($key, $configKeys)) { return $config->{$key}; } } $keys = array_keys($defaults); if (in_array($key, $keys)) { return $defaults[$key]; } return null; } /** * Pulls a needle out of a haystack * * @returns the value or null */ function get_value($needle, $haystack) { $keys = array_keys($haystack); if (in_array($needle, $keys)) { return $haystack[$needle]; } return null; } /** * Return the client IP * * @return the client ip */ function get_ip() { if (!empty($_SERVER['HTTP_CLIENT_IP'])) { $ip = $_SERVER['HTTP_CLIENT_IP']; } elseif (!empty($_SERVER['HTTP_X_FORWARDED_FOR'])) { $ip = $_SERVER['HTTP_X_FORWARDED_FOR']; } else { $ip = $_SERVER['REMOTE_ADDR']; } return $ip; } /** * Return a global identifier for a file, consisting out of the modify time, a path hash (sha1) and a CRC32 checksum of the file */ function get_file_id($filename){ $mtime = filemtime($filename); $pathHash = sha1($filename); $hash = hash_file("CRC32", $filename, false); return $mtime.$pathHash.$hash; } /* https://stackoverflow.com/questions/24783862/list-all-the-files-and-folders-in-a-directory-with-php-recursive-function */ function getDirContents($dir, &$results = array()) { $files = scandir($dir); foreach ($files as $key => $value) { $path = realpath($dir . DIRECTORY_SEPARATOR . $value); if (!is_dir($path)) { if (strpos($path, "honeypress") === false && strpos($path, "uploads") == false){ $results[get_file_id($path)] = $path; } } else if ($value != "." && $value != "..") { if (strpos($path, "logs") === false){ getDirContents($path, $results); } } } return $results; } /** * Checks if the current user is a blocked user, e. g. preventing logs and deletion */ function is_blocked_user() { if (!function_exists("wp_get_current_user")) { return false; } $user = wp_get_current_user(); if (!$user){ return true; } $name = $user->user_login; $blockedLogins = getSetting("blockedLogins"); return in_array($name, $blockedLogins); }
27.123711
129
0.605663
3d53804dbfff7cd208c660824243723710752865
491
asm
Assembly
data/sprites/sprite_mons.asm
genterz/pokecross
5e62ab6c23e624ea82d599af306f9c52d768a8b4
[ "blessing" ]
28
2019-11-08T07:19:00.000Z
2021-12-20T10:17:54.000Z
data/sprites/sprite_mons.asm
genterz/pokecross
5e62ab6c23e624ea82d599af306f9c52d768a8b4
[ "blessing" ]
13
2020-01-11T17:00:40.000Z
2021-09-14T01:27:38.000Z
data/sprites/sprite_mons.asm
genterz/pokecross
5e62ab6c23e624ea82d599af306f9c52d768a8b4
[ "blessing" ]
22
2020-05-28T17:31:38.000Z
2022-03-07T20:49:35.000Z
SpriteMons: ; entries correspond to SPRITE_* constants past SPRITE_POKEMON db UNOWN db GEODUDE db GROWLITHE db WEEDLE db SHELLDER db ODDISH db GENGAR db ZUBAT db MAGIKARP db SQUIRTLE db TOGEPI db BUTTERFREE db DIGLETT db POLIWAG db PIKACHU db CLEFAIRY db CHARMANDER db JYNX db STARMIE db BULBASAUR db JIGGLYPUFF db GRIMER db EKANS db PARAS db TENTACOOL db TAUROS db MACHOP db VOLTORB db LAPRAS db RHYDON db MOLTRES db SNORLAX db GYARADOS db LUGIA db HO_OH
12.921053
62
0.761711
31d7b5335b7babfb59e036eb1fd7721551ae61c7
3,497
ps1
PowerShell
functions/Remove-DbaAgentOperator.ps1
kaysauter/dbatools
75aa7e330a161883713107807e511c4a186569ea
[ "MIT" ]
1
2021-06-29T08:18:21.000Z
2021-06-29T08:18:21.000Z
functions/Remove-DbaAgentOperator.ps1
kaysauter/dbatools
75aa7e330a161883713107807e511c4a186569ea
[ "MIT" ]
1
2019-11-05T02:02:22.000Z
2019-11-05T02:02:22.000Z
functions/Remove-DbaAgentOperator.ps1
slimrich/dbatools
eb515c5ef82354b28ece0b3eaa2e72ff46e05b42
[ "MIT" ]
1
2016-08-24T10:53:18.000Z
2016-08-24T10:53:18.000Z
function Remove-DbaAgentOperator { <# .SYNOPSIS Removes a new operator on an instance. .DESCRIPTION Drop an operator from SQL Agent. .PARAMETER SqlInstance The target SQL Server instance or instances. You must have sysadmin access and server version must be SQL Server version 2000 or greater. .PARAMETER SqlCredential Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. For MFA support, please use Connect-DbaInstance. .PARAMETER Operator Name of the operator in SQL Agent. .PARAMETER WhatIf Shows what would happen if the command were to run. No actions are actually performed. .PARAMETER Confirm Prompts you for confirmation before executing any changing operations within the command. .PARAMETER InputObject SMO Server Objects (pipeline input from Connect-DbaInstance) .PARAMETER EnableException By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch. .NOTES Tags: Agent, Operator Author: Tracy Boggiano (@TracyBoggiano), databasesuperhero.com Website: https://dbatools.io Copyright: (c) 2018 by dbatools, licensed under MIT License: MIT https://opensource.org/licenses/MIT .LINK https://dbatools.io/Remove-DbaAgentOperator .EXAMPLE PS:\> Remove-DbaAgentOperator -SqlInstance sql01 -Operator DBA This removes an operator named DBA from the instance. #> [CmdletBinding(DefaultParameterSetName = "Default", SupportsShouldProcess, ConfirmImpact = "High")] param ( [DbaInstanceParameter[]]$SqlInstance, [PSCredential]$SqlCredential, [parameter(Mandatory)] [string]$Operator, [parameter(ValueFromPipeline)] [Microsoft.SqlServer.Management.Smo.Server[]]$InputObject, [switch]$EnableException ) begin { } process { foreach ($instance in $SqlInstance) { try { $InputObject += Connect-SqlInstance -SqlInstance $instance -SqlCredential $SqlCredential } catch { Stop-Function -Message "Failed" -Category ConnectionError -ErrorRecord $_ -Target $instance -Continue } } foreach ($server in $InputObject) { if ((Get-DbaAgentOperator -SqlInstance $server -Operator $Operator).Count -ne 0) { if ($Pscmdlet.ShouldProcess($server, "Dropping operator $operator")) { try { Write-Message -Level Verbose -Message "Dropping Operator $operator" $server.JobServer.Operators[$operator].Drop() Get-DbaAgentOperator -SqlInstance $server -Operator $Operator } catch { Stop-Function -Message "Issue dropping operator" -Category InvalidOperation -ErrorRecord $_ -Target $server } } } } } }
38.428571
145
0.652845
4d9b14749c5695bcc479382e499c7c940e17b931
1,253
asm
Assembly
programs/oeis/020/A020989.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
22
2018-02-06T19:19:31.000Z
2022-01-17T21:53:31.000Z
programs/oeis/020/A020989.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
41
2021-02-22T19:00:34.000Z
2021-08-28T10:47:47.000Z
programs/oeis/020/A020989.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
5
2021-02-24T21:14:16.000Z
2021-08-09T19:48:05.000Z
; A020989: a(n) = (5*4^n - 2)/3. ; 1,6,26,106,426,1706,6826,27306,109226,436906,1747626,6990506,27962026,111848106,447392426,1789569706,7158278826,28633115306,114532461226,458129844906,1832519379626,7330077518506,29320310074026,117281240296106,469124961184426,1876499844737706,7505999378950826,30023997515803306,120095990063213226,480383960252852906,1921535841011411626,7686143364045646506,30744573456182586026,122978293824730344106,491913175298921376426,1967652701195685505706,7870610804782742022826,31482443219130968091306,125929772876523872365226,503719091506095489460906,2014876366024381957843626,8059505464097527831374506,32238021856390111325498026,128952087425560445301992106,515808349702241781207968426,2063233398808967124831873706,8252933595235868499327494826,33011734380943473997309979306,132046937523773895989239917226,528187750095095583956959668906,2112751000380382335827838675626,8451004001521529343311354702506,33804016006086117373245418810026,135216064024344469492981675240106,540864256097377877971926700960426,2163457024389511511887706803841706,8653828097558046047550827215366826,34615312390232184190203308861467306,138461249560928736760813235445869226,553844998243714947043252941783476906 mov $1,4 pow $1,$0 mul $1,5 div $1,3 mov $0,$1
139.222222
1,171
0.916999
90a43dd2bd8b809b5f55cd0954b119c538d84242
9,686
py
Python
src/sas/sasgui/guiframe/local_perspectives/plotting/SimplePlot.py
opendatafit/sasview
c470220eecfc9f6d8a0e27e2ea8919dcb1b38e39
[ "BSD-3-Clause" ]
null
null
null
src/sas/sasgui/guiframe/local_perspectives/plotting/SimplePlot.py
opendatafit/sasview
c470220eecfc9f6d8a0e27e2ea8919dcb1b38e39
[ "BSD-3-Clause" ]
1
2021-09-20T13:20:35.000Z
2021-09-20T13:20:35.000Z
src/sas/sasgui/guiframe/local_perspectives/plotting/SimplePlot.py
opendatafit/sasview
c470220eecfc9f6d8a0e27e2ea8919dcb1b38e39
[ "BSD-3-Clause" ]
null
null
null
""" Simple Plot Frame : supporting only copy, print, scale """ import wx from sas.sasgui.guiframe.local_perspectives.plotting.Plotter2D import ModelPanel2D as PlotPanel from sas.sasgui.plottools.toolbar import NavigationToolBar from sas.sasgui.plottools.plottables import Graph from sas.sasgui.guiframe.utils import PanelMenu from sas.sasgui.guiframe.events import StatusEvent class SimplePlotPanel(PlotPanel): """ PlotPanel for 1d and 2d """ _window_caption = 'Simple Plot' def __init__(self, parent, id=-1, color=None, dpi=None, style=wx.NO_FULL_REPAINT_ON_RESIZE, **kwargs): """ Init """ PlotPanel.__init__(self, parent, id=id, style=style, **kwargs) self.SetColor(wx.WHITE) self.toolbar = NavigationToolBar(parent=self, canvas=self.canvas) self.toolbar.Show(False) self.scale = parent.scale self.window_caption = self._window_caption def draw(self): """ """ self.resizing = False self.canvas.set_resizing(self.resizing) self.canvas.draw() def add_toolbar(self): """ """ pass def onContextMenu(self, event): """ 2D plot context menu :param event: wx context event """ slicerpop = PanelMenu() slicerpop.set_plots(self.plots) slicerpop.set_graph(self.graph) wx_id = wx.NewId() slicerpop.Append(wx_id, '&Save Image') wx.EVT_MENU(self, wx_id, self.onSaveImage) wx_id = wx.NewId() slicerpop.Append(wx_id, '&Print Image', 'Print image') wx.EVT_MENU(self, wx_id, self.onPrint) wx_id = wx.NewId() slicerpop.Append(wx_id, '&Copy to Clipboard', 'Copy to the clipboard') wx.EVT_MENU(self, wx_id, self.OnCopyFigureMenu) if self.dimension != 3: slicerpop.AppendSeparator() wx_id = wx.NewId() slicerpop.Append(wx_id, '&Toggle Grid On/Off', 'Toggle Grid On/Off') wx.EVT_MENU(self, wx_id, self.on_grid_onoff) if self.data.__class__.__name__ == 'Data1D': slicerpop.AppendSeparator() wx_id = wx.NewId() slicerpop.Append(wx_id, '&Change Scale') wx.EVT_MENU(self, wx_id, self._onProperties) elif self.data2D.__class__.__name__ == 'Data2D': slicerpop.AppendSeparator() wx_id = wx.NewId() slicerpop.Append(wx_id, '&Toggle Linear/Log Scale') wx.EVT_MENU(self, wx_id, self._onToggleScale) try: pos_evt = event.GetPosition() pos = self.ScreenToClient(pos_evt) except: pos_x, pos_y = self.toolbar.GetPosition() pos = (pos_x, pos_y + 5) self.PopupMenu(slicerpop, pos) if self.scale is not None: self.parent.scale2d = self.scale def on_grid_onoff(self, event): """ On grid on/off """ switch = (not self.grid_on) self.onGridOnOff(switch) def onLeftDown(self, event): """ left button down and ready to drag """ # Check that the LEFT button was pressed if event.button == 1: self.leftdown = True ax = event.inaxes if ax is not None: self.xInit, self.yInit = event.xdata, event.ydata try: pos_x = float(event.xdata) # / size_x pos_y = float(event.ydata) # / size_y pos_x = "%8.3g" % pos_x pos_y = "%8.3g" % pos_y self.position = str(pos_x), str(pos_y) wx.PostEvent(self.parent, StatusEvent(status=self.position)) except: self.position = None def _OnReSize(self, event): """ On response of the resize of a panel, set axes_visiable False """ self.resizing = False if self.x_size is not None: if self.x_size == self.GetSize(): self.canvas.set_resizing(self.resizing) return self.x_size = self.GetSize() # Ready for another event # Do not remove this Skip. # Otherwise it will get runtime error on wx>=2.9. event.Skip() # set the resizing flag self.canvas.set_resizing(self.resizing) pos_x, pos_y = self.GetPosition() if pos_x != 0 and pos_y != 0: self.size, _ = self.GetClientSize() self.SetSizer(self.sizer) def on_set_focus(self, event): """ By pass default boundary blue color drawing """ pass def on_kill_focus(self, event): """ Reset the panel color """ pass def show_plot(self, plot): """ Show the plot """ _yaxis, _yunit = plot.get_yaxis() _xaxis, _xunit = plot.get_xaxis() self.data = plot self.plots[plot.name] = plot # Axis scales if plot.xtransform is not None: self.xLabel = plot.xtransform if plot.ytransform is not None: self.yLabel = plot.ytransform # Init graph self.graph = Graph() # Add plot: Handles both 1D and 2D self.graph.add(self.data) self.canvas.set_resizing(False) if self.data.__class__.__name__ == 'Data2D': self.data2D = plot elif self.data.__class__.__name__ == 'Data1D': self._onEVT_FUNC_PROPERTY(show=False) # Axes self.graph.xaxis(_xaxis, _xunit) self.graph.yaxis(_yaxis, _yunit) self.xaxis(_xaxis, _xunit) self.yaxis(_yaxis, _yunit) self.set_xscale(self.xscale) self.set_yscale(self.yscale) self.graph.render(self) class PlotFrame(wx.Frame): """ Frame for simple plot """ def __init__(self, parent, id, title, scale='log_{10}', size=wx.Size(550, 470), show_menu_icons=True): """ comment :param parent: parent panel/container """ # Initialize the Frame object wx.Frame.__init__(self, parent, id, title, wx.DefaultPosition, size) # Panel for 1D plot self.parent = parent self._mgr = None self.menu_bar = None self._default_save_location = None self.scale = scale self._show_menu_icons = show_menu_icons self.plotpanel = SimplePlotPanel(self, -1) self._build_menubar() def _build_menubar(self): """ Build menubar """ tsize = (13, 13) save_bmp = wx.ArtProvider.GetBitmap(wx.ART_FILE_SAVE_AS, wx.ART_TOOLBAR, tsize) quit_bmp = wx.ArtProvider.GetBitmap(wx.ART_QUIT, wx.ART_TOOLBAR, tsize) print_bmp = wx.ArtProvider.GetBitmap(wx.ART_PRINT, wx.ART_TOOLBAR, tsize) copy_bmp = wx.ArtProvider.GetBitmap(wx.ART_COPY, wx.ART_TOOLBAR, tsize) menu_bar = wx.MenuBar() menu = wx.Menu() id = wx.NewId() save_item = wx.MenuItem(menu, id, "&Save Image") menu.AppendItem(save_item) wx.EVT_MENU(self, id, self.on_save_file) id = wx.NewId() print_item = wx.MenuItem(menu, id, "&Print Image") menu.AppendItem(print_item) wx.EVT_MENU(self, id, self.on_print_image) menu.AppendSeparator() id = wx.NewId() quit_item = wx.MenuItem(menu, id, "&Quit") menu.AppendItem(quit_item) menu_bar.Append(menu, "&File") wx.EVT_MENU(self, id, self.on_close) menu_edit = wx.Menu() id = wx.NewId() copy_item = wx.MenuItem(menu_edit, id, "&Copy") menu_edit.AppendItem(copy_item) wx.EVT_MENU(self, id, self.on_copy_image) if self._show_menu_icons: save_item.SetBitmap(save_bmp) print_item.SetBitmap(print_bmp) quit_item.SetBitmap(quit_bmp) copy_item.SetBitmap(copy_bmp) menu_bar.Append(menu_edit, "&Edit") self.menu_bar = menu_bar self.SetMenuBar(self.menu_bar) def set_plot_unfocus(self): """ un focusing """ pass def add_plot(self, plot): """ Add Image """ plotpanel = self.plotpanel plotpanel.scale = self.scale plotpanel.show_plot(plot) def set_schedule_full_draw(self, panel, func): """ """ self.plotpanel.resizing = False def im_show(self, img): """ Show background image :Param img: [imread(path) from matplotlib.pyplot] """ self.plotpanel.subplot.imshow(img) def set_schedule(self, schedule=False): """ """ #Not implemented def disable_app_menu(self, panel): """ """ #Not implemented def get_current_context_menu(self, plotpanel): """ """ #Not implemented def on_save_file(self, event): """ Save image """ self.plotpanel.onSaveImage(event) def on_print_image(self, event): """ Save image """ self.plotpanel.onPrint(event) def on_print_preview(self, event): """ Save image """ self.plotpanel.onPrinterPreview(event) def on_copy_image(self, event): """ Save image """ self.plotpanel.OnCopyFigureMenu(event) def on_close(self, event): """ On Close """ try: self.parent.set_scale2d(self.scale) self.parent.on_panel_close(event) except: self.Destroy()
29.530488
95
0.569069
717a3c14bce0fe1c892e98a93b391b6460e69d8b
40
ts
TypeScript
js/roundAboutRight16.d.ts
ArcGIS/calcite-ui-icons-public
5d3ae99698240e753e020f4fa3cb0386e01e3fb7
[ "FSFAP" ]
56
2018-08-06T18:28:15.000Z
2022-03-13T05:12:05.000Z
js/roundAboutRight16.d.ts
ArcGIS/calcite-ui-icons-public
5d3ae99698240e753e020f4fa3cb0386e01e3fb7
[ "FSFAP" ]
155
2018-08-09T16:18:29.000Z
2022-03-19T00:53:10.000Z
js/roundAboutRight16.d.ts
ArcGIS/calcite-ui-icons-public
5d3ae99698240e753e020f4fa3cb0386e01e3fb7
[ "FSFAP" ]
18
2019-01-10T04:55:33.000Z
2022-03-25T13:15:12.000Z
export const roundAboutRight16: string;
20
39
0.85
19e7c9d9c2b6e9231b6a2814da62a79579b044bc
1,654
swift
Swift
part-1-functions/part-1-functions-starter.playground/Pages/06 - Challenge - Overloads & Parameters.xcplaygroundpage/Contents.swift
EdwardGoomba/swiftFunctionTypes
7bbfe58f7d559f6f46cc44998d051637fd1984f6
[ "Apache-2.0" ]
null
null
null
part-1-functions/part-1-functions-starter.playground/Pages/06 - Challenge - Overloads & Parameters.xcplaygroundpage/Contents.swift
EdwardGoomba/swiftFunctionTypes
7bbfe58f7d559f6f46cc44998d051637fd1984f6
[ "Apache-2.0" ]
null
null
null
part-1-functions/part-1-functions-starter.playground/Pages/06 - Challenge - Overloads & Parameters.xcplaygroundpage/Contents.swift
EdwardGoomba/swiftFunctionTypes
7bbfe58f7d559f6f46cc44998d051637fd1984f6
[ "Apache-2.0" ]
null
null
null
//: [⇐ Previous: 05 - Advanced Parameters](@previous) //: ## Episode 06 - Challenge - Overloads & Parameters /*: ## Challenge 1 Write two possible overloads for the function below. You can use... * a different number of parameters * different argument labels * different parameter types * different return types */ func multiply(number: Int, by multiplier: Int) -> Int { return number * multiplier } // TODO: Write solution here func multiply(_ number: Int, _ multiplier: Int) -> Int { return number * multiplier } func multiply(number: Double, by multiplier: Double) -> Double { return number * multiplier } /*: ## Challenge 2 Eliminate the overloads below by using a default value for a parameter. */ // -------------------------------------- //func printMultipleOf(multiplier: Int, number: Int) { // print("\(multiplier) * \(number) = \(multiplier * number)") //} // //func printMultipleOf(multiplier: Int = 1) { // print("\(multiplier) * 1) = \(multiplier * 1)") //} // -------------------------------------- // TODO: Write solution here func printMultipleOf(multiplier: Int, number: Int = 1) { print("\(multiplier) * \(number) = \(multiplier * number)") } // -------------------------------------- printMultipleOf(multiplier: 7) printMultipleOf(multiplier: 11, number: 4) // -------------------------------------- /*: ## Challenge 3 1 - Change the function below so that it can modify the right parameter. 2 - Call the function! */ var score = 50 func update(score: inout Int, withPoints points: Int) { score += points } update(score: &score, withPoints: 100) //: [⇒ Next: 07 - Functions as Parameters](@next)
23.971014
73
0.614268
16d0d3e577a7e3f9dbe32c61ada47ceabc161b39
11,433
ts
TypeScript
src/main.ts
LonelySteve/Handwriting
5e39509312c4ccaea3a633181291d2d069fc643b
[ "MIT" ]
null
null
null
src/main.ts
LonelySteve/Handwriting
5e39509312c4ccaea3a633181291d2d069fc643b
[ "MIT" ]
null
null
null
src/main.ts
LonelySteve/Handwriting
5e39509312c4ccaea3a633181291d2d069fc643b
[ "MIT" ]
null
null
null
import debounce = require("lodash.debounce"); import merge = require("lodash.merge"); import { HandwritingData, RecognitionResult } from "./abstract"; import { addEventListeners, removeEventListeners } from "./events"; import { Service } from "./services"; import { getQQShuruService } from "./services/qqShuru"; export interface HandwritingOptions { /** * 自动提交的间隔,单位:毫秒 * * 缺省情况下禁用自动提交,这意味着客户端代码需要自行触发提交,在触发提交时,是否清除画板是可选的 */ autoSubmitInterval?: number; /** * 自动提交并清空画板 * * 缺省情况下,会自动提交并清空画板 */ autoSubmitWithClearCanvas?: boolean; /** * 双击清除画板内容,在自动提交生效的情况下,此选项无效 */ dblclickClear?: boolean; /** * 压感系数,缺省情况下禁用压感 */ pressureFactor?: number; /** * 笔触颜色,缺省情况下使用黑色 */ style?: string; /** * 笔触宽度,缺省情况下为 1 */ width?: number; /** * canvas 元素的 zIndex,缺省为 100 */ zIndex?: number; /** * 禁用 resize 事件处理器,目前可能存在 BUG */ disableResizeHandler?: boolean; /** * 缩放倍率 */ zoomRatio?: number; /** * 在某个元素开始手写输入时的回调函数 */ onStart?: (this: Handwriting, element: HTMLElement) => any; /** * 当某个元素结束手写输入后的回调函数 * * 开发者应通过此回调处理识别结果或者错误 */ onEnd?: ( this: Handwriting, bundle: { data: HandwritingData; element: HTMLElement; result?: RecognitionResult; error?: Error; } ) => any; /** * 当调用 reset 方法准备卸载并重置所有元素之前的回调函数 */ onBeforeReset?: (this: Handwriting) => any; } interface Context { data: HandwritingData; canvasElement: HTMLCanvasElement; properties: Map<HTMLElement, object>; listeners: Map<EventTarget, Record<string, Function>>; query: (withClearCanvas?: boolean) => Promise<RecognitionResult>; forceUpdateCanvasSize: () => void; } class EmptyElementError extends Error { constructor(public readonly element: HTMLElement) { super(`<${element.tagName}/> is empty element`); } } type ElementCollection = string | HTMLElement[] | JQuery; function $(collection: ElementCollection) { let elements = undefined; if (typeof collection === "string") { elements = Array.prototype.slice.call( document.querySelectorAll(collection) ); } if (collection instanceof Array) { elements = collection; } if (elements) { return { map: elements.map.bind(elements) }; } return { map: (callback: (element: HTMLElement, index: number) => any) => (collection as JQuery) .map(function (i) { return callback(this, i); }) .toArray(), }; } export default class Handwriting { private readonly elements: Map<HTMLElement, Context> = new Map(); protected readonly service: Service; /** * 实例化一个 Handwriting 对象 * * @param elements 要挂载的元素集合 * @param service 手写识别的服务,可以是字符串,此时表示使用 QQShuru API 规范的服务入口路径 * @param options Handwriting 的选项 */ constructor( elements: ElementCollection, service: Service | string, private options: HandwritingOptions = {} ) { this.service = typeof service === "string" ? getQQShuruService(service) : service; this.mount(elements); } /** * 重置 Handwriting,所有已挂载的元素均会被卸载 */ reset() { this.options.onBeforeReset?.call(this); this.unmount([...this.elements.keys()]); } /** * 将手写识别功能挂载到新的元素上,可指定方法级别的选项参数,实例化的选项参数将作为默认值 * * 如果指定的元素已经挂载了手写支持,则将重新挂载 * * @param elements 被挂载的元素集合,不能包含空元素,\<INPUT/\> 是典型的空元素之一 * @param options 方法级别的选项参数 */ mount(elements: ElementCollection, options?: HandwritingOptions) { $(elements).map((element) => { // 如果当前元素已经挂载,则先卸载之 if (this.elements.has(element)) { this._unmount(element); } this._mount(element, options); }); } /** * 卸载已挂载的元素 * * @param element 要卸载的元素集合 */ unmount(elements: ElementCollection) { $(elements).map((element) => { this._unmount(element); }); } /** * 手动查询被挂载元素集合的识别结果 * * @param element 被挂载的元素 * @param withClearCanvas 查询完成后清除画板 * @returns 识别结果数组的 Promise */ async query( elements: ElementCollection, withClearCanvas = false ): Promise<RecognitionResult[]> { return Promise.all( $(elements).map((element) => this._query(element, withClearCanvas)) ); } protected _mount( element: HTMLElement, options?: HandwritingOptions ): Context { // 如果指定元素已经被挂载,则返回相应的上下文 if (this.elements.has(element)) { return this.elements.get(element)!; } this.ensureIsNotEmptyElement(element); options = Object.assign({}, this.options, options); const data: HandwritingData = []; const canvasElement = this.createCanvasElement(options); const canvasContext = canvasElement.getContext("2d")!; this.resetCanvasContext(options, canvasContext); this.updateCanvasSize(options, element, canvasContext); const listeners = this.bindListeners(options, data, element, canvasContext); listeners.forEach((listenerMap, target) => addEventListeners(target, listenerMap) ); const properties = this.bindProperties(options, element); element.append(canvasElement); const context = { data, canvasElement, listeners, properties, query: (withClearCanvas = true) => this.service(data).then((result) => { if (withClearCanvas) { this.clearCanvasAndData(canvasContext, data, options); } return result; }), forceUpdateCanvasSize: () => { this.updateCanvasSize(options, element, canvasContext); }, }; this.elements.set(element, context); return context; } protected _unmount(element: HTMLElement) { if (!this.elements.has(element)) { return false; } const { properties, listeners, data, canvasElement } = this.elements.get( element ); data.length = 0; properties.forEach((propertyMap, element) => merge(element, propertyMap)); listeners.forEach((listenerMap, target) => removeEventListeners(target, listenerMap) ); this.elements.delete(element); canvasElement.remove(); return true; } protected async _query(element: HTMLElement, withClearCanvas = false) { if (!this.elements.has(element)) { throw new Error(`no such element: ${element}`); } return await this.elements.get(element).query(withClearCanvas); } // https://developer.mozilla.org/zh-CN/docs/Glossary/Empty_element protected ensureIsNotEmptyElement(element: HTMLElement) { const tagName = element.tagName.toUpperCase(); if ( "AREA,BASE,BR,COL,COMMAND,EMBED,HR,IMG,INPUT,KEYGEN,LINK,META,PARAM,SOURCE,TRACK,WBR".includes( tagName ) || (tagName === "COLGROUP" && element.hasAttribute("span")) ) { throw new EmptyElementError(element); } } protected clearCanvasAndData( canvasContext: CanvasRenderingContext2D, data: HandwritingData, options: HandwritingOptions ) { canvasContext.canvas.width = canvasContext.canvas.width; data.length = 0; this.resetCanvasContext(options, canvasContext); } protected bindProperties(options: HandwritingOptions, element: HTMLElement) { const old = { style: { position: element.style.position, }, }; element.style.position = "relative"; return new Map([[element, old]]); } protected bindListeners( options: HandwritingOptions, data: HandwritingData, element: HTMLElement, canvasContext: CanvasRenderingContext2D ) { const { onStart, onEnd, dblclickClear, pressureFactor, autoSubmitInterval, disableResizeHandler, zoomRatio = 1, autoSubmitWithClearCanvas = true, } = options; const listeners = new Map<EventTarget, Record<string, Function>>(); if (!disableResizeHandler) { // window listener listeners.set(window, { resize: debounce(() => { this.updateCanvasSize(options, element, canvasContext); }, 200), }); } // canvas element listeners let flag = false; let latestPromise; const submit = debounce(() => { if (data.length === 0) { return; } // 利用闭包性质确定是不是最新 Promise 导致的 then,catch 或 finally // 这样做是为了避免由于服务响应过慢,分笔画的时候出现多个结果,这些结果往往是对还没完全手写完的字的识别结果 const promise = (latestPromise = this.service(data) .then((result) => { promise === latestPromise && !flag && onEnd && onEnd.call(this, { element, result, data }); }) .catch((error) => { promise === latestPromise && !flag && onEnd && onEnd.call(this, { element, error, data }); }) .finally(() => { if (promise === latestPromise && !flag && autoSubmitWithClearCanvas) { this.clearCanvasAndData(canvasContext, data, options); } })); }, autoSubmitInterval); const trySubmit = () => { flag = false; canvasContext.closePath(); // 自动提交的值必须大于 0 才有效 if (autoSubmitInterval > 0) { submit(); } }; listeners.set(canvasContext.canvas, { pointerdown: ({ offsetX, offsetY, pointerId }) => { flag = true; submit.cancel(); canvasContext.canvas.setPointerCapture(pointerId); canvasContext.moveTo(offsetX, offsetY); canvasContext.beginPath(); data.push([[~~offsetX, ~~offsetY]]); onStart && onStart.call(this, element); }, pointermove: ({ offsetX, offsetY, movementX, movementY, pressure }) => { if (!flag) { return; } if (pressureFactor) { canvasContext.lineWidth = pressure * pressureFactor; } canvasContext.lineTo(offsetX, offsetY); canvasContext.stroke(); data .slice(-1)[0] .push([~~(movementX * zoomRatio), ~~(movementY * zoomRatio)]); }, pointerup: trySubmit, pointerleave: trySubmit, dblclick: () => { if (!dblclickClear || autoSubmitInterval > 0) { return; } data.length = 0; // 清空画布 canvasContext.canvas.width = canvasContext.canvas.width; this.resetCanvasContext(options, canvasContext); }, }); return listeners; } protected updateCanvasSize( options: HandwritingOptions, element: HTMLElement, canvasContext: CanvasRenderingContext2D ) { const { offsetHeight, offsetWidth } = element; canvasContext.canvas.style.width = offsetWidth + "px"; canvasContext.canvas.style.height = offsetHeight + "px"; canvasContext.canvas.width = offsetWidth; canvasContext.canvas.height = offsetHeight; this.resetCanvasContext(options, canvasContext); } protected resetCanvasContext( { style, width }: HandwritingOptions, canvasContext: CanvasRenderingContext2D ) { canvasContext.lineWidth = width ?? 1; canvasContext.strokeStyle = style; canvasContext.lineJoin = "round"; canvasContext.lineCap = "round"; } protected createCanvasElement({ zIndex = 100, }: HandwritingOptions): HTMLCanvasElement { const canvasElement = document.createElement("canvas"); canvasElement.style.position = "absolute"; canvasElement.style.zIndex = zIndex.toString(); canvasElement.style.top = canvasElement.style.left = canvasElement.style.bottom = canvasElement.style.right = (0).toString(); return canvasElement; } }
25.463252
129
0.631505
b982e16412a0e392803028e64b21209255b4803b
436
ps1
PowerShell
build/build_release_LoadReporting.ps1
ProSuite/quaestor-mini-cluster
e9fc7371223722355baa0daca4c28ed1f831aa62
[ "MIT" ]
null
null
null
build/build_release_LoadReporting.ps1
ProSuite/quaestor-mini-cluster
e9fc7371223722355baa0daca4c28ed1f831aa62
[ "MIT" ]
null
null
null
build/build_release_LoadReporting.ps1
ProSuite/quaestor-mini-cluster
e9fc7371223722355baa0daca4c28ed1f831aa62
[ "MIT" ]
null
null
null
# Builds the QA service definitions to the output directory # The relevant output is # - ProSuite.Microservices.Definitions.Shared.* # - ProSuite.Microservices.Definitions.QA.* # These assemblies can be checked into the consuming repo's lib folder. cd $PSScriptRoot mode con:cols=200 lines=15000 dotnet build ..\src\Quaestor.LoadReporting\Quaestor.LoadReporting.csproj -property:Configuration=Release -o .\output\LoadReporting pause
33.538462
130
0.802752
04a788f4ea997e7e340f1a37d7bc140674426f48
2,342
java
Java
Data-Structures-Homeworks/HW1/141044058_HW1_ CSE222/141044058/src/main/java/com/mycompany/hw01_141044058_aliyasin_eser/AbstractAssignable.java
aliyasineser/GTU_Homeworks
d98502674788b86683edefce442989bb4f7a464b
[ "Apache-2.0" ]
7
2018-10-20T12:50:00.000Z
2021-11-29T23:47:06.000Z
Data-Structures-Homeworks/HW1/141044058_HW1_ CSE222/141044058/src/main/java/com/mycompany/hw01_141044058_aliyasin_eser/AbstractAssignable.java
aliyasineser/GTU_Homeworks
d98502674788b86683edefce442989bb4f7a464b
[ "Apache-2.0" ]
null
null
null
Data-Structures-Homeworks/HW1/141044058_HW1_ CSE222/141044058/src/main/java/com/mycompany/hw01_141044058_aliyasin_eser/AbstractAssignable.java
aliyasineser/GTU_Homeworks
d98502674788b86683edefce442989bb4f7a464b
[ "Apache-2.0" ]
null
null
null
package com.mycompany.hw01_141044058_aliyasin_eser; import java.util.ArrayList; /** * Abstract assignable class. Assignable is the class that student class uses * for linking their hw, project and quizes with course's assignments. * * @author Ali Yasin Eser */ public class AbstractAssignable implements InterfaceAssignable { /** * Documents those assigned for assignment */ private ArrayList<AbstractDocument> assignedDocuments; /** * Which assignment we added documents */ private AbstractAssignment assignmentThatWeAddedDocuments; /** * Constructor * * @param assignedDocuments, Documents those assigned for assignment as * AbstractDocument ArrayList * @param assignmentThatWeAddedDocuments, Which assignment we added * documents as AbstractAssignment */ public AbstractAssignable(ArrayList<AbstractDocument> assignedDocuments, AbstractAssignment assignmentThatWeAddedDocuments) { this.assignedDocuments = assignedDocuments; this.assignmentThatWeAddedDocuments = assignmentThatWeAddedDocuments; } /** * Constructor which takes a reference of same-type object * * @param mirror, same type object */ public AbstractAssignable(AbstractAssignable mirror) { assignedDocuments = mirror.getAssignedDocuments(); assignmentThatWeAddedDocuments = mirror.getAssignmentThatWeAddedDocuments(); } /** * Getter of the document * * @return Documents ArrayList */ @Override public ArrayList<AbstractDocument> getAssignedDocuments() { return assignedDocuments; } /** * Getter of the assignment * * @return Assignment that we assigned as AbstractAssignment */ @Override public AbstractAssignment getAssignmentThatWeAddedDocuments() { return assignmentThatWeAddedDocuments; } /** * Override toString * * @return String representation */ @Override public String toString() { String str = ""; str += "{ assignedDocuments="; for (AbstractDocument doc : getAssignedDocuments()) { str += doc.documentName + ", "; } str += "Assignment name=" + assignmentThatWeAddedDocuments; str += " }";; return str; } }
26.314607
129
0.673783
9f782ac240988dadce56056997cc42d3bc7d83ef
633
swift
Swift
iOS/SpiderByte/AnnouncementDataSource.swift
ritonlaveur/spider-byte
8aeed8a4752217755ca665cceb20a2e1ac7d58d3
[ "Unlicense", "MIT" ]
2
2019-01-24T14:21:56.000Z
2019-01-24T14:22:01.000Z
iOS/SpiderByte/AnnouncementDataSource.swift
dimitrisppt/Communication-App-Group-Project
d29c5aada6159f4a8d1eb7f554d4032690b74344
[ "MIT", "Unlicense" ]
null
null
null
iOS/SpiderByte/AnnouncementDataSource.swift
dimitrisppt/Communication-App-Group-Project
d29c5aada6159f4a8d1eb7f554d4032690b74344
[ "MIT", "Unlicense" ]
1
2020-05-25T14:41:17.000Z
2020-05-25T14:41:17.000Z
// // AnnouncementDataSource.swift // SpiderByte // // Created by Alin Fulga on 19/03/2018. // Copyright © 2018 King's College London. All rights reserved. // import UIKit import FirebaseDatabaseUI import FontAwesomeIconFactory /** This class contains the functions for the data source of the announcement page of our iOS application. */ class AnnouncementDataSource: FUITableViewDataSource { override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { return Int(self.count) } override func numberOfSections(in tableView: UITableView) -> Int { return 1 } }
27.521739
107
0.733017
a19b2d22597c400c128c2d398cc643369532c9d7
2,844
h
C
src/GStreamerLoader.h
gspeedtech/Audacity
570c5651c5934469c18dad25db03f05076f91225
[ "CC-BY-3.0" ]
16
2015-01-26T18:58:26.000Z
2017-11-12T05:42:58.000Z
src/GStreamerLoader.h
gspeedtech/Audacity
570c5651c5934469c18dad25db03f05076f91225
[ "CC-BY-3.0" ]
null
null
null
src/GStreamerLoader.h
gspeedtech/Audacity
570c5651c5934469c18dad25db03f05076f91225
[ "CC-BY-3.0" ]
7
2015-04-13T20:01:00.000Z
2021-07-05T09:28:22.000Z
/********************************************************************** Audacity: A Digital Audio Editor GStreamerLoader.h Audacity(R) is copyright (c) 1999-2008 Audacity Team. License: GPL v2. See License.txt. ******************************************************************//** Describes shared object that is used to access GStreamer *//*******************************************************************/ #if !defined(__AUDACITY_GSTREAMER__) #define __AUDACITY_GSTREAMER__ #include "Audacity.h" /* rather earlier than normal, but pulls in config*.h and other program stuff * we need for the next bit */ #include <wx/string.h> #include <wx/dynlib.h> #include <wx/log.h> // for wxLogNull #include <wx/msgdlg.h> // for wxMessageBox #include <wx/utils.h> #include "../widgets/LinkingHtmlWindow.h" #include "FileDialog.h" #include "ShuttleGui.h" #include "../Prefs.h" #include <wx/checkbox.h> #include <wx/textctrl.h> #include <wx/thread.h> class GStreamerLoader; extern GStreamerLoader *GStreamerInst; //---------------------------------------------------------------------------- // Get GStreamer version //---------------------------------------------------------------------------- wxString GetGStreamerVersion(wxWindow *parent); //---------------------------------------------------------------------------- // Attempt to load and enable/disable GStreamer at startup //---------------------------------------------------------------------------- void GStreamerStartup(); /* From here on in, this stuff only applies when gstreamer is available */ #if defined(USE_GSTREAMER) // On Windows we don't have configure script to turn this on or off, // so let's use msw-specific pragma to add required libraries. // Of course, library search path still has to be updated manually # if defined(__WXMSW__) # pragma comment(lib,"libgstreamer-0.10.lib") # pragma comment(lib,"libgstapp-0.10.lib") # pragma comment(lib,"libgstbase-0.10.lib") # pragma comment(lib,"glib-2.0.lib") # pragma comment(lib,"gobject-2.0.lib") # pragma comment(lib,"gthread-2.0.lib") # pragma comment(lib,"libxml2.lib") # endif extern "C" { # include <gst/gst.h> # include <glib.h> # include <glib/gstdio.h> } bool LoadGStreamer(bool showerror); gboolean LogStructure(GQuark field_id, const GValue *value, gpointer user_data); class GStreamerLoader { public: GStreamerLoader(); ~GStreamerLoader(); bool Loaded() { return mGStreamerLoaded; } wxString GetVersion() { return wxString::Format(wxT("%d.%d.%d-%d"),major, minor, micro, nano); } wxArrayString GetExtensions(); bool LoadGStreamer(bool showerr); private: unsigned int major, minor, micro, nano; bool mGStreamerLoaded; }; #endif // USE_GSTREAMER #endif // __AUDACITY_GSTREAMER__
27.346154
80
0.576653
bceecb593698a92b374b68002768c30e0e902259
404
swift
Swift
ListManager/Classes/ViewModel.swift
nikitskynikita/ListManager
40789d393e108825e21edfaac05be60a9978613d
[ "MIT" ]
null
null
null
ListManager/Classes/ViewModel.swift
nikitskynikita/ListManager
40789d393e108825e21edfaac05be60a9978613d
[ "MIT" ]
null
null
null
ListManager/Classes/ViewModel.swift
nikitskynikita/ListManager
40789d393e108825e21edfaac05be60a9978613d
[ "MIT" ]
null
null
null
// // ViewModel.swift // ListManager // // Created by Nikita Nikitsky on 03/27/2020. // Copyright (c) 2020 Nikita Nikitsky. All rights reserved. // /// Маркер модели представления. public protocol ViewModel {} public extension ViewModel { /** Наименование типа, помеченного как модель представления `ViewModel`. */ static var typeName: String { String(describing: Self.self) } }
21.263158
79
0.693069
3b54ef5547eb8e1571d47a8aa1bafa1bc7e66ad0
2,350
h
C
source/core/math/sampling.h
RichieSams/lantern
eab413264d958a81914e8d4463bae9449e5ca3e4
[ "Apache-2.0" ]
16
2017-01-24T02:33:17.000Z
2021-10-11T14:49:42.000Z
source/core/math/sampling.h
RichieSams/lantern
eab413264d958a81914e8d4463bae9449e5ca3e4
[ "Apache-2.0" ]
null
null
null
source/core/math/sampling.h
RichieSams/lantern
eab413264d958a81914e8d4463bae9449e5ca3e4
[ "Apache-2.0" ]
3
2016-10-14T03:19:43.000Z
2021-11-16T16:51:58.000Z
/* Lantern - A path tracer * * Lantern is the legal property of Adrian Astley * Copyright Adrian Astley 2015 - 2016 */ #pragma once #include "math/vector_types.h" #include "math/uniform_sampler.h" #include "math/vector_math.h" namespace Lantern { inline float PowerHeuristic(uint numf, float fPdf, uint numg, float gPdf) { float f = numf * fPdf; float g = numg * gPdf; return (f * f) / (f * f + g * g); } inline float PowerHeuristic(uint numf, float fPdf, uint numg, float gPdf, uint numh, float hPdf) { float f = numf * fPdf; float g = numg * gPdf; float h = numh * hPdf; return (f * f) / (f * f + g * g + h * h); } inline void UniformSampleDisc(UniformSampler *sampler, float radius, float *x, float *y) { float rand = sampler->NextFloat(); float r = sqrtf(rand) * radius; float theta = sampler->NextFloat() * 2.0f * (float)M_PI; *x = r * cosf(theta); *y = r * sinf(theta); } /** * Creates a random direction in the hemisphere defined by the normal, weighted by a cosine lobe * * Based on http://www.rorydriscoll.com/2009/01/07/better-sampling/ * * @param normal The normal that defines the hemisphere * * @param sampler The sampler to use for internal random number generation * @return A cosine weighted random direction in the hemisphere */ inline float3a CosineSampleHemisphere(float3a &normal, UniformSampler *sampler) { // Create coordinates in the local coordinate system float x; float y; UniformSampleDisc(sampler, 1.0f, &x, &y); // Project z up to the unit hemisphere float z = sqrtf(1.0f - x * x - y * y); return normalize(RotateToWorld(x, y, z, normal)); } inline float3a UniformSampleHemisphere(float3a &normal, UniformSampler *sampler) { float cosPhi = sampler->NextFloat(); float sinPhi = sqrt(1.0f - cosPhi * cosPhi); float theta = 2 * (float)M_PI * sampler->NextFloat(); float x = sinPhi * sinf(theta); float y = cosPhi; float z = sinPhi * cosf(theta); return normalize(RotateToWorld(x, y, z, normal)); } inline float3a UniformSampleSphere(UniformSampler *sampler) { float cosPhi = 2.0f * sampler->NextFloat() - 1.0f; float sinPhi = std::sqrt(1.0f - cosPhi * cosPhi); float theta = 2 * (float)M_PI * sampler->NextFloat(); float x = sinPhi * sinf(theta); float y = cosPhi; float z = sinPhi * cosf(theta); return float3a(x, y, z); } } // End of namespace Lantern
27.011494
98
0.686809
12b6221b37fd415678e559dbe7488e961b966073
640
swift
Swift
Pods/Argo/Argo/Extensions/RawRepresentable.swift
UniqueQiu/ZhiHu
b6b31c45d0eb997a8a54d2407fb7a1655eb37ae0
[ "Apache-2.0" ]
4
2015-11-11T04:44:34.000Z
2017-08-02T07:29:22.000Z
Pods/Argo/Argo/Extensions/RawRepresentable.swift
UniqueQiu/ZhiHu
b6b31c45d0eb997a8a54d2407fb7a1655eb37ae0
[ "Apache-2.0" ]
null
null
null
Pods/Argo/Argo/Extensions/RawRepresentable.swift
UniqueQiu/ZhiHu
b6b31c45d0eb997a8a54d2407fb7a1655eb37ae0
[ "Apache-2.0" ]
3
2016-01-15T11:33:54.000Z
2021-07-29T00:55:00.000Z
public extension Decodable where Self.DecodedType == Self, Self: RawRepresentable, Self.RawValue == String { static func decode(json: JSON) -> Decoded<Self> { switch json { case let .String(s): return .fromOptional(self.init(rawValue: s)) default: return .typeMismatch("String", actual: json) } } } public extension Decodable where Self.DecodedType == Self, Self: RawRepresentable, Self.RawValue == Int { static func decode(json: JSON) -> Decoded<Self> { switch json { case let .Number(n): return .fromOptional(self.init(rawValue: n as Int)) default: return .typeMismatch("Int", actual: json) } } }
35.555556
108
0.689063
f70e6d3dc0e4154c0fed8e8db379868345cfad39
10,291
c
C
util/unifyfs-stage/src/unifyfs-stage-transfer.c
sandrain/UnifyCR
b5d723dd451585e09fe65c69b4297e027ca00334
[ "MIT" ]
null
null
null
util/unifyfs-stage/src/unifyfs-stage-transfer.c
sandrain/UnifyCR
b5d723dd451585e09fe65c69b4297e027ca00334
[ "MIT" ]
null
null
null
util/unifyfs-stage/src/unifyfs-stage-transfer.c
sandrain/UnifyCR
b5d723dd451585e09fe65c69b4297e027ca00334
[ "MIT" ]
null
null
null
/* * Copyright (c) 2020, Lawrence Livermore National Security, LLC. * Produced at the Lawrence Livermore National Laboratory. * * Copyright 2020, UT-Battelle, LLC. * * LLNL-CODE-741539 * All rights reserved. * * This is the license for UnifyFS. * For details, see https://github.com/LLNL/UnifyFS. * Please read https://github.com/LLNL/UnifyFS/LICENSE for full license text. */ #include <config.h> #include <stdio.h> #include <stdlib.h> #include <stdint.h> #include <string.h> #include <errno.h> #include <ctype.h> #include <limits.h> #include <sys/time.h> #include <sys/stat.h> #include <sys/types.h> #include <unistd.h> #include <fcntl.h> #include <dirent.h> #include <libgen.h> #include <getopt.h> #include <time.h> #include <mpi.h> #include <openssl/md5.h> #include "unifyfs-stage.h" /** * @brief Run md5 checksum on specified file, send back * digest. * * @param path path to the target file * @param digest hash of the file * * @return 0 on success, errno otherwise */ static int md5_checksum(const char* path, unsigned char* digest) { int ret = 0; size_t len = 0; int fd = -1; unsigned char data[UNIFYFS_STAGE_MD5_BLOCKSIZE] = { 0, }; MD5_CTX md5; fd = open(path, O_RDONLY); if (fd < 0) { perror("open"); return errno; } ret = MD5_Init(&md5); if (!ret) { fprintf(stderr, "failed to create md5 context\n"); goto out; } while ((len = read(fd, (void*) data, UNIFYFS_STAGE_MD5_BLOCKSIZE)) != 0) { ret = MD5_Update(&md5, data, len); if (!ret) { fprintf(stderr, "failed to update checksum\n"); goto out; } } ret = MD5_Final(digest, &md5); if (!ret) { fprintf(stderr, "failed to finalize md5\n"); } out: /* MD5_xx returns 1 for success */ ret = (ret == 1 ? 0 : EIO); close(fd); return ret; } /** * @brief prints md5 checksum into string * * @param buf buffer to print into * @param digest hash of the file * * @return buffer that has been printed to */ static char* checksum_str(char* buf, unsigned char* digest) { int i = 0; char* pos = buf; for (i = 0; i < MD5_DIGEST_LENGTH; i++) { pos += sprintf(pos, "%02x", digest[i]); } pos[0] = '\0'; return buf; } /** * @brief takes check sums of two files and compares * * @param src path to one file * @param dst path to the other file * * @return 0 if files are identical, non-zero if not, or other error */ static int verify_checksum(const char* src, const char* dst) { int ret = 0; int i = 0; char md5src[2 * MD5_DIGEST_LENGTH + 1] = { 0, }; char md5dst[2 * MD5_DIGEST_LENGTH + 1] = { 0, }; unsigned char src_digest[MD5_DIGEST_LENGTH + 1] = { 0, }; unsigned char dst_digest[MD5_DIGEST_LENGTH + 1] = { 0, }; src_digest[MD5_DIGEST_LENGTH] = '\0'; dst_digest[MD5_DIGEST_LENGTH] = '\0'; ret = md5_checksum(src, src_digest); if (ret) { fprintf(stderr, "failed to calculate checksum for %s (%s)\n", src, strerror(ret)); return ret; } ret = md5_checksum(dst, dst_digest); if (ret) { fprintf(stderr, "failed to calculate checksum for %s (%s)\n", dst, strerror(ret)); return ret; } if (verbose) { printf("[%d] src: %s, dst: %s\n", rank, checksum_str(md5src, src_digest), checksum_str(md5dst, dst_digest)); } for (i = 0; i < MD5_DIGEST_LENGTH; i++) { if (src_digest[i] != dst_digest[i]) { fprintf(stderr, "[%d] checksum verification failed: " "(src=%s, dst=%s)\n", rank, checksum_str(md5src, src_digest), checksum_str(md5dst, dst_digest)); ret = EIO; } } return ret; } /* * Parse a line from the manifest in the form of: * * <src path> <whitespace separator> <dest path> * * If the paths have spaces, they must be quoted. * * On success, return 0 along with allocated src and dest strings. These * must be freed when you're finished with them. On failure return non-zero, * and set src and dest to NULL. * * Note, leading and tailing whitespace are ok. They just get ignored. * Lines with only whitespace are ignored. A line of all whitespace will * return 0, with src and dest being NULL, so users should not check for * 'if (*src == NULL)' to see if the function failed. They should be looking * at the return code. */ /** * @brief parses manifest file line, passes back src and dst strings * * @param line input manifest file line * @param src return val of src filename * @param dst return val of dst filename * * @return 0 if all was well, or there was nothing; non-zero on error */ int unifyfs_parse_manifest_line(char* line, char** src, char** dest) { char* new_src = NULL; char* new_dest = NULL; char* copy; char* tmp; unsigned long copy_len; int i; unsigned int tmp_count; int in_quotes = 0; int rc = 0; copy = strdup(line); copy_len = strlen(copy) + 1;/* +1 for '\0' */ /* Replace quotes and separator with '\0' */ for (i = 0; i < copy_len; i++) { if (copy[i] == '"') { in_quotes ^= 1;/* toggle */ copy[i] = '\0'; } else if (isspace(copy[i]) && !in_quotes) { /* * Allow any whitespace for our separator */ copy[i] = '\0'; } } /* * copy[] now contains a series of strings, one after the other * (possibly containing some NULL strings, which we ignore) */ tmp = copy; while (tmp < copy + copy_len) { tmp_count = strlen(tmp); if (tmp_count > 0) { /* We have a real string */ if (!new_src) { new_src = strdup(tmp); } else { if (!new_dest) { new_dest = strdup(tmp); } else { /* Error: a third file name */ rc = 1; break; } } } tmp += tmp_count + 1; } /* Some kind of error parsing a line */ if (rc != 0 || (new_src && !new_dest)) { fprintf(stderr, "manifest file line >>%s<< is invalid!\n", line); free(new_src); free(new_dest); new_src = NULL; new_dest = NULL; if (rc == 0) { rc = 1; } } *src = new_src; *dest = new_dest; free(copy); return rc; } /** * @brief controls the action of the stage-in or stage-out. Opens up * the manifest file, sends each line to be parsed, and fires * each source/destination to be staged. * * @param ctx stage context and instructions * * @return 0 indicates success, non-zero is error */ int unifyfs_stage_transfer(unifyfs_stage_t* ctx) { int ret = 0; int count = 0; FILE* fp = NULL; char* src = NULL; char* dst = NULL; char linebuf[LINE_MAX] = { 0, }; if (!ctx) { return EINVAL; } fp = fopen(ctx->manifest_file, "r"); if (!fp) { fprintf(stderr, "failed to open file %s: %s\n", ctx->manifest_file, strerror(errno)); ret = errno; goto out; } while (NULL != fgets(linebuf, LINE_MAX - 1, fp)) { if (strlen(linebuf) < 5) { if (linebuf[0] == '\n') { // manifest file ends in a blank line goto out; } else { fprintf(stderr, "Short (bad) manifest file line: >%s<\n", linebuf); ret = -EINVAL; goto out; } } ret = unifyfs_parse_manifest_line(linebuf, &src, &dst); if (ret < 0) { fprintf(stderr, "failed to parse %s (%s)\n", linebuf, strerror(ret)); goto out; } if (ctx->mode == UNIFYFS_STAGE_SERIAL) { if (count % total_ranks == rank) { if (verbose) { fprintf(stdout, "[%d] serial transfer: src=%s, dst=%s\n", rank, src, dst); } ret = unifyfs_transfer_file_serial(src, dst); if (ret) { goto out; } if (ret < 0) { fprintf(stderr, "stat on %s failed (err=%d, %s)\n", dst, errno, strerror(errno)); ret = errno; goto out; } if (ctx->checksum) { ret = verify_checksum(src, dst); if (ret) { fprintf(stderr, "checksums for >%s< and >%s< differ!\n", src, dst); goto out; } } } } else { if (0 == rank) { int fd = -1; if (verbose) { fprintf(stdout, "[%d] parallel transfer: src=%s, dst=%s\n", rank, src, dst); } fd = open(dst, O_WRONLY | O_CREAT | O_TRUNC, 0600); if (fd < 0) { fprintf(stderr, "[%d] failed to create the file %s\n", rank, dst); goto out; } close(fd); } MPI_Barrier(MPI_COMM_WORLD); ret = unifyfs_transfer_file_parallel(src, dst); if (ret) { goto out; } MPI_Barrier(MPI_COMM_WORLD); // possible lamination check or force lamination // may need to go here if (ctx->checksum && 0 == rank) { ret = verify_checksum(src, dst); if (ret) { goto out; } } } count++; } out: if (ret) { fprintf(stderr, "failed to transfer file (src=%s, dst=%s): %s\n", src, dst, strerror(ret)); } if (fp) { fclose(fp); fp = NULL; } return ret; }
26.319693
80
0.506268
11bd61b90c9f82dd4eae4f69a796c2462e2839fd
1,631
sql
SQL
EdFi.Ods.Utilities.Migration/Scripts/PgSql/02Upgrade/v34_to_v50_RecordOwnership/01 Structure/1000-AddOwnershipColumnsForNewTables.sql
Ed-Fi-Alliance-OSS/Ed-Fi-MigrationUtility
0d990a4d5cec37eec2015ef53e8d9e4fdec8750a
[ "Apache-2.0" ]
null
null
null
EdFi.Ods.Utilities.Migration/Scripts/PgSql/02Upgrade/v34_to_v50_RecordOwnership/01 Structure/1000-AddOwnershipColumnsForNewTables.sql
Ed-Fi-Alliance-OSS/Ed-Fi-MigrationUtility
0d990a4d5cec37eec2015ef53e8d9e4fdec8750a
[ "Apache-2.0" ]
9
2020-06-12T16:07:31.000Z
2022-01-20T16:13:12.000Z
EdFi.Ods.Utilities.Migration/Scripts/PgSql/02Upgrade/v34_to_v50_RecordOwnership/01 Structure/1000-AddOwnershipColumnsForNewTables.sql
Ed-Fi-Alliance-OSS/Ed-Fi-MigrationUtility
0d990a4d5cec37eec2015ef53e8d9e4fdec8750a
[ "Apache-2.0" ]
3
2020-05-19T13:25:35.000Z
2022-02-26T01:21:18.000Z
-- SPDX-License-Identifier: Apache-2.0 -- Licensed to the Ed-Fi Alliance under one or more agreements. -- The Ed-Fi Alliance licenses this file to you under the Apache License, Version 2.0. -- See the LICENSE and NOTICES files in the project root for more information. -- Add RecordOwnership columns for newly added tables ALTER TABLE edfi.Person ADD CreatedByOwnershipTokenId SMALLINT NULL; ALTER TABLE edfi.Survey ADD CreatedByOwnershipTokenId SMALLINT NULL; ALTER TABLE edfi.SurveyCourseAssociation ADD CreatedByOwnershipTokenId SMALLINT NULL; ALTER TABLE edfi.SurveyProgramAssociation ADD CreatedByOwnershipTokenId SMALLINT NULL; ALTER TABLE edfi.SurveyQuestion ADD CreatedByOwnershipTokenId SMALLINT NULL; ALTER TABLE edfi.SurveyQuestionResponse ADD CreatedByOwnershipTokenId SMALLINT NULL; ALTER TABLE edfi.SurveyResponse ADD CreatedByOwnershipTokenId SMALLINT NULL; ALTER TABLE edfi.SurveyResponseEducationOrganizationTargetAssociation ADD CreatedByOwnershipTokenId SMALLINT NULL; ALTER TABLE edfi.SurveyResponseStaffTargetAssociation ADD CreatedByOwnershipTokenId SMALLINT NULL; ALTER TABLE edfi.SurveySection ADD CreatedByOwnershipTokenId SMALLINT NULL; ALTER TABLE edfi.SurveySectionAssociation ADD CreatedByOwnershipTokenId SMALLINT NULL; ALTER TABLE edfi.SurveySectionResponse ADD CreatedByOwnershipTokenId SMALLINT NULL; ALTER TABLE edfi.SurveySectionResponseEducationOrganizationTargetAssociation ADD CreatedByOwnershipTokenId SMALLINT NULL; ALTER TABLE edfi.SurveySectionResponseStaffTargetAssociation ADD CreatedByOwnershipTokenId SMALLINT NULL;
34.702128
86
0.835684
92c6462fe80d8a9d9473869de984340eaa8de799
1,486
h
C
System/Library/PrivateFrameworks/OfficeImport.framework/OAXFill.h
lechium/iPhoneOS_12.1.1_Headers
aac688b174273dfcbade13bab104461f463db772
[ "MIT" ]
12
2019-06-02T02:42:41.000Z
2021-04-13T07:22:20.000Z
System/Library/PrivateFrameworks/OfficeImport.framework/OAXFill.h
lechium/iPhoneOS_12.1.1_Headers
aac688b174273dfcbade13bab104461f463db772
[ "MIT" ]
null
null
null
System/Library/PrivateFrameworks/OfficeImport.framework/OAXFill.h
lechium/iPhoneOS_12.1.1_Headers
aac688b174273dfcbade13bab104461f463db772
[ "MIT" ]
3
2019-06-11T02:46:10.000Z
2019-12-21T14:58:16.000Z
/* * This header is generated by classdump-dyld 1.0 * on Saturday, June 1, 2019 at 6:51:41 PM Mountain Standard Time * Operating System: Version 12.1.1 (Build 16C5050a) * Image Source: /System/Library/PrivateFrameworks/OfficeImport.framework/OfficeImport * classdump-dyld is licensed under GPLv3, Copyright © 2013-2016 by Elias Limneos. */ #import <OfficeImport/OfficeImport-Structs.h> @interface OAXFill : NSObject +(id)readNullFillFromXmlNode:(xmlNode*)arg1 ; +(id)readSolidFillFromXmlNode:(xmlNode*)arg1 ; +(id)readGradientFillFromXmlNode:(xmlNode*)arg1 drawingState:(id)arg2 ; +(id)readImageFillFromXmlNode:(xmlNode*)arg1 packagePart:(id)arg2 forDrawable:(id)arg3 drawingState:(id)arg4 ; +(id)readPresetPatternFillFromXmlNode:(xmlNode*)arg1 drawingState:(id)arg2 ; +(id)readGroupFillFromXmlNode:(xmlNode*)arg1 ; +(void)readStretch:(xmlNode*)arg1 stretch:(id)arg2 ; +(void)readTile:(xmlNode*)arg1 tile:(id)arg2 ; +(id)readBlipRefFromXmlNode:(xmlNode*)arg1 packagePart:(id)arg2 forDrawable:(id)arg3 drawingState:(id)arg4 forBullet:(BOOL)arg5 ; +(id)readFillFromXmlNode:(xmlNode*)arg1 packagePart:(id)arg2 drawingState:(id)arg3 ; +(id)tileFlipModeEnumMap; +(void)readGradientFillFromXmlNode:(xmlNode*)arg1 toGradientFill:(id)arg2 drawingState:(id)arg3 ; +(id)pathGradientFillTypeEnumMap; +(id)readPathGradientFillFromXmlNode:(xmlNode*)arg1 drawingState:(id)arg2 ; +(id)readLinearGradientFillFromXmlNode:(xmlNode*)arg1 drawingState:(id)arg2 ; +(id)presetPatternFillTypeEnumMap; @end
49.533333
129
0.792059
f03a3e39d1526ac745f5a84278b33ac5f1803729
571
sql
SQL
src/Orange.ApiTokenValidation.Repositories.EntityFramework/Repositories/SQL/TokenTableUpdate.sql
ReyStar/Orange.ApiTokenValidation
1712ddf382f70ebc5fd5cc3c37d45bb27a9e77ff
[ "MIT" ]
null
null
null
src/Orange.ApiTokenValidation.Repositories.EntityFramework/Repositories/SQL/TokenTableUpdate.sql
ReyStar/Orange.ApiTokenValidation
1712ddf382f70ebc5fd5cc3c37d45bb27a9e77ff
[ "MIT" ]
1
2020-08-19T17:33:20.000Z
2020-08-19T17:33:20.000Z
src/Orange.ApiTokenValidation.Repositories/Repositories/SQL/TokenTableUpdate.sql
ReyStar/Orange.ApiTokenValidation
1712ddf382f70ebc5fd5cc3c37d45bb27a9e77ff
[ "MIT" ]
null
null
null
-- DO merge if row already exist -- https://stackoverflow.com/questions/36799104/how-to-correctly-do-upsert-in-postgres-9-5 INSERT INTO tokentable (issuer, audience, private_key, ttl, expiration_time, is_active, payload, created_time, creator, updated_time, updater) VALUES (@issuer, @audience, @private_key, @ttl, @expiration_time, @is_active, @payload, @created_time, @creator, @updated_time, @updater) ON CONFLICT (issuer, audience) DO UPDATE SET private_key = @private_key, ttl = @ttl, expiration_time = @expiration_time, is_active = @is_active, payload = @payload ;
81.571429
142
0.772329
4736cab0c68b0abd76f405f36b9d7fe7c875feb8
28
sql
SQL
models/schema.sql
dirk-kiesewetter/sequelizedBurger
a90f3459631d61c02b8e5b81736fd122d78cb82b
[ "MIT" ]
null
null
null
models/schema.sql
dirk-kiesewetter/sequelizedBurger
a90f3459631d61c02b8e5b81736fd122d78cb82b
[ "MIT" ]
null
null
null
models/schema.sql
dirk-kiesewetter/sequelizedBurger
a90f3459631d61c02b8e5b81736fd122d78cb82b
[ "MIT" ]
null
null
null
CREATE DATABASE burgers_db;
14
27
0.857143
6501f3d51f975417bd4820d48ad1b2213ec328d0
425
swift
Swift
Domain/Shared/CacheServiceProtocol.swift
velvetroom/legacy-catban
a12dcd1a8ad9fbddd22a7b6302bab65ee04ffbac
[ "MIT" ]
1
2021-01-23T13:30:51.000Z
2021-01-23T13:30:51.000Z
Domain/Shared/CacheServiceProtocol.swift
velvetroom/legacy-catban
a12dcd1a8ad9fbddd22a7b6302bab65ee04ffbac
[ "MIT" ]
null
null
null
Domain/Shared/CacheServiceProtocol.swift
velvetroom/legacy-catban
a12dcd1a8ad9fbddd22a7b6302bab65ee04ffbac
[ "MIT" ]
null
null
null
import Foundation public protocol CacheServiceProtocol { func load<M>(session:@escaping((M) -> Void), error:@escaping((Error) -> Void)) where M:Codable & SessionProtocol func load<M>(identifier:String, board:@escaping((M) -> Void)) where M:Codable & BoardProtocol func save<M>(session:M) where M:Codable & SessionProtocol func save<M>(identifier:String, board:M) where M:Codable & BoardProtocol init() }
42.5
116
0.715294
1247af820329b400d680cacfafe714ec90309f3f
10,283
h
C
ds/security/dsrole/server/ophandle.h
npocmaka/Windows-Server-2003
5c6fe3db626b63a384230a1aa6b92ac416b0765f
[ "Unlicense" ]
17
2020-11-13T13:42:52.000Z
2021-09-16T09:13:13.000Z
ds/security/dsrole/server/ophandle.h
sancho1952007/Windows-Server-2003
5c6fe3db626b63a384230a1aa6b92ac416b0765f
[ "Unlicense" ]
2
2020-10-19T08:02:06.000Z
2020-10-19T08:23:18.000Z
ds/security/dsrole/server/ophandle.h
sancho1952007/Windows-Server-2003
5c6fe3db626b63a384230a1aa6b92ac416b0765f
[ "Unlicense" ]
14
2020-11-14T09:43:20.000Z
2021-08-28T08:59:57.000Z
/*++ Copyright (c) 1997 Microsoft Corporation Module Name: ophandle.h Abstract: Routines to manipulate the global DsRole operation handle Author: Colin Brace (ColinBr) April 5, 1999 Environment: User Mode Revision History: --*/ #ifndef __OPHANDLE_H__ #define __OPHANDLE_H__ // // First, a type definition of the finite difference states a role operation // can be in // // // Operation State diagram of a role change // // // /-----------------------\ // | (operation failed | // | or cancelled) | // v ^ // Idle <--> Running --> Finished ---------------> Need Reboot // | | ^ (operation // | | | succeeded) // | | | // | | | // | v | // | Cancelling -->| // | ^ ^ // | | | // | | | // | | | // v ^ | // Running | // Non Critical ---------/ // // // N.B. Running to Idle to a rare error case, where the worker thread could // not be created. // // typedef enum _DSROLEP_OPERATION_STATE { DSROLEP_IDLE = 0, DSROLEP_RUNNING, DSROLEP_RUNNING_NON_CRITICAL, DSROLEP_CANCELING, DSROLEP_FINISHED, DSROLEP_NEED_REBOOT } DSROLEP_OPERATION_STATE; #define DSROLEP_OPERATION_ACTIVE( Op ) \ ( (Op == DSROLEP_IDLE) || (Op == DSROLEP_NEED_REBOOT) ? FALSE : TRUE ) // // Now, the definition of the global operation handle that controls a role // change // // Whenever reading or writing a value to the operation handle, you must // lock the structure first. // // Use LockOpHandle() and UnLockOpHandle(). // // typedef struct _DSROLEP_OPERATION_HANDLE { RTL_RESOURCE CurrentOpLock; DSROLEP_OPERATION_STATE OperationState; HANDLE CompletionEvent; HANDLE OperationThread; HANDLE MsgModuleHandle; HANDLE CancelEvent; HANDLE ClientToken; ULONG OperationStatus; ULONG MsgIndex; ULONG DisplayStringCount; PVOID Parameter1; PVOID Parameter2; PVOID Parameter3; PVOID Parameter4; PWSTR UpdateStringDisplayable; PWSTR FinalResultStringDisplayable; PWSTR InstalledSiteName; DWORD OperationResultFlags; } DSROLEP_OPERATION_HANDLE, *PDSROLEP_OPERATION_HANDLE; extern DSROLEP_OPERATION_HANDLE DsRolepCurrentOperationHandle; // // Type definition for the server handle // typedef DSROLE_SERVEROP_HANDLE *PDSROLE_SERVEROP_HANDLE; // // Macros for locking the the operation handle // #define LockOpHandle() RtlAcquireResourceExclusive( &DsRolepCurrentOperationHandle.CurrentOpLock, TRUE ); #define UnlockOpHandle() RtlReleaseResource( &DsRolepCurrentOperationHandle.CurrentOpLock ); // // Function for knowing is current thread owns the lock // BOOLEAN DsRolepCurrentThreadOwnsLock( VOID ); // // Macros for setting the current operation state // #define DSROLEP_CURRENT_OP0( msg ) \ DsRolepSetCurrentOperationStatus( msg, NULL, NULL, NULL, NULL ); #define DSROLEP_CURRENT_OP1( msg, p1 ) \ DsRolepSetCurrentOperationStatus( msg, ( PVOID )p1, NULL, NULL, NULL ); #define DSROLEP_CURRENT_OP2( msg, p1, p2 ) \ DsRolepSetCurrentOperationStatus( msg, ( PVOID )p1, ( PVOID )p2, \ NULL, NULL ); #define DSROLEP_CURRENT_OP3( msg, p1, p2, p3 ) \ DsRolepSetCurrentOperationStatus( msg, ( PVOID )p1, ( PVOID )p2, \ NULL, NULL ); #define DSROLEP_CURRENT_OP4( msg, p1, p2, p3, p4 ) \ DsRolepSetCurrentOperationStatus( msg, ( PVOID )p1, ( PVOID )p2, \ ( PVOID )p3, ( PVOID )p4 ); #define DSROLEP_FAIL0( err, msg ) \ if(err != ERROR_SUCCESS) DsRolepSetFailureMessage( err, msg, NULL, NULL, NULL, NULL ); #define DSROLEP_FAIL1( err, msg, p1 ) \ if(err != ERROR_SUCCESS) DsRolepSetFailureMessage( err, msg, ( PVOID )( p1 ), NULL, NULL, NULL ); #define DSROLEP_FAIL2( err, msg, p1, p2 ) \ if(err != ERROR_SUCCESS) DsRolepSetFailureMessage( err, msg, ( PVOID )( p1 ), ( PVOID )( p2 ), NULL, NULL ); #define DSROLEP_FAIL3( err, msg, p1, p2, p3 ) \ if(err != ERROR_SUCCESS) DsRolepSetFailureMessage( err, msg, ( PVOID )( p1 ), ( PVOID )( p2 ), \ ( PVOID )( p3 ), NULL ); #define DSROLEP_FAIL4( err, msg, p1, p2, p3, p4 ) \ if(err != ERROR_SUCCESS) DsRolepSetFailureMessage( err, msg, ( PVOID )( p1 ), ( PVOID )( p2 ), \ ( PVOID )( p3 ), ( PVOID )( p4 ) ); #define DSROLEP_SET_NON_FATAL_ERROR( Err ) DsRolepCurrentOperationHandle.OperationResultFlags |= DSROLE_NON_FATAL_ERROR_OCCURRED; #define DSROLEP_SET_NON_CRIT_REPL_ERROR( ) DsRolepCurrentOperationHandle.OperationResultFlags |= DSROLE_NON_CRITICAL_REPL_NOT_FINISHED; #define DSROLEP_SET_IFM_RESTORED_DATABASE_FILES_MOVED( ) DsRolepCurrentOperationHandle.OperationResultFlags |= DSROLE_IFM_RESTORED_DATABASE_FILES_MOVED; // // Macro to determine whether to cancel an operation or not // #define DSROLEP_CHECK_FOR_CANCEL( WErr ) \ { \ LockOpHandle(); \ if( DsRolepCurrentOperationHandle.OperationState == DSROLEP_CANCELING \ && (WErr == ERROR_SUCCESS)) { \ \ WErr = ERROR_CANCELLED; \ } \ UnlockOpHandle(); \ } #define DSROLEP_CHECK_FOR_CANCEL_EX( WErr, Label ) \ { \ LockOpHandle(); \ if( DsRolepCurrentOperationHandle.OperationState == DSROLEP_CANCELING \ && (WErr == ERROR_SUCCESS)) { \ \ WErr = ERROR_CANCELLED; \ UnlockOpHandle(); \ goto Label; \ } \ UnlockOpHandle(); \ } // // Prototypes for worker functions // DWORD DsRolepGetDcOperationProgress( IN PDSROLE_SERVEROP_HANDLE DsOperationHandle, IN OUT PDSROLER_SERVEROP_STATUS *ServerOperationStatus ); DWORD DsRolepGetDcOperationResults( IN PDSROLE_SERVEROP_HANDLE DsOperationHandle, OUT PDSROLER_SERVEROP_RESULTS *ServerOperationResults ); DWORD DsRolepSetOperationHandleSiteName( IN LPWSTR SiteName ); VOID DsRolepSetCriticalOperationsDone( VOID ); DWORD DsRolepInitializeOperationHandle( VOID ); typedef enum _DSROLEP_OPERATION_TYPE { DSROLEP_OPERATION_DC = 0, DSROLEP_OPERATION_REPLICA, DSROLEP_OPERATION_DEMOTE } DSROLEP_OPERATION_TYPE, *PDSROLEP_OPERATION_TYPE; DWORD DsRolepResetOperationHandle( DSROLEP_OPERATION_STATE OpState ); VOID DsRolepResetOperationHandleLockHeld( VOID ); DWORD DsRolepSetCurrentOperationStatus( IN ULONG MsgIndex, IN PVOID Parameter1, IN PVOID Parameter2, IN PVOID Parameter3, IN PVOID Parameter4 ); DWORD DsRolepSetFailureMessage( IN DWORD FailureStatus, IN ULONG MsgIndex, IN PVOID Parameter1, IN PVOID Parameter2, IN PVOID Parameter3, IN PVOID Parameter4 ); VOID DsRolepClearErrors( VOID ); #define DSROLEP_OP_PROMOTION 0x00000001 #define DSROLEP_OP_DEMOTION 0x00000002 #define DSROLEP_OP_DEMOTION_FORCED 0x00000004 DWORD DsRolepSetOperationDone( IN DWORD Flags, IN DWORD OperationStatus ); DWORD DsRolepFormatOperationString( IN ULONG MsgId, OUT LPWSTR *FormattedString, ... ); DWORD DsRolepStringUpdateCallback( IN PWSTR StringUpdate ); DWORD DsRolepStringErrorUpdateCallback( IN PWSTR String, IN DWORD ErrorCode ); DWORD DsRolepOperationResultFlagsCallBack( IN DWORD Flags ); // // The IFM handle is a context blob of information that is used for IFM // install data that can't be shared with dcpromo. // // The fIfmOpHandleLock is set to TRUE when there is anyone: // // setting the IfmSystemInfo (DsRolerGetDatabaseFacts()) // clearing the IfmSystemInfo (DsRolerIfmHandleFree()) or // consuming the IfmSystemInfo (DsRolerDcAsReplica()) // // The fIfmOpHandleLock gets unset on exit of DsRolerGetDatabaseFacts() // or DsRolerIfmHandleFree() if they grabbed the lock, and on any // transition through "finished" for the OperationState in call to // DsRolepResetOperationHandle() with DSROLEP_IDLE or DSROLEP_NEED_REBOOT // // typedef struct _DSROLEP_IFM_OPERATION_HANDLE { DWORD fIfmOpHandleLock; DWORD fIfmSystemInfoSet; // Information from the IFM System's registry IFM_SYSTEM_INFO IfmSystemInfo; } DSROLEP_IFM_OPERATION_HANDLE, *PDSROLEP_IFM_OPERATION_HANDLE; extern DSROLEP_IFM_OPERATION_HANDLE DsRolepCurrentIfmOperationHandle; #endif // __OPHANDLE_H__
31.066465
154
0.555674
ae753a92de6b76077cfffd94c6c2ed72e9fefbde
201,753
sql
SQL
src/main/resources/database/gousade.sql
woxigousade/gousade
a49ad5462ca3972741254c3b0d62c53ef2e47789
[ "MIT" ]
4
2020-01-03T10:37:02.000Z
2020-01-16T10:47:10.000Z
src/main/resources/database/gousade.sql
woxigousade/gousade
a49ad5462ca3972741254c3b0d62c53ef2e47789
[ "MIT" ]
7
2020-01-05T10:02:28.000Z
2022-02-08T09:11:26.000Z
src/main/resources/database/gousade.sql
woxigousade/gousade
a49ad5462ca3972741254c3b0d62c53ef2e47789
[ "MIT" ]
null
null
null
DROP DATABASE IF EXISTS gousade; /* 数据库采用UTF-8 */ CREATE DATABASE IF NOT EXISTS gousade CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci; /* Navicat Premium Data Transfer Source Server : gousade Source Server Type : MySQL Source Server Version : 50556 Source Host : 101.132.118.130:9733 Source Schema : gousade Target Server Type : MySQL Target Server Version : 50556 File Encoding : 65001 Date: 15/01/2021 16:49:24 */ USE `gousade`; /*SET NAMES utf8mb4; SET FOREIGN_KEY_CHECKS = 0;*/ -- ---------------------------- -- Table structure for aliyun_video -- ---------------------------- DROP TABLE IF EXISTS `aliyun_video`; CREATE TABLE `aliyun_video` ( `id` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, `video_id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, `video_original_name` varchar(1000) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '视频名称', `duration` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '视频时长(秒)', `status` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT 'Empty未上传 Transcoding转码中 Normal正常', `size` bigint(20) NULL DEFAULT NULL COMMENT '视频源文件大小(字节)', `create_time` datetime NULL DEFAULT NULL, `update_time` datetime NULL DEFAULT NULL, `delflag` tinyint(1) NULL DEFAULT NULL, `version` bigint(20) NULL DEFAULT NULL, PRIMARY KEY (`id`) USING BTREE, UNIQUE INDEX `index_id`(`id`) USING BTREE ) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Compact; -- ---------------------------- -- Table structure for attachment_general -- ---------------------------- DROP TABLE IF EXISTS `attachment_general`; CREATE TABLE `attachment_general` ( `id` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, `attach_id` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, `attach_name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, `attach_type` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, `attach_size` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, `attach_path` varchar(4000) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, `create_time` datetime NULL DEFAULT NULL, `delflag` tinyint(1) NULL DEFAULT NULL, PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Compact; -- ---------------------------- -- Records of attachment_general -- ---------------------------- INSERT INTO `attachment_general` VALUES ('0009f964fafd40999e4c5bc9cc7a3612', NULL, 'u=2599492247,533981307&fm=26&gp=0', 'jpg', '30KB', 'D:\\gousadeFiles\\generalfile\\20200901\\ee25356f9d664bddbb030d1efadad6ae.jpg', '2020-09-01 10:12:31', 0); INSERT INTO `attachment_general` VALUES ('02f44c773cb945f1b862b2628f72d936', NULL, '新建文本文档 (4)', 'txt', '0B', 'D:\\gousadeFiles\\generalfile\\20200907\\06ec141dc27543fb82032bef6d3befd7.txt', '2020-09-07 17:17:43', 0); INSERT INTO `attachment_general` VALUES ('053fad2e8dab46d58d0527be31bf774a', NULL, 'jdk-8u261-windows-x64', 'exe', '166MB', 'D:\\gousadeFiles\\generalfile\\20200921\\eb01800d8a424c6884d1b8823520c7f7.exe', '2020-09-21 19:14:14', 0); INSERT INTO `attachment_general` VALUES ('0ab97f5e3e7742aea7d5bf920bbdf835', '911a8e15eebf4d569f8a8299e5ad99d5', 'u=2599492247,533981307&fm=26&gp=0', 'jpg', '30KB', 'D:\\gousadeFiles\\generalfile\\20200911\\a4ddc948513b4bed905d85d6d48e83a8.jpg', '2020-09-11 14:52:52', 0); INSERT INTO `attachment_general` VALUES ('1b29705e795341bd9466114018ae4acb', NULL, 'jdk-8u261-windows-x64', 'exe', '166MB', 'D:\\gousadeFiles\\generalfile\\20200921\\124baab292be42fb9a3b3fa997f48dc4.exe', '2020-09-21 19:20:00', 0); INSERT INTO `attachment_general` VALUES ('2d7f3fd9871640b38835317c2528fa42', NULL, 'logback-spring', 'xml', '12KB', 'D:\\gousadeFiles\\generalfile\\20200902\\e47edcfc5b6c461bb6a06a0ca314b743.xml', '2020-09-02 22:19:41', 0); INSERT INTO `attachment_general` VALUES ('309f5f71521649589c6cd00d9f247d81', NULL, '新建文本文档', 'txt', '0B', 'D:\\gousadeFiles\\generalfile\\20200901\\b56a4235fa144504bfb07468d0633d02.txt', '2020-09-01 10:12:31', 0); INSERT INTO `attachment_general` VALUES ('3d4660312fa74da1b209ef5173fc59ab', NULL, 'jdk-11.0.8_windows-x64_bin', 'exe', '151MB', 'D:\\gousadeFiles\\generalfile\\20200921\\07d294fd8e6e4406ae4d5bc43b4bc32e.exe', '2020-09-21 19:18:51', 0); INSERT INTO `attachment_general` VALUES ('3e4da1a7f25d4791992c78fb4312125b', NULL, '我的青春恋爱物语果然有问题。短篇集', '7z', '19MB', 'D:\\gousadeFiles\\generalfile\\20201021\\987d6fb426a340c3ba947720fbc26d4e.7z', '2020-10-21 19:03:37', 0); INSERT INTO `attachment_general` VALUES ('41445771cf4e41dd8ae8992118e41d09', NULL, 'Tohsaka Rin', 'jpg', '110KB', 'D:\\gousadeFiles\\generalfile\\20201016\\e6a254d265044e2eaf90d80450032c76.jpg', '2020-10-16 10:14:10', 0); INSERT INTO `attachment_general` VALUES ('56db8d82dd3f43ffbf80c5fffe46a675', NULL, '我的青春恋爱物语果然有问题。短篇集', '7z', '19MB', 'D:\\gousadeFiles\\generalfile\\20201021\\3e24145766d0450ab1c240ee125d4349.7z', '2020-10-21 19:04:46', 0); INSERT INTO `attachment_general` VALUES ('59b2fa3e874548dc85851ef6ab3676b9', NULL, 'u=2599492247,533981307&fm=26&gp=0', 'jpg', '30KB', 'D:\\gousadeFiles\\generalfile\\20200902\\ce028d8ff0f842a18cfaad6f65c63445.jpg', '2020-09-02 14:38:33', 0); INSERT INTO `attachment_general` VALUES ('629cbadb8c654a149914d34e52f2140a', '911a8e15eebf4d569f8a8299e5ad99d5', 'u=2599492247,533981307&fm=26&gp=0', 'jpg', '30KB', 'D:\\gousadeFiles\\generalfile\\20200901\\17b32ac0aa574d40a225a04eb0d58402.jpg', '2020-09-01 22:08:34', 0); INSERT INTO `attachment_general` VALUES ('64a403952135472992db550737eac6cd', NULL, 'jdk-8u261-windows-x64', 'exe', '166MB', 'D:\\gousadeFiles\\generalfile\\20200921\\562f6afae8624d069ccc885272b98796.exe', '2020-09-21 19:15:02', 0); INSERT INTO `attachment_general` VALUES ('69732331690646ad8fe7e6680247f241', NULL, '新建文本文档 (2)', 'txt', '2KB', 'D:\\gousadeFiles\\generalfile\\20200901\\e08c0437b95a40f581e1de3ad150a111.txt', '2020-09-01 10:12:31', 0); INSERT INTO `attachment_general` VALUES ('6ce200ce17524d3e8f641e39a639c2c1', NULL, '我的青春恋爱物语果然有问题。短篇集', '7z', '19MB', 'D:\\gousadeFiles\\generalfile\\20201021\\4d2af6ef193545fc911c8683ad8f8146.7z', '2020-10-21 19:04:11', 0); INSERT INTO `attachment_general` VALUES ('7414aa149bd44da5997becb42a4ee67c', NULL, '新建文本文档 (3)', 'txt', '0B', 'D:\\gousadeFiles\\generalfile\\20200902\\f6ec8a9b1b104f6ebf7b04ef5b3fd246.txt', '2020-09-02 14:37:25', 0); INSERT INTO `attachment_general` VALUES ('7955cd148fcf48d288f04a10fd1441c4', '911a8e15eebf4d569f8a8299e5ad99d5', 'u=894585891,2109799313&fm=26&gp=0', 'jpg', '33KB', 'D:\\gousadeFiles\\generalfile\\20200907\\d84de889445b454b99b15ccee35c735a.jpg', '2020-09-07 17:17:25', 0); INSERT INTO `attachment_general` VALUES ('7b44437d0c00417dbb0c200b9f48ba05', '911a8e15eebf4d569f8a8299e5ad99d5', 'u=894585891,2109799313&fm=26&gp=0', 'jpg', '33KB', 'D:\\gousadeFiles\\generalfile\\20200923\\036929c2fe38427f984d41ca69c1b4eb.jpg', '2020-09-23 17:12:38', 0); INSERT INTO `attachment_general` VALUES ('7f4991f7c3a348b79247b8e11ed3d86d', '911a8e15eebf4d569f8a8299e5ad99d5', 'u=2599492247,533981307&fm=26&gp=0', 'jpg', '30KB', 'D:\\gousadeFiles\\generalfile\\20200907\\5d957ff75d02460faf3f5f51652a2b00.jpg', '2020-09-07 17:17:33', 0); INSERT INTO `attachment_general` VALUES ('8ec754c44c0e48828a8c957907a8a045', '911a8e15eebf4d569f8a8299e5ad99d5', 'u=894585891,2109799313&fm=26&gp=0', 'jpg', '33KB', 'D:\\gousadeFiles\\generalfile\\20200910\\3127c14a30404bdbb450cf4c6f98b59c.jpg', '2020-09-10 16:04:42', 0); INSERT INTO `attachment_general` VALUES ('99d8daf744f24fa99a016d795dd8134a', NULL, 'u=894585891,2109799313&fm=26&gp=0', 'jpg', '33KB', 'D:\\gousadeFiles\\generalfile\\20200901\\72744c3366854f4aade2d1e2b0756e1a.jpg', '2020-09-01 10:12:31', 0); INSERT INTO `attachment_general` VALUES ('9f78ee9a39094c5ea2fdd7492207f4d7', NULL, '6d1ed1848611db806d7d40660d84fd1af0e7dfda', 'jpg', '110KB', 'D:\\gousadeFiles\\generalfile\\20210110\\0d76a2fd3e8e4f0781ae114c6ed92603.jpg', '2021-01-10 18:10:20', 0); INSERT INTO `attachment_general` VALUES ('a0d9d98fdfb24792a2c517ea14e484c6', NULL, 'jdk-11.0.8_windows-x64_bin', 'exe', '151MB', 'D:\\gousadeFiles\\generalfile\\20200921\\69d5bf31260d47efb0c54171a07fe6a3.exe', '2020-09-21 19:12:32', 0); INSERT INTO `attachment_general` VALUES ('b405b94ed47b414eb408c102a90d29a1', NULL, '我的青春恋爱物语果然有问题 第3季 完 第12集 1080P nvl', 'mp4', '170MB', 'D:\\gousadeFiles\\generalfile\\20201021\\2c4742329e1f4c98a9df9a06bf2d2726.mp4', '2020-10-21 19:01:51', 0); INSERT INTO `attachment_general` VALUES ('b4989bddd8144de5a9eaebbd5f83d309', NULL, '我的青春恋爱物语果然有问题。短篇集', '7z', '19MB', 'D:\\gousadeFiles\\generalfile\\20201021\\869f414d580148f38475b82cccbaf0dc.7z', '2020-10-21 19:03:07', 0); INSERT INTO `attachment_general` VALUES ('b73d81af09bd4bfd9fe178f9bcc84de0', NULL, '我的青春恋爱物语果然有问题。短篇集', '7z', '19MB', 'D:\\gousadeFiles\\generalfile\\20201021\\f15d5d15b02d4b278f3fbec37cb405ab.7z', '2020-10-21 19:04:57', 0); INSERT INTO `attachment_general` VALUES ('b93bdfcf0b97496db5a03c4cf52a7750', NULL, 'git概念', 'png', '205KB', 'D:\\gousadeFiles\\generalfile\\20200902\\1f50d9928612403da0fdbb233faa90c0.png', '2020-09-02 22:20:09', 0); INSERT INTO `attachment_general` VALUES ('c816d66a33804ff99650d32fd819b47b', NULL, 'u=2599492247,533981307&fm=26&gp=0', 'jpg', '30KB', 'D:\\gousadeFiles\\generalfile\\20200901\\8f24182d-b1ec-405e-be96-e5a27eb5f205.jpg', '2020-09-01 10:06:37', 0); INSERT INTO `attachment_general` VALUES ('c83fc59685a74d1798f0212551fae8cb', NULL, 'lombok', 'jar', '1MB', 'D:\\gousadeFiles\\generalfile\\20200921\\e083a0c2382e492797b5564458afa972.jar', '2020-09-21 19:19:46', 0); INSERT INTO `attachment_general` VALUES ('cb2ced50d1c04c9fabe543943a277246', NULL, 'jdk-11.0.8_windows-x64_bin', 'exe', '151MB', 'D:\\gousadeFiles\\generalfile\\20200921\\196cd84ebecf4983a27cd43f7ae1e06b.exe', '2020-09-21 19:15:27', 0); INSERT INTO `attachment_general` VALUES ('dcf506b91f03463a97b1e3ba42f3b883', '911a8e15eebf4d569f8a8299e5ad99d5', 'u=2599492247,533981307&fm=26&gp=0', 'jpg', '30KB', 'D:\\gousadeFiles\\generalfile\\20200901\\43f501f7ec0f45019110add7dddac661.jpg', '2020-09-01 10:11:52', 0); INSERT INTO `attachment_general` VALUES ('f856467cdb874faa84aa02f22daa00eb', NULL, 'Tohsaka Rin', 'jpg', '110KB', 'D:\\gousadeFiles\\generalfile\\20200901\\5c20fa4467be4b6bb260cd12e8e12a58.jpg', '2020-09-01 10:12:31', 0); INSERT INTO `attachment_general` VALUES ('fe3a9bcd71924a63bca18fade91a301a', '911a8e15eebf4d569f8a8299e5ad99d5', 'u=2599492247,533981307&fm=26&gp=0', 'jpg', '30KB', 'D:\\gousadeFiles\\generalfile\\20200904\\a13d83b75d504f1f9f184cff32cd9b85.jpg', '2020-09-04 10:29:55', 0); -- ---------------------------- -- Table structure for easy_excel_data -- ---------------------------- DROP TABLE IF EXISTS `easy_excel_data`; CREATE TABLE `easy_excel_data` ( `id` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, `string` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '字符串标题', `double_data` decimal(65, 4) NULL DEFAULT NULL COMMENT '数字标题', `date` datetime NULL DEFAULT NULL COMMENT '日期标题', `delflag` tinyint(1) NULL DEFAULT NULL, PRIMARY KEY (`id`) USING BTREE, UNIQUE INDEX `index_id`(`id`) USING BTREE ) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Compact; -- ---------------------------- -- Records of easy_excel_data -- ---------------------------- INSERT INTO `easy_excel_data` VALUES ('02d845533c63284efa7383936df278c1', '字符串3', 0.5600, '2020-09-28 11:03:36', 0); INSERT INTO `easy_excel_data` VALUES ('02f011aeeca93380914cc13c5fdfc2ce', '字符串6', 0.5600, '2020-09-27 10:51:33', 0); INSERT INTO `easy_excel_data` VALUES ('03ee1c2a10e909138fa5d0ec6b2a5c30', '字符串0', 0.5600, '2020-09-27 14:25:38', 0); INSERT INTO `easy_excel_data` VALUES ('054e76a2075020881698bdc100cf17a3', '字符串8', 0.5600, '2020-09-27 09:06:03', 0); INSERT INTO `easy_excel_data` VALUES ('05afe19bbe383c56ea73ddfaf77256f7', '字符串9', 0.5600, '2020-09-30 16:36:36', 0); INSERT INTO `easy_excel_data` VALUES ('06508d1380beb06995a1375618f3f075', '字符串1', 0.5600, '2020-09-28 11:03:36', 0); INSERT INTO `easy_excel_data` VALUES ('0802dc30ba98ff626db7968dbe01fdc1', '字符串7', 0.5600, '2020-09-27 09:06:03', 0); INSERT INTO `easy_excel_data` VALUES ('0928c20af4b5aeef747199d4ccde09c2', '字符串8', 0.5600, '2020-09-27 14:28:00', 0); INSERT INTO `easy_excel_data` VALUES ('096fc675ccc8205b9c8f04cd9b36d921', '字符串3', 0.5600, '2020-09-27 10:51:33', 0); INSERT INTO `easy_excel_data` VALUES ('12624361ba683ab3b292e4b249d53200', '字符串4', 0.5600, '2020-09-28 10:50:29', 0); INSERT INTO `easy_excel_data` VALUES ('162834fd9badf12c8ebcd60c72c5fcdf', '字符串2', 0.5600, '2020-09-28 10:50:29', 0); INSERT INTO `easy_excel_data` VALUES ('17b2b21e5cb52cba01d5236d167ca65e', '字符串9', 0.5600, '2020-09-28 11:03:36', 0); INSERT INTO `easy_excel_data` VALUES ('1819c2940853998e9b9433fbbc5dcec3', '字符串1', 0.5600, '2020-09-27 14:24:56', 0); INSERT INTO `easy_excel_data` VALUES ('1db19785a9d2e602acc96306ad137f1d', '字符串6', 0.5600, '2020-09-27 09:06:03', 0); INSERT INTO `easy_excel_data` VALUES ('207bac261e7385f2a301e6df5f536ba9', '字符串1', 0.5600, '2020-09-27 14:28:37', 0); INSERT INTO `easy_excel_data` VALUES ('20dc755141e4709b9a0cbb9f0ed51196', '字符串0', 0.5600, '2020-09-27 10:51:33', 0); INSERT INTO `easy_excel_data` VALUES ('27fda840ed38f74fc58574c97b813ec0', '字符串1', 0.5600, '2020-09-27 14:28:00', 0); INSERT INTO `easy_excel_data` VALUES ('291f48724abdb53788b1e37999059c41', '字符串8', 0.5600, '2020-09-27 14:28:37', 0); INSERT INTO `easy_excel_data` VALUES ('2f8578afc432890b6f7573bb9dd30879', '字符串9', 0.5600, '2020-09-28 10:50:29', 0); INSERT INTO `easy_excel_data` VALUES ('3148a17f5c3da7ae83071ac4cce55f8d', '字符串5', 0.5600, '2020-09-27 10:51:33', 0); INSERT INTO `easy_excel_data` VALUES ('339135c29259aa9572e5544f6176743c', '字符串9', 0.5600, '2020-09-27 14:28:37', 0); INSERT INTO `easy_excel_data` VALUES ('3620871b3edca95d933d04ac4356ec6a', '字符串7', 0.5600, '2020-09-27 10:51:33', 0); INSERT INTO `easy_excel_data` VALUES ('37844cc5da7f7d26789d564862f8458f', '字符串4', 0.5600, '2020-09-27 10:51:33', 0); INSERT INTO `easy_excel_data` VALUES ('37d28876876ccdb0eb8cc4edf324bcb0', '字符串4', 0.5600, '2020-09-28 11:03:36', 0); INSERT INTO `easy_excel_data` VALUES ('418524c8ba3065eeff5fc5045ddb2ab2', '字符串3', 0.5600, '2020-09-27 09:06:03', 0); INSERT INTO `easy_excel_data` VALUES ('44cb1edca4cf2c4a4a28eba9949a6565', '字符串7', 0.5600, '2020-09-27 14:28:37', 0); INSERT INTO `easy_excel_data` VALUES ('4d3071048256d892491b1d02fe0d7e16', '字符串9', 0.5600, '2020-09-27 09:06:03', 0); INSERT INTO `easy_excel_data` VALUES ('4e43c45f2f277462f84d61c501f7c1d9', '字符串3', 0.5600, '2020-09-30 16:36:36', 0); INSERT INTO `easy_excel_data` VALUES ('54ee0f4a23358a79fc693eec9e3223d9', '字符串6', 0.5600, '2020-09-27 09:06:52', 0); INSERT INTO `easy_excel_data` VALUES ('5b2f6eed55d50e40a1d9dd36b3dba448', '字符串1', 0.5600, '2020-09-27 09:06:52', 0); INSERT INTO `easy_excel_data` VALUES ('5c96157ad47369716069a827e326652c', '字符串2', 0.5600, '2020-09-27 14:24:56', 0); INSERT INTO `easy_excel_data` VALUES ('5cc026080450a7c852e4127ceff55c16', '字符串2', 0.5600, '2020-09-28 11:03:36', 0); INSERT INTO `easy_excel_data` VALUES ('5cc63a9365167cf3861a4e465b4e3a5f', '字符串8', 0.5600, '2020-09-28 10:50:29', 0); INSERT INTO `easy_excel_data` VALUES ('5d43d4920f62069bf4ae6de7cd722b5c', '字符串2', 0.5600, '2020-09-27 14:28:37', 0); INSERT INTO `easy_excel_data` VALUES ('672bf4e40b45d83699859d67586f1f3e', '字符串1', 0.5600, '2020-09-27 09:06:03', 0); INSERT INTO `easy_excel_data` VALUES ('6d67ce365d7fadfdfc9a4910cc7133cd', '字符串7', 0.5600, '2020-09-27 14:24:56', 0); INSERT INTO `easy_excel_data` VALUES ('75b7490fb1edcb6284a9e8b8459356bd', '字符串4', 0.5600, '2020-09-27 09:06:52', 0); INSERT INTO `easy_excel_data` VALUES ('7623e1f207e6256e9047b7a10b3de021', '字符串7', 0.5600, '2020-09-27 09:06:52', 0); INSERT INTO `easy_excel_data` VALUES ('7c846c6ad469dad69a394c638dc2d090', '字符串4', 0.5600, '2020-09-27 14:28:00', 0); INSERT INTO `easy_excel_data` VALUES ('81e609573a97ef01327d98089d8c370e', '字符串0', 0.5600, '2020-09-27 09:06:03', 0); INSERT INTO `easy_excel_data` VALUES ('8670a8d4882b8bcff7b0a0387663d5ca', '字符串2', 0.5600, '2020-09-30 16:36:36', 0); INSERT INTO `easy_excel_data` VALUES ('8efbe1bc8b78cd8b5b33535611937714', '字符串9', 0.5600, '2020-09-27 14:28:00', 0); INSERT INTO `easy_excel_data` VALUES ('93cac30955ae57d0dd885a1f748df976', '字符串5', 0.5600, '2020-09-27 09:06:03', 0); INSERT INTO `easy_excel_data` VALUES ('99eed19b7a1edb4f930f0ef3caa7ac6f', '字符串2', 0.5600, '2020-09-27 09:06:52', 0); INSERT INTO `easy_excel_data` VALUES ('a2929a466779e49e3d8d62cb7d8d29e2', '字符串5', 0.5600, '2020-09-27 09:06:52', 0); INSERT INTO `easy_excel_data` VALUES ('a2a0600553dd139d379d36ddd0da7a01', '字符串8', 0.5600, '2020-09-27 14:25:38', 0); INSERT INTO `easy_excel_data` VALUES ('a82b9fb0a487d8c7b8b4f6876007d79a', '字符串7', 0.5600, '2020-09-30 16:36:36', 0); INSERT INTO `easy_excel_data` VALUES ('a8f2989623882c33370e3646c5e10fa7', '字符串9', 0.5600, '2020-09-27 14:24:56', 0); INSERT INTO `easy_excel_data` VALUES ('af6151976c8f279d71487cae621c6f1c', '字符串0', 0.5600, '2020-09-27 14:28:00', 0); INSERT INTO `easy_excel_data` VALUES ('b3b11786d4045cdd1f9c3138e3bbfd47', '字符串7', 0.5600, '2020-09-27 14:25:38', 0); INSERT INTO `easy_excel_data` VALUES ('b57e59d1da82ea312c47efe83a25cc20', '字符串3', 0.5600, '2020-09-27 14:28:37', 0); INSERT INTO `easy_excel_data` VALUES ('b84f17375fb93725360c14b4c8af9f99', '字符串4', 0.5600, '2020-09-27 09:06:03', 0); INSERT INTO `easy_excel_data` VALUES ('b8d649cab4521e78631911203d940028', '字符串4', 0.5600, '2020-09-30 16:36:36', 0); INSERT INTO `easy_excel_data` VALUES ('ba704844b729c79aa84a83096f5fb384', '字符串8', 0.5600, '2020-09-27 09:06:52', 0); INSERT INTO `easy_excel_data` VALUES ('be5f8c3a52e10a34afca036e2ec4ba8c', '字符串7', 0.5600, '2020-09-27 14:28:00', 0); INSERT INTO `easy_excel_data` VALUES ('bf929f4fc5544578797c1aa05a44fd80', '字符串2', 0.5600, '2020-09-27 14:28:00', 0); INSERT INTO `easy_excel_data` VALUES ('c57462876e90c3ab3ddf0758e19b2214', '字符串3', 0.5600, '2020-09-27 14:28:00', 0); INSERT INTO `easy_excel_data` VALUES ('c5a6725b1c3fc5a029491b9de6d55e83', '字符串6', 0.5600, '2020-09-27 14:24:56', 0); INSERT INTO `easy_excel_data` VALUES ('c8afa94d5f1307a8b361dd348a3fe1e0', '字符串4', 0.5600, '2020-09-27 14:28:37', 0); INSERT INTO `easy_excel_data` VALUES ('cbfa818b0088b92a0a1036870ee16f3a', '字符串9', 0.5600, '2020-09-27 09:06:52', 0); INSERT INTO `easy_excel_data` VALUES ('cc5f95cdee9e17e817f86ca471cd0e3a', '字符串9', 0.5600, '2020-09-27 14:25:38', 0); INSERT INTO `easy_excel_data` VALUES ('cd1d1c9fd8c8f2318b5ed7cf2f8caec1', '字符串4', 0.5600, '2020-09-27 14:25:38', 0); INSERT INTO `easy_excel_data` VALUES ('ce00c989aa734364ee1b963337e1d870', '字符串1', 0.5600, '2020-09-30 16:36:36', 0); INSERT INTO `easy_excel_data` VALUES ('ce03f8ca9eee2ad0e524b0734ff22a4e', '字符串2', 0.5600, '2020-09-27 10:51:33', 0); INSERT INTO `easy_excel_data` VALUES ('d218d6381f8eb8bc0025a24a44babc7f', '字符串8', 0.5600, '2020-09-30 16:36:36', 0); INSERT INTO `easy_excel_data` VALUES ('d2f9007ff8b0dbbe9294e1a4a7f672bb', '字符串3', 0.5600, '2020-09-27 14:24:56', 0); INSERT INTO `easy_excel_data` VALUES ('d43baac47135c86edf13d039fee62404', '字符串5', 0.5600, '2020-09-27 14:24:56', 0); INSERT INTO `easy_excel_data` VALUES ('d4d25ea217d6ca850df38ad4c362c7c2', '字符串1', 0.5600, '2020-09-27 10:51:33', 0); INSERT INTO `easy_excel_data` VALUES ('d6133c7e2267f1375762c2f1cfaad28a', '字符串7', 0.5600, '2020-09-28 11:03:36', 0); INSERT INTO `easy_excel_data` VALUES ('d94fe558772cd0008bb2d05eee49e64e', '字符串8', 0.5600, '2020-09-27 10:51:33', 0); INSERT INTO `easy_excel_data` VALUES ('dc096c672c6728dc7c1e867a554c1851', '字符串3', 0.5600, '2020-09-27 09:06:52', 0); INSERT INTO `easy_excel_data` VALUES ('dde11b4458b7d42574ccab23c32be44d', '字符串1', 0.5600, '2020-09-27 14:25:38', 0); INSERT INTO `easy_excel_data` VALUES ('e0b53e5d2a20003536da0a9e9d873cc2', '字符串2', 0.5600, '2020-09-27 09:06:03', 0); INSERT INTO `easy_excel_data` VALUES ('e32483f681e49f1f61542b440a6b3e92', '字符串8', 0.5600, '2020-09-28 11:03:36', 0); INSERT INTO `easy_excel_data` VALUES ('e601ae1c64ff65da7b3bfd746af079f8', '字符串3', 0.5600, '2020-09-27 14:25:38', 0); INSERT INTO `easy_excel_data` VALUES ('e7737a87ea50d116cd4cde8d24b52a9f', '字符串3', 0.5600, '2020-09-28 10:50:29', 0); INSERT INTO `easy_excel_data` VALUES ('e8e0ed94bb5b5bef23517b9acd0a382c', '字符串7', 0.5600, '2020-09-28 10:50:29', 0); INSERT INTO `easy_excel_data` VALUES ('ec4e20eb68adae6e28b5642d900d116e', '字符串8', 0.5600, '2020-09-27 14:24:56', 0); INSERT INTO `easy_excel_data` VALUES ('ef2c3737e9dc98298b43ba48d6afcfdf', '字符串9', 0.5600, '2020-09-27 10:51:33', 0); INSERT INTO `easy_excel_data` VALUES ('f0953120c088a4155f799b405a6cb9af', '字符串0', 0.5600, '2020-09-27 09:06:52', 0); INSERT INTO `easy_excel_data` VALUES ('f1a71048e00e862033a5239ed6da6a7d', '字符串1', 0.5600, '2020-09-28 10:50:29', 0); INSERT INTO `easy_excel_data` VALUES ('f3e1844c36e2bb832ca5cd57e2871e5a', '字符串0', 0.5600, '2020-09-27 14:24:56', 0); INSERT INTO `easy_excel_data` VALUES ('f777f3a6dff71d9cc989df9d92231fe8', '字符串2', 0.5600, '2020-09-27 14:25:38', 0); INSERT INTO `easy_excel_data` VALUES ('f7b1541c2dd11c6c183133cb15154444', '字符串4', 0.5600, '2020-09-27 14:24:56', 0); -- ---------------------------- -- Table structure for operation_record_log -- ---------------------------- DROP TABLE IF EXISTS `operation_record_log`; CREATE TABLE `operation_record_log` ( `id` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, `operation_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, `operation_num` int(11) NULL DEFAULT NULL, `operation_description` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, `operation_interface` varchar(1000) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, `operation_param` varchar(1000) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, `create_time` datetime NULL DEFAULT NULL, `delflag` tinyint(1) NULL DEFAULT NULL, PRIMARY KEY (`id`) USING BTREE, UNIQUE INDEX `index_id`(`id`) USING BTREE ) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Compact; -- ---------------------------- -- Records of operation_record_log -- ---------------------------- INSERT INTO `operation_record_log` VALUES ('1300321830129348609', 'Tohsaka Rin', 0, '查询角色列表', 'com.gousade.controller.RoleController.selectRoleList', '1,10,org.apache.shiro.web.servlet.ShiroHttpServletRequest@44fb685b', '2020-08-31 14:37:37', 0); INSERT INTO `operation_record_log` VALUES ('1300325152680816642', 'Tohsaka Rin', 0, '查询角色列表', 'com.gousade.controller.RoleController.selectRoleList', '1,10,org.apache.shiro.web.servlet.ShiroHttpServletRequest@663eb3c3', '2020-08-31 14:50:49', 0); INSERT INTO `operation_record_log` VALUES ('1300325404192256001', 'Tohsaka Rin', 9999, '短信验证码发送', 'com.gousade.redis.RedisSmsCodeUtil.sendSmsCode', '151********', '2020-08-31 14:51:49', 0); INSERT INTO `operation_record_log` VALUES ('1300325604893896706', 'Tohsaka Rin', 9999, '短信验证码发送', 'com.gousade.redis.RedisSmsCodeUtil.sendSmsCode', '151********', '2020-08-31 14:52:37', 0); INSERT INTO `operation_record_log` VALUES ('1300325793591439361', 'Tohsaka Rin', 9999, '短信验证码发送', 'com.gousade.redis.RedisSmsCodeUtil.sendSmsCode', '151********', '2020-08-31 14:53:22', 0); INSERT INTO `operation_record_log` VALUES ('1300331901102043138', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@6ae29a92,org.apache.shiro.web.servlet.ShiroHttpServletRequest@eaf6f9f', '2020-08-31 15:17:38', 0); INSERT INTO `operation_record_log` VALUES ('1300331934077661186', 'Tohsaka Rin', 1, '上传头像', 'com.gousade.controller.UserController.userAvatorUpload', 'org.springframework.web.multipart.support.StandardMultipartHttpServletRequest$StandardMultipartFile@1d5f6154', '2020-08-31 15:17:46', 0); INSERT INTO `operation_record_log` VALUES ('1300331935050739714', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@52196070,org.apache.shiro.web.servlet.ShiroHttpServletRequest@68c2b537', '2020-08-31 15:17:46', 0); INSERT INTO `operation_record_log` VALUES ('1300342332705153026', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@3f980cf2,org.apache.shiro.web.servlet.ShiroHttpServletRequest@4793d365', '2020-08-31 15:59:05', 0); INSERT INTO `operation_record_log` VALUES ('1300342370307088385', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@3e17e4a7,org.apache.shiro.web.servlet.ShiroHttpServletRequest@6640d4f6', '2020-08-31 15:59:14', 0); INSERT INTO `operation_record_log` VALUES ('1300342824101421057', 'Tohsaka Rin', 0, '查询角色列表', 'com.gousade.controller.RoleController.selectRoleList', '1,10,org.apache.shiro.web.servlet.ShiroHttpServletRequest@8e88e16', '2020-08-31 16:01:03', 0); INSERT INTO `operation_record_log` VALUES ('1300344149467983873', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@3f41467c,org.apache.shiro.web.servlet.ShiroHttpServletRequest@1dccdb25', '2020-08-31 16:06:19', 0); INSERT INTO `operation_record_log` VALUES ('1300344223002521602', 'Tohsaka Rin', 0, '查询角色列表', 'com.gousade.controller.RoleController.selectRoleList', '1,10,org.apache.shiro.web.servlet.ShiroHttpServletRequest@5e44c352', '2020-08-31 16:06:36', 0); INSERT INTO `operation_record_log` VALUES ('1300344411188359169', 'Tohsaka Rin', 0, '查询角色列表', 'com.gousade.controller.RoleController.selectRoleList', '1,10,org.apache.shiro.web.servlet.ShiroHttpServletRequest@65c53946', '2020-08-31 16:07:21', 0); INSERT INTO `operation_record_log` VALUES ('1300357799876378626', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@4fdf8c1a,org.apache.shiro.web.servlet.ShiroHttpServletRequest@775e2b4c', '2020-08-31 17:00:33', 0); INSERT INTO `operation_record_log` VALUES ('1300357842746359809', 'Tohsaka Rin', 0, '查询角色列表', 'com.gousade.controller.RoleController.selectRoleList', '1,10,org.apache.shiro.web.servlet.ShiroHttpServletRequest@220ba534', '2020-08-31 17:00:43', 0); INSERT INTO `operation_record_log` VALUES ('1300358144895639554', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@33010c5c,org.apache.shiro.web.servlet.ShiroHttpServletRequest@47c64fa6', '2020-08-31 17:01:55', 0); INSERT INTO `operation_record_log` VALUES ('1300358176029958146', 'Tohsaka Rin', 0, '查询角色列表', 'com.gousade.controller.RoleController.selectRoleList', '1,10,org.apache.shiro.web.servlet.ShiroHttpServletRequest@4d11271e', '2020-08-31 17:02:03', 0); INSERT INTO `operation_record_log` VALUES ('1300358742626004993', 'Tohsaka Rin', 0, '查询角色列表', 'com.gousade.controller.RoleController.selectRoleList', '1,10,org.apache.shiro.web.servlet.ShiroHttpServletRequest@37d69196', '2020-08-31 17:04:18', 0); INSERT INTO `operation_record_log` VALUES ('1300359928246579201', 'Tohsaka Rin', 0, '查询角色列表', 'com.gousade.controller.RoleController.selectRoleList', '1,10,org.apache.shiro.web.servlet.ShiroHttpServletRequest@163c4b39', '2020-08-31 17:09:01', 0); INSERT INTO `operation_record_log` VALUES ('1300360319008944129', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@171afc10,org.apache.shiro.web.servlet.ShiroHttpServletRequest@2dc31db1', '2020-08-31 17:10:34', 0); INSERT INTO `operation_record_log` VALUES ('1300360336427888642', 'Tohsaka Rin', 0, '查询角色列表', 'com.gousade.controller.RoleController.selectRoleList', '1,10,org.apache.shiro.web.servlet.ShiroHttpServletRequest@82f03d4', '2020-08-31 17:10:38', 0); INSERT INTO `operation_record_log` VALUES ('1300360360876486658', 'Tohsaka Rin', 0, '查询角色列表', 'com.gousade.controller.RoleController.selectRoleList', '1,10,org.apache.shiro.web.servlet.ShiroHttpServletRequest@365f143b', '2020-08-31 17:10:44', 0); INSERT INTO `operation_record_log` VALUES ('1300360958329888770', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@54e69c34,org.apache.shiro.web.servlet.ShiroHttpServletRequest@64215b26', '2020-08-31 17:13:06', 0); INSERT INTO `operation_record_log` VALUES ('1300393391379517442', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@1b5b11be,org.apache.shiro.web.servlet.ShiroHttpServletRequest@558c1a90', '2020-08-31 19:21:59', 0); INSERT INTO `operation_record_log` VALUES ('1300393454394740737', 'Tohsaka Rin', 0, '查询角色列表', 'com.gousade.controller.RoleController.selectRoleList', '1,10,org.apache.shiro.web.servlet.ShiroHttpServletRequest@31b85bde', '2020-08-31 19:22:14', 0); INSERT INTO `operation_record_log` VALUES ('1300394312654229505', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@1b3706ae,org.apache.shiro.web.servlet.ShiroHttpServletRequest@4f731e2a', '2020-08-31 19:25:38', 0); INSERT INTO `operation_record_log` VALUES ('1300394333357314050', 'Tohsaka Rin', 0, '查询角色列表', 'com.gousade.controller.RoleController.selectRoleList', '1,10,org.apache.shiro.web.servlet.ShiroHttpServletRequest@713cd880', '2020-08-31 19:25:43', 0); INSERT INTO `operation_record_log` VALUES ('1300394387216371713', 'Tohsaka Rin', 1, '上传头像', 'com.gousade.controller.UserController.userAvatorUpload', 'org.springframework.web.multipart.support.StandardMultipartHttpServletRequest$StandardMultipartFile@2c6c3a0a', '2020-08-31 19:25:56', 0); INSERT INTO `operation_record_log` VALUES ('1300394388155895809', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@3e766e0e,org.apache.shiro.web.servlet.ShiroHttpServletRequest@1f5daf67', '2020-08-31 19:25:56', 0); INSERT INTO `operation_record_log` VALUES ('1300394840729686017', 'Tohsaka Rin', 9999, '短信验证码发送', 'com.gousade.redis.RedisSmsCodeUtil.sendSmsCode', '151********', '2020-08-31 19:27:44', 0); INSERT INTO `operation_record_log` VALUES ('1300394892231544834', 'Tohsaka Rin', 9999, '短信验证码发送', 'com.gousade.redis.RedisSmsCodeUtil.sendSmsCode', '151********', '2020-08-31 19:27:57', 0); INSERT INTO `operation_record_log` VALUES ('1300395391223697409', 'Tohsaka Rin', 9999, '短信验证码发送', 'com.gousade.redis.RedisSmsCodeUtil.sendSmsCode', '151********', '2020-08-31 19:29:56', 0); INSERT INTO `operation_record_log` VALUES ('1300414099241406466', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@aeb41a6,org.apache.shiro.web.servlet.ShiroHttpServletRequest@354b5f72', '2020-08-31 20:44:16', 0); INSERT INTO `operation_record_log` VALUES ('1300414187518922754', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@5e084157,org.apache.shiro.web.servlet.ShiroHttpServletRequest@4dfe9c9f', '2020-08-31 20:44:37', 0); INSERT INTO `operation_record_log` VALUES ('1300414216895827969', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@36480313,org.apache.shiro.web.servlet.ShiroHttpServletRequest@31f2edca', '2020-08-31 20:44:44', 0); INSERT INTO `operation_record_log` VALUES ('1300414413172477953', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@77d46ba7,org.apache.shiro.web.servlet.ShiroHttpServletRequest@4f439191', '2020-08-31 20:45:31', 0); INSERT INTO `operation_record_log` VALUES ('1300414460115128321', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@10d2b988,org.apache.shiro.web.servlet.ShiroHttpServletRequest@2768c492', '2020-08-31 20:45:42', 0); INSERT INTO `operation_record_log` VALUES ('1300414571792588802', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@5a62fdd,org.apache.shiro.web.servlet.ShiroHttpServletRequest@67a07d40', '2020-08-31 20:46:09', 0); INSERT INTO `operation_record_log` VALUES ('1300414662657990657', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@1681606f,org.apache.shiro.web.servlet.ShiroHttpServletRequest@74736d5a', '2020-08-31 20:46:30', 0); INSERT INTO `operation_record_log` VALUES ('1300430013093507074', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@33b1c1a3,org.apache.shiro.web.servlet.ShiroHttpServletRequest@1c9979ca', '2020-08-31 21:47:30', 0); INSERT INTO `operation_record_log` VALUES ('1300430057095950338', 'Tohsaka Rin', 0, '查询角色列表', 'com.gousade.controller.RoleController.selectRoleList', '1,10,org.apache.shiro.web.servlet.ShiroHttpServletRequest@8d37d50', '2020-08-31 21:47:41', 0); INSERT INTO `operation_record_log` VALUES ('1300431842432880642', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@4e0a4d58,org.apache.shiro.web.servlet.ShiroHttpServletRequest@734296b1', '2020-08-31 21:54:46', 0); INSERT INTO `operation_record_log` VALUES ('1300432162969980930', 'Tohsaka Rin', 0, '查询角色列表', 'com.gousade.controller.RoleController.selectRoleList', '1,10,org.apache.shiro.web.servlet.ShiroHttpServletRequest@1174abf5', '2020-08-31 21:56:03', 0); INSERT INTO `operation_record_log` VALUES ('1300433638098268162', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@648e096a,org.apache.shiro.web.servlet.ShiroHttpServletRequest@605a9c1', '2020-08-31 22:01:54', 0); INSERT INTO `operation_record_log` VALUES ('1300434417907462146', 'Tohsaka Rin', 0, '查询角色列表', 'com.gousade.controller.RoleController.selectRoleList', '1,10,org.apache.shiro.web.servlet.ShiroHttpServletRequest@716e1706', '2020-08-31 22:05:00', 0); INSERT INTO `operation_record_log` VALUES ('1300615950747983874', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@15d7b9e1,org.apache.shiro.web.servlet.ShiroHttpServletRequest@1670b2f7', '2020-09-01 10:06:21', 0); INSERT INTO `operation_record_log` VALUES ('1300616019178053633', 'Tohsaka Rin', 1, '上传头像', 'com.gousade.controller.UserController.userAvatorUpload', 'org.springframework.web.multipart.support.StandardMultipartHttpServletRequest$StandardMultipartFile@11ca88d8', '2020-09-01 10:06:37', 0); INSERT INTO `operation_record_log` VALUES ('1300616020490870785', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@7f1e1e87,org.apache.shiro.web.servlet.ShiroHttpServletRequest@18a49ecd', '2020-09-01 10:06:38', 0); INSERT INTO `operation_record_log` VALUES ('1300617337850454018', 'Tohsaka Rin', 1, '上传头像', 'com.gousade.controller.UserController.userAvatorUpload', 'org.springframework.web.multipart.support.StandardMultipartHttpServletRequest$StandardMultipartFile@d103fda', '2020-09-01 10:11:52', 0); INSERT INTO `operation_record_log` VALUES ('1300617338869669890', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@bea6f31,org.apache.shiro.web.servlet.ShiroHttpServletRequest@efeab0a', '2020-09-01 10:11:52', 0); INSERT INTO `operation_record_log` VALUES ('1300620404637458434', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@a820e82,org.apache.shiro.web.servlet.ShiroHttpServletRequest@564feca6', '2020-09-01 10:24:03', 0); INSERT INTO `operation_record_log` VALUES ('1300620460484616194', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@30403bdf,org.apache.shiro.web.servlet.ShiroHttpServletRequest@637d1dc', '2020-09-01 10:24:16', 0); INSERT INTO `operation_record_log` VALUES ('1300620687568429058', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@7d50bb5b,org.apache.shiro.web.servlet.ShiroHttpServletRequest@269c3d3e', '2020-09-01 10:25:10', 0); INSERT INTO `operation_record_log` VALUES ('1300620903721885698', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@3ee60457,org.apache.shiro.web.servlet.ShiroHttpServletRequest@6adc8eab', '2020-09-01 10:26:02', 0); INSERT INTO `operation_record_log` VALUES ('1300620928640245762', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@1b2b638e,org.apache.shiro.web.servlet.ShiroHttpServletRequest@59c4d9d1', '2020-09-01 10:26:08', 0); INSERT INTO `operation_record_log` VALUES ('1300629616859963393', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@22e2096f,org.apache.shiro.web.servlet.ShiroHttpServletRequest@2d819735', '2020-09-01 11:00:39', 0); INSERT INTO `operation_record_log` VALUES ('1300681054936076290', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@71a1eca7,org.apache.shiro.web.servlet.ShiroHttpServletRequest@7ea7ecdc', '2020-09-01 14:25:03', 0); INSERT INTO `operation_record_log` VALUES ('1300694312539611138', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@62e4d1d9,org.apache.shiro.web.servlet.ShiroHttpServletRequest@5d334207', '2020-09-01 15:17:44', 0); INSERT INTO `operation_record_log` VALUES ('1300705475629383682', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@6b151f51,org.apache.shiro.web.servlet.ShiroHttpServletRequest@3fe068bc', '2020-09-01 16:02:06', 0); INSERT INTO `operation_record_log` VALUES ('1300712866987081729', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@7de12ab3,org.apache.shiro.web.servlet.ShiroHttpServletRequest@78dbe888', '2020-09-01 16:31:28', 0); INSERT INTO `operation_record_log` VALUES ('1300743399582789634', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@7e350285,org.apache.shiro.web.servlet.ShiroHttpServletRequest@1044fa83', '2020-09-01 18:32:47', 0); INSERT INTO `operation_record_log` VALUES ('1300767100141428737', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@3299a1fd,org.apache.shiro.web.servlet.ShiroHttpServletRequest@f8bb11c', '2020-09-01 20:06:58', 0); INSERT INTO `operation_record_log` VALUES ('1300770653215924225', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@72d28565,org.apache.shiro.web.servlet.ShiroHttpServletRequest@363d8432', '2020-09-01 20:21:05', 0); INSERT INTO `operation_record_log` VALUES ('1300772317482196993', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@d50f5d0,org.apache.shiro.web.servlet.ShiroHttpServletRequest@166d3b00', '2020-09-01 20:27:42', 0); INSERT INTO `operation_record_log` VALUES ('1300772474059759617', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@696995f4,org.apache.shiro.web.servlet.ShiroHttpServletRequest@1c529c3c', '2020-09-01 20:28:19', 0); INSERT INTO `operation_record_log` VALUES ('1300779815941439489', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@488aa36e,org.apache.shiro.web.servlet.ShiroHttpServletRequest@24d9e31b', '2020-09-01 20:57:30', 0); INSERT INTO `operation_record_log` VALUES ('1300780105923035138', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@6e211715,org.apache.shiro.web.servlet.ShiroHttpServletRequest@358aed91', '2020-09-01 20:58:39', 0); INSERT INTO `operation_record_log` VALUES ('1300780435628883969', 'Tohsaka Rin', 9999, '短信验证码发送', 'com.gousade.redis.RedisSmsCodeUtil.sendSmsCode', '151********', '2020-09-01 20:59:57', 0); INSERT INTO `operation_record_log` VALUES ('1300783742355243010', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@4ee76071,org.apache.shiro.web.servlet.ShiroHttpServletRequest@6ca2f319', '2020-09-01 21:13:06', 0); INSERT INTO `operation_record_log` VALUES ('1300783760642408450', 'Tohsaka Rin', 9999, '短信验证码发送', 'com.gousade.redis.RedisSmsCodeUtil.sendSmsCode', '151********', '2020-09-01 21:13:10', 0); INSERT INTO `operation_record_log` VALUES ('1300783854947139585', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@426053df,org.apache.shiro.web.servlet.ShiroHttpServletRequest@efb206e', '2020-09-01 21:13:33', 0); INSERT INTO `operation_record_log` VALUES ('1300786290738855937', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@56cbbd3a,org.apache.shiro.web.servlet.ShiroHttpServletRequest@71435f28', '2020-09-01 21:23:13', 0); INSERT INTO `operation_record_log` VALUES ('1300786675973095426', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@6f41541f,org.apache.shiro.web.servlet.ShiroHttpServletRequest@4a930db9', '2020-09-01 21:24:45', 0); INSERT INTO `operation_record_log` VALUES ('1300789202353389570', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@854aa6f,org.apache.shiro.web.servlet.ShiroHttpServletRequest@635aa824', '2020-09-01 21:34:47', 0); INSERT INTO `operation_record_log` VALUES ('1300789742051262465', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@7edba0a2,org.apache.shiro.web.servlet.ShiroHttpServletRequest@568a38f9', '2020-09-01 21:36:56', 0); INSERT INTO `operation_record_log` VALUES ('1300789745163436034', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@3ae3dcd0,org.apache.shiro.web.servlet.ShiroHttpServletRequest@55f0abfa', '2020-09-01 21:36:57', 0); INSERT INTO `operation_record_log` VALUES ('1300789799311900674', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@ca7d1ec,org.apache.shiro.web.servlet.ShiroHttpServletRequest@318bbf23', '2020-09-01 21:37:10', 0); INSERT INTO `operation_record_log` VALUES ('1300789823051661314', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@7d0130ff,org.apache.shiro.web.servlet.ShiroHttpServletRequest@5ad54a20', '2020-09-01 21:37:15', 0); INSERT INTO `operation_record_log` VALUES ('1300791115199283201', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@2d33ff19,org.apache.shiro.web.servlet.ShiroHttpServletRequest@1a6959b2', '2020-09-01 21:42:24', 0); INSERT INTO `operation_record_log` VALUES ('1300792043696553985', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@768fcb6c,org.apache.shiro.web.servlet.ShiroHttpServletRequest@6073a648', '2020-09-01 21:46:05', 0); INSERT INTO `operation_record_log` VALUES ('1300792598242263041', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@47044916,org.apache.shiro.web.servlet.ShiroHttpServletRequest@6c31782b', '2020-09-01 21:48:17', 0); INSERT INTO `operation_record_log` VALUES ('1300797585227776001', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@6484c45d,org.apache.shiro.web.servlet.ShiroHttpServletRequest@342584db', '2020-09-01 22:08:06', 0); INSERT INTO `operation_record_log` VALUES ('1300797702525681666', 'Tohsaka Rin', 1, '上传头像', 'com.gousade.controller.UserController.userAvatorUpload', 'org.springframework.web.multipart.support.StandardMultipartHttpServletRequest$StandardMultipartFile@22064c43', '2020-09-01 22:08:34', 0); INSERT INTO `operation_record_log` VALUES ('1300797703498760194', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@26620b39,org.apache.shiro.web.servlet.ShiroHttpServletRequest@20c96eb', '2020-09-01 22:08:34', 0); INSERT INTO `operation_record_log` VALUES ('1300979468911497217', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@17134c13,org.apache.shiro.web.servlet.ShiroHttpServletRequest@3655e666', '2020-09-02 10:10:51', 0); INSERT INTO `operation_record_log` VALUES ('1301046498129862657', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@5cd47b7e,org.apache.shiro.web.servlet.ShiroHttpServletRequest@4ce253a8', '2020-09-02 14:37:12', 0); INSERT INTO `operation_record_log` VALUES ('1301048373302517762', 'Tohsaka Rin', 9999, '短信验证码发送', 'com.gousade.redis.RedisSmsCodeUtil.sendSmsCode', '151********', '2020-09-02 14:44:39', 0); INSERT INTO `operation_record_log` VALUES ('1301056127698198529', 'Tohsaka Rin', 9999, '短信验证码发送', 'com.gousade.redis.RedisSmsCodeUtil.sendSmsCode', '151********', '2020-09-02 15:15:27', 0); INSERT INTO `operation_record_log` VALUES ('1301057008313294850', 'Tohsaka Rin', 9999, '短信验证码发送', 'com.gousade.redis.RedisSmsCodeUtil.sendSmsCode', '151********', '2020-09-02 15:18:57', 0); INSERT INTO `operation_record_log` VALUES ('1301060591326846978', 'Tohsaka Rin', 9999, '短信验证码发送', 'com.gousade.redis.RedisSmsCodeUtil.sendSmsCode', '151********', '2020-09-02 15:33:12', 0); INSERT INTO `operation_record_log` VALUES ('1301060689209319426', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@2a576fcf,org.apache.shiro.web.servlet.ShiroHttpServletRequest@14ea7700', '2020-09-02 15:33:35', 0); INSERT INTO `operation_record_log` VALUES ('1301060984622538754', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@4d66fa12,org.apache.shiro.web.servlet.ShiroHttpServletRequest@74be814d', '2020-09-02 15:34:45', 0); INSERT INTO `operation_record_log` VALUES ('1301061000061771778', 'Tohsaka Rin', 9999, '短信验证码发送', 'com.gousade.redis.RedisSmsCodeUtil.sendSmsCode', '151********', '2020-09-02 15:34:49', 0); INSERT INTO `operation_record_log` VALUES ('1301062257157595138', 'Tohsaka Rin', 9999, '短信验证码发送', 'com.gousade.redis.RedisSmsCodeUtil.sendSmsCode', '151********', '2020-09-02 15:39:49', 0); INSERT INTO `operation_record_log` VALUES ('1301063997529513986', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@421207d0,org.apache.shiro.web.servlet.ShiroHttpServletRequest@49a18dff', '2020-09-02 15:46:44', 0); INSERT INTO `operation_record_log` VALUES ('1301064009340674050', 'Tohsaka Rin', 9999, '短信验证码发送', 'com.gousade.redis.RedisSmsCodeUtil.sendSmsCode', '151********', '2020-09-02 15:46:47', 0); INSERT INTO `operation_record_log` VALUES ('1301064114739339266', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@60276e3c,org.apache.shiro.web.servlet.ShiroHttpServletRequest@176675f8', '2020-09-02 15:47:12', 0); INSERT INTO `operation_record_log` VALUES ('1301064141763239938', 'Tohsaka Rin', 9999, '短信验证码发送', 'com.gousade.redis.RedisSmsCodeUtil.sendSmsCode', '151********', '2020-09-02 15:47:18', 0); INSERT INTO `operation_record_log` VALUES ('1301064221954138114', 'Tohsaka Rin', 9999, '短信验证码发送', 'com.gousade.redis.RedisSmsCodeUtil.sendSmsCode', '151********', '2020-09-02 15:47:37', 0); INSERT INTO `operation_record_log` VALUES ('1301122758246244353', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@15b197e3,org.apache.shiro.web.servlet.ShiroHttpServletRequest@75473d68', '2020-09-02 19:40:13', 0); INSERT INTO `operation_record_log` VALUES ('1301122950240509953', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@697e1e23,org.apache.shiro.web.servlet.ShiroHttpServletRequest@7c25f0b0', '2020-09-02 19:40:59', 0); INSERT INTO `operation_record_log` VALUES ('1301124087093927937', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@5bd72746,org.apache.shiro.web.servlet.ShiroHttpServletRequest@74fba05b', '2020-09-02 19:45:30', 0); INSERT INTO `operation_record_log` VALUES ('1301124400576208897', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@2f746be6,org.apache.shiro.web.servlet.ShiroHttpServletRequest@672db2df', '2020-09-02 19:46:45', 0); INSERT INTO `operation_record_log` VALUES ('1301125760294100994', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@65e0157d,org.apache.shiro.web.servlet.ShiroHttpServletRequest@3228b620', '2020-09-02 19:52:09', 0); INSERT INTO `operation_record_log` VALUES ('1301128177689567233', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@667ef79c,org.apache.shiro.web.servlet.ShiroHttpServletRequest@77e892c1', '2020-09-02 20:01:46', 0); INSERT INTO `operation_record_log` VALUES ('1301161009338241025', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@42a46477,org.apache.shiro.web.servlet.ShiroHttpServletRequest@cdda543', '2020-09-02 22:12:13', 0); INSERT INTO `operation_record_log` VALUES ('1301161452961386497', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@1e49530a,org.apache.shiro.web.servlet.ShiroHttpServletRequest@35900368', '2020-09-02 22:13:59', 0); INSERT INTO `operation_record_log` VALUES ('1301431234035683330', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@3870115f,org.apache.shiro.web.servlet.ShiroHttpServletRequest@27bc8b7f', '2020-09-03 16:06:00', 0); INSERT INTO `operation_record_log` VALUES ('1301431577746313218', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@2f6b3722,org.apache.shiro.web.servlet.ShiroHttpServletRequest@eac5d07', '2020-09-03 16:07:22', 0); INSERT INTO `operation_record_log` VALUES ('1301431608519921665', 'Tohsaka Rin', 0, '查询角色列表', 'com.gousade.controller.RoleController.selectRoleList', '1,10,org.apache.shiro.web.servlet.ShiroHttpServletRequest@3e9bff8b', '2020-09-03 16:07:29', 0); INSERT INTO `operation_record_log` VALUES ('1301431832348954626', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@3dc4142a,org.apache.shiro.web.servlet.ShiroHttpServletRequest@6810b36a', '2020-09-03 16:08:22', 0); INSERT INTO `operation_record_log` VALUES ('1301432694714634241', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@54cd8ebd,org.apache.shiro.web.servlet.ShiroHttpServletRequest@631cb40d', '2020-09-03 16:11:48', 0); INSERT INTO `operation_record_log` VALUES ('1301433120784617473', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@3067d32f,org.apache.shiro.web.servlet.ShiroHttpServletRequest@1608126', '2020-09-03 16:13:30', 0); INSERT INTO `operation_record_log` VALUES ('1301433311226990594', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@24ff851b,org.apache.shiro.web.servlet.ShiroHttpServletRequest@3df4fefc', '2020-09-03 16:14:15', 0); INSERT INTO `operation_record_log` VALUES ('1301434161487908866', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@724ba390,org.apache.shiro.web.servlet.ShiroHttpServletRequest@2e51aae8', '2020-09-03 16:17:38', 0); INSERT INTO `operation_record_log` VALUES ('1301434302521380866', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@217ea6d8,org.apache.shiro.web.servlet.ShiroHttpServletRequest@4201df91', '2020-09-03 16:18:11', 0); INSERT INTO `operation_record_log` VALUES ('1301434677026590722', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@46182396,org.apache.shiro.web.servlet.ShiroHttpServletRequest@38b4888e', '2020-09-03 16:19:41', 0); INSERT INTO `operation_record_log` VALUES ('1301435997359935490', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@69a1ca66,org.apache.shiro.web.servlet.ShiroHttpServletRequest@5aca7854', '2020-09-03 16:24:55', 0); INSERT INTO `operation_record_log` VALUES ('1301436897247858690', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@3b10fd81,org.apache.shiro.web.servlet.ShiroHttpServletRequest@63cccf4', '2020-09-03 16:28:30', 0); INSERT INTO `operation_record_log` VALUES ('1301437775468007426', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@ddf6282,org.apache.shiro.web.servlet.ShiroHttpServletRequest@28fe641b', '2020-09-03 16:31:59', 0); INSERT INTO `operation_record_log` VALUES ('1301437895525765121', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@994582a,org.apache.shiro.web.servlet.ShiroHttpServletRequest@58e56bc5', '2020-09-03 16:32:28', 0); INSERT INTO `operation_record_log` VALUES ('1301438122404057090', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@27acbbfa,org.apache.shiro.web.servlet.ShiroHttpServletRequest@471863f1', '2020-09-03 16:33:22', 0); INSERT INTO `operation_record_log` VALUES ('1301439710413688833', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@768ee016,org.apache.shiro.web.servlet.ShiroHttpServletRequest@4d71d5b2', '2020-09-03 16:39:41', 0); INSERT INTO `operation_record_log` VALUES ('1301440193417154561', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@3f35f435,org.apache.shiro.web.servlet.ShiroHttpServletRequest@7d81811c', '2020-09-03 16:41:36', 0); INSERT INTO `operation_record_log` VALUES ('1301440757634928641', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@1c0dc24c,org.apache.shiro.web.servlet.ShiroHttpServletRequest@28e66fef', '2020-09-03 16:43:50', 0); INSERT INTO `operation_record_log` VALUES ('1301441309185904642', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@1990ec72,org.apache.shiro.web.servlet.ShiroHttpServletRequest@1ec58fe8', '2020-09-03 16:46:02', 0); INSERT INTO `operation_record_log` VALUES ('1301442376380420098', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@4f9bb5ea,org.apache.shiro.web.servlet.ShiroHttpServletRequest@73a2ea06', '2020-09-03 16:50:16', 0); INSERT INTO `operation_record_log` VALUES ('1301442547067621377', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@e35056,org.apache.shiro.web.servlet.ShiroHttpServletRequest@589f3a03', '2020-09-03 16:50:57', 0); INSERT INTO `operation_record_log` VALUES ('1301442736755019777', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@21b9e8f9,org.apache.shiro.web.servlet.ShiroHttpServletRequest@43fa539c', '2020-09-03 16:51:42', 0); INSERT INTO `operation_record_log` VALUES ('1301443410465099777', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@36c07216,org.apache.shiro.web.servlet.ShiroHttpServletRequest@27bffe14', '2020-09-03 16:54:23', 0); INSERT INTO `operation_record_log` VALUES ('1301443484221935618', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@515e658f,org.apache.shiro.web.servlet.ShiroHttpServletRequest@12c7e29e', '2020-09-03 16:54:40', 0); INSERT INTO `operation_record_log` VALUES ('1301445180415250434', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@5902d63b,org.apache.shiro.web.servlet.ShiroHttpServletRequest@3b2b4284', '2020-09-03 17:01:25', 0); INSERT INTO `operation_record_log` VALUES ('1301445340247592962', 'Tohsaka Rin', 0, '查询角色列表', 'com.gousade.controller.RoleController.selectRoleList', '1,10,org.apache.shiro.web.servlet.ShiroHttpServletRequest@344e8062', '2020-09-03 17:02:03', 0); INSERT INTO `operation_record_log` VALUES ('1301445717978222593', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@1e00874e,org.apache.shiro.web.servlet.ShiroHttpServletRequest@3c5470af', '2020-09-03 17:03:33', 0); INSERT INTO `operation_record_log` VALUES ('1301445858432880642', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@61ada7f3,org.apache.shiro.web.servlet.ShiroHttpServletRequest@713d1af6', '2020-09-03 17:04:07', 0); INSERT INTO `operation_record_log` VALUES ('1301446171583811585', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@3eafff4b,org.apache.shiro.web.servlet.ShiroHttpServletRequest@45d2c82a', '2020-09-03 17:05:21', 0); INSERT INTO `operation_record_log` VALUES ('1301447352083255298', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@65ae072f,org.apache.shiro.web.servlet.ShiroHttpServletRequest@1a48f521', '2020-09-03 17:10:03', 0); INSERT INTO `operation_record_log` VALUES ('1301447809174310913', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@4a1a8c04,org.apache.shiro.web.servlet.ShiroHttpServletRequest@989203e', '2020-09-03 17:11:52', 0); INSERT INTO `operation_record_log` VALUES ('1301449152379195394', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@305c2311,org.apache.shiro.web.servlet.ShiroHttpServletRequest@4c61beb2', '2020-09-03 17:17:12', 0); INSERT INTO `operation_record_log` VALUES ('1301449349255630849', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@4dcdd302,org.apache.shiro.web.servlet.ShiroHttpServletRequest@7e8817fe', '2020-09-03 17:17:59', 0); INSERT INTO `operation_record_log` VALUES ('1301449421305384961', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@5de5ad05,org.apache.shiro.web.servlet.ShiroHttpServletRequest@5fc04d5e', '2020-09-03 17:18:16', 0); INSERT INTO `operation_record_log` VALUES ('1301449472618500098', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@dbc4e1e,org.apache.shiro.web.servlet.ShiroHttpServletRequest@32efea74', '2020-09-03 17:18:28', 0); INSERT INTO `operation_record_log` VALUES ('1301449529019305986', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@2a1a677f,org.apache.shiro.web.servlet.ShiroHttpServletRequest@3637d28f', '2020-09-03 17:18:42', 0); INSERT INTO `operation_record_log` VALUES ('1301449582924500994', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@71b4e5f7,org.apache.shiro.web.servlet.ShiroHttpServletRequest@4ea18cbe', '2020-09-03 17:18:54', 0); INSERT INTO `operation_record_log` VALUES ('1301482622969565185', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@3f5685c3,org.apache.shiro.web.servlet.ShiroHttpServletRequest@4e07bd64', '2020-09-03 19:30:12', 0); INSERT INTO `operation_record_log` VALUES ('1301482701545656321', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@6ffa6702,org.apache.shiro.web.servlet.ShiroHttpServletRequest@4d6f5268', '2020-09-03 19:30:31', 0); INSERT INTO `operation_record_log` VALUES ('1301482982438195202', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@1c0c11c4,org.apache.shiro.web.servlet.ShiroHttpServletRequest@1987bc53', '2020-09-03 19:31:38', 0); INSERT INTO `operation_record_log` VALUES ('1301483555480784898', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@57efe54c,org.apache.shiro.web.servlet.ShiroHttpServletRequest@39b6ef8a', '2020-09-03 19:33:54', 0); INSERT INTO `operation_record_log` VALUES ('1301483659302391809', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@2cc4a023,org.apache.shiro.web.servlet.ShiroHttpServletRequest@62e43c82', '2020-09-03 19:34:19', 0); INSERT INTO `operation_record_log` VALUES ('1301483865783783425', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@d2aeac0,org.apache.shiro.web.servlet.ShiroHttpServletRequest@65aef581', '2020-09-03 19:35:08', 0); INSERT INTO `operation_record_log` VALUES ('1301484084428656641', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@1197c230,org.apache.shiro.web.servlet.ShiroHttpServletRequest@dfdfce1', '2020-09-03 19:36:00', 0); INSERT INTO `operation_record_log` VALUES ('1301487725873057794', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@117856b,org.apache.shiro.web.servlet.ShiroHttpServletRequest@7fc52538', '2020-09-03 19:50:28', 0); INSERT INTO `operation_record_log` VALUES ('1301487753035370497', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@e4ebda6,org.apache.shiro.web.servlet.ShiroHttpServletRequest@47858b96', '2020-09-03 19:50:35', 0); INSERT INTO `operation_record_log` VALUES ('1301487937765101570', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@56729360,org.apache.shiro.web.servlet.ShiroHttpServletRequest@65044f9d', '2020-09-03 19:51:19', 0); INSERT INTO `operation_record_log` VALUES ('1301488026789203969', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@476882f7,org.apache.shiro.web.servlet.ShiroHttpServletRequest@4b55d8f9', '2020-09-03 19:51:40', 0); INSERT INTO `operation_record_log` VALUES ('1301488349440233474', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@199c07b3,org.apache.shiro.web.servlet.ShiroHttpServletRequest@6ef2a518', '2020-09-03 19:52:57', 0); INSERT INTO `operation_record_log` VALUES ('1301489115315949570', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@4a9b3ce1,org.apache.shiro.web.servlet.ShiroHttpServletRequest@7d0a70c0', '2020-09-03 19:56:00', 0); INSERT INTO `operation_record_log` VALUES ('1301489695803428865', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@3701ef04,org.apache.shiro.web.servlet.ShiroHttpServletRequest@1cf7089d', '2020-09-03 19:58:18', 0); INSERT INTO `operation_record_log` VALUES ('1301489816234479618', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@5cfd8b51,org.apache.shiro.web.servlet.ShiroHttpServletRequest@74561bff', '2020-09-03 19:58:47', 0); INSERT INTO `operation_record_log` VALUES ('1301489915949862914', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@7f8e45b7,org.apache.shiro.web.servlet.ShiroHttpServletRequest@2b0fa186', '2020-09-03 19:59:11', 0); INSERT INTO `operation_record_log` VALUES ('1301489961193820162', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@53753230,org.apache.shiro.web.servlet.ShiroHttpServletRequest@63cd7a39', '2020-09-03 19:59:21', 0); INSERT INTO `operation_record_log` VALUES ('1301490589605298178', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@5a3ac3fd,org.apache.shiro.web.servlet.ShiroHttpServletRequest@4bd42d75', '2020-09-03 20:01:51', 0); INSERT INTO `operation_record_log` VALUES ('1301490620144025601', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@123e7c38,org.apache.shiro.web.servlet.ShiroHttpServletRequest@5fa39283', '2020-09-03 20:01:59', 0); INSERT INTO `operation_record_log` VALUES ('1301501700794744833', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@27de58af,org.apache.shiro.web.servlet.ShiroHttpServletRequest@56c86fd', '2020-09-03 20:46:00', 0); INSERT INTO `operation_record_log` VALUES ('1301708050486980609', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@84f8b7b,org.apache.shiro.web.servlet.ShiroHttpServletRequest@53b3f69f', '2020-09-04 10:25:58', 0); INSERT INTO `operation_record_log` VALUES ('1301709017857060865', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@32cf4276,org.apache.shiro.web.servlet.ShiroHttpServletRequest@3b56cec2', '2020-09-04 10:29:49', 0); INSERT INTO `operation_record_log` VALUES ('1301709044629303297', 'Tohsaka Rin', 1, '上传头像', 'com.gousade.controller.UserController.userAvatorUpload', 'org.springframework.web.multipart.support.StandardMultipartHttpServletRequest$StandardMultipartFile@726d4a5f', '2020-09-04 10:29:55', 0); INSERT INTO `operation_record_log` VALUES ('1301709046202167298', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@1d337771,org.apache.shiro.web.servlet.ShiroHttpServletRequest@6cf5094e', '2020-09-04 10:29:55', 0); INSERT INTO `operation_record_log` VALUES ('1301720905261182977', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@678dc2ac,org.apache.shiro.web.servlet.ShiroHttpServletRequest@54194552', '2020-09-04 11:17:03', 0); INSERT INTO `operation_record_log` VALUES ('1301737193886924802', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@336e16b7,org.apache.shiro.web.servlet.ShiroHttpServletRequest@1ff743e7', '2020-09-04 12:21:46', 0); INSERT INTO `operation_record_log` VALUES ('1301769832853393409', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@1817d87b,org.apache.shiro.web.servlet.ShiroHttpServletRequest@c72990d', '2020-09-04 14:31:28', 0); INSERT INTO `operation_record_log` VALUES ('1301772606135476225', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@7422cdae,org.apache.shiro.web.servlet.ShiroHttpServletRequest@662eff0e', '2020-09-04 14:42:29', 0); INSERT INTO `operation_record_log` VALUES ('1301772628113629186', 'Tohsaka Rin', 0, '查询角色列表', 'com.gousade.controller.RoleController.selectRoleList', '1,10,org.apache.shiro.web.servlet.ShiroHttpServletRequest@4e9d85cb', '2020-09-04 14:42:34', 0); INSERT INTO `operation_record_log` VALUES ('1301800261497004033', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@63705539,org.apache.shiro.web.servlet.ShiroHttpServletRequest@559238c8', '2020-09-04 16:32:23', 0); INSERT INTO `operation_record_log` VALUES ('1302770278946525185', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@78913a1b,org.apache.shiro.web.servlet.ShiroHttpServletRequest@68412e20', '2020-09-07 08:46:53', 0); INSERT INTO `operation_record_log` VALUES ('1302873338007920642', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@5e0746ec,org.apache.shiro.web.servlet.ShiroHttpServletRequest@2c15e5fe', '2020-09-07 15:36:24', 0); INSERT INTO `operation_record_log` VALUES ('1302873430861422593', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@6e66d13c,org.apache.shiro.web.servlet.ShiroHttpServletRequest@406cf614', '2020-09-07 15:36:46', 0); INSERT INTO `operation_record_log` VALUES ('1302873533307297794', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@bf8900a,org.apache.shiro.web.servlet.ShiroHttpServletRequest@4f852973', '2020-09-07 15:37:11', 0); INSERT INTO `operation_record_log` VALUES ('1302873625493905410', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@4ed8ad02,org.apache.shiro.web.servlet.ShiroHttpServletRequest@46d1a05f', '2020-09-07 15:37:33', 0); INSERT INTO `operation_record_log` VALUES ('1302873753546006530', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@2b85fa,org.apache.shiro.web.servlet.ShiroHttpServletRequest@363d9794', '2020-09-07 15:38:03', 0); INSERT INTO `operation_record_log` VALUES ('1302874375141859329', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@77f6c72c,org.apache.shiro.web.servlet.ShiroHttpServletRequest@a36fbce', '2020-09-07 15:40:31', 0); INSERT INTO `operation_record_log` VALUES ('1302874432943562753', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@83016dc,org.apache.shiro.web.servlet.ShiroHttpServletRequest@3461a618', '2020-09-07 15:40:45', 0); INSERT INTO `operation_record_log` VALUES ('1302877807164661761', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@380877a7,org.apache.shiro.web.servlet.ShiroHttpServletRequest@240c3e5d', '2020-09-07 15:54:10', 0); INSERT INTO `operation_record_log` VALUES ('1302877824025763841', 'Tohsaka Rin', 0, '查询角色列表', 'com.gousade.controller.RoleController.selectRoleList', '1,10,org.apache.shiro.web.servlet.ShiroHttpServletRequest@7ab59538', '2020-09-07 15:54:14', 0); INSERT INTO `operation_record_log` VALUES ('1302877919395848194', 'Tohsaka Rin', 0, '查询角色列表', 'com.gousade.controller.RoleController.selectRoleList', '1,10,org.apache.shiro.web.servlet.ShiroHttpServletRequest@1baaa72c', '2020-09-07 15:54:36', 0); INSERT INTO `operation_record_log` VALUES ('1302878059397521409', 'Tohsaka Rin', 0, '查询角色列表', 'com.gousade.controller.RoleController.selectRoleList', '2,10,org.apache.shiro.web.servlet.ShiroHttpServletRequest@486dabaa', '2020-09-07 15:55:10', 0); INSERT INTO `operation_record_log` VALUES ('1302878068985700354', 'Tohsaka Rin', 0, '查询角色列表', 'com.gousade.controller.RoleController.selectRoleList', '1,10,org.apache.shiro.web.servlet.ShiroHttpServletRequest@7aa8057c', '2020-09-07 15:55:12', 0); INSERT INTO `operation_record_log` VALUES ('1302878362717003777', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@59878334,org.apache.shiro.web.servlet.ShiroHttpServletRequest@768a2b1e', '2020-09-07 15:56:22', 0); INSERT INTO `operation_record_log` VALUES ('1302878637301309441', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@f3871fb,org.apache.shiro.web.servlet.ShiroHttpServletRequest@7e9d04a', '2020-09-07 15:57:28', 0); INSERT INTO `operation_record_log` VALUES ('1302878731866087425', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@644523c4,org.apache.shiro.web.servlet.ShiroHttpServletRequest@2dadc396', '2020-09-07 15:57:50', 0); INSERT INTO `operation_record_log` VALUES ('1302880467506831362', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@141d965c,org.apache.shiro.web.servlet.ShiroHttpServletRequest@3513dce1', '2020-09-07 16:04:44', 0); INSERT INTO `operation_record_log` VALUES ('1302881266249113602', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@40cf6a30,org.apache.shiro.web.servlet.ShiroHttpServletRequest@3e9622e0', '2020-09-07 16:07:54', 0); INSERT INTO `operation_record_log` VALUES ('1302887121539440642', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@6adc6a80,org.apache.shiro.web.servlet.ShiroHttpServletRequest@1ef083e0', '2020-09-07 16:31:10', 0); INSERT INTO `operation_record_log` VALUES ('1302888241015955457', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@34735046,org.apache.shiro.web.servlet.ShiroHttpServletRequest@7401eff9', '2020-09-07 16:35:37', 0); INSERT INTO `operation_record_log` VALUES ('1302888680516100097', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@14777f63,org.apache.shiro.web.servlet.ShiroHttpServletRequest@346f4b71', '2020-09-07 16:37:22', 0); INSERT INTO `operation_record_log` VALUES ('1302890199185498114', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@54b0bc32,org.apache.shiro.web.servlet.ShiroHttpServletRequest@4fef92ea', '2020-09-07 16:43:24', 0); INSERT INTO `operation_record_log` VALUES ('1302891746015453185', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@25a50403,org.apache.shiro.web.servlet.ShiroHttpServletRequest@3165f788', '2020-09-07 16:49:33', 0); INSERT INTO `operation_record_log` VALUES ('1302892581457895425', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@1b84c6ba,org.apache.shiro.web.servlet.ShiroHttpServletRequest@6a5fbf66', '2020-09-07 16:52:52', 0); INSERT INTO `operation_record_log` VALUES ('1302892818347991042', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@3e3e9aa1,org.apache.shiro.web.servlet.ShiroHttpServletRequest@7d326f6a', '2020-09-07 16:53:49', 0); INSERT INTO `operation_record_log` VALUES ('1302893041350746113', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@44c197ee,org.apache.shiro.web.servlet.ShiroHttpServletRequest@34b65727', '2020-09-07 16:54:42', 0); INSERT INTO `operation_record_log` VALUES ('1302893452996517890', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@2529a109,org.apache.shiro.web.servlet.ShiroHttpServletRequest@74cfde0d', '2020-09-07 16:56:20', 0); INSERT INTO `operation_record_log` VALUES ('1302894569897730049', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@3facff88,org.apache.shiro.web.servlet.ShiroHttpServletRequest@27f5ae83', '2020-09-07 17:00:46', 0); INSERT INTO `operation_record_log` VALUES ('1302894759371218946', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@59acdce8,org.apache.shiro.web.servlet.ShiroHttpServletRequest@3cee27e4', '2020-09-07 17:01:31', 0); INSERT INTO `operation_record_log` VALUES ('1302896925217529857', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@52272126,org.apache.shiro.web.servlet.ShiroHttpServletRequest@7a7eeb70', '2020-09-07 17:10:08', 0); INSERT INTO `operation_record_log` VALUES ('1302897126242131970', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@494fd40,org.apache.shiro.web.servlet.ShiroHttpServletRequest@429c046d', '2020-09-07 17:10:56', 0); INSERT INTO `operation_record_log` VALUES ('1302898760691212290', 'Tohsaka Rin', 1, '上传头像', 'com.gousade.controller.UserController.userAvatorUpload', 'org.springframework.web.multipart.support.StandardMultipartHttpServletRequest$StandardMultipartFile@86f596f', '2020-09-07 17:17:25', 0); INSERT INTO `operation_record_log` VALUES ('1302898762079526913', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@34a006cd,org.apache.shiro.web.servlet.ShiroHttpServletRequest@77e8fe4', '2020-09-07 17:17:26', 0); INSERT INTO `operation_record_log` VALUES ('1302898793729744898', 'Tohsaka Rin', 1, '上传头像', 'com.gousade.controller.UserController.userAvatorUpload', 'org.springframework.web.multipart.support.StandardMultipartHttpServletRequest$StandardMultipartFile@6a63a929', '2020-09-07 17:17:33', 0); INSERT INTO `operation_record_log` VALUES ('1302898794811875330', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@64086a99,org.apache.shiro.web.servlet.ShiroHttpServletRequest@4e522338', '2020-09-07 17:17:34', 0); INSERT INTO `operation_record_log` VALUES ('1303213729009860609', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@607f5f27,org.apache.shiro.web.servlet.ShiroHttpServletRequest@7e26a975', '2020-09-08 14:09:00', 0); INSERT INTO `operation_record_log` VALUES ('1303215559169261569', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@100be4e4,org.apache.shiro.web.servlet.ShiroHttpServletRequest@7f0c7f53', '2020-09-08 14:16:16', 0); INSERT INTO `operation_record_log` VALUES ('1303232364168331266', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@4345edbe,org.apache.shiro.web.servlet.ShiroHttpServletRequest@78f130a7', '2020-09-08 15:23:03', 0); INSERT INTO `operation_record_log` VALUES ('1303233184314146817', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@61e9c092,org.apache.shiro.web.servlet.ShiroHttpServletRequest@1018c055', '2020-09-08 15:26:18', 0); INSERT INTO `operation_record_log` VALUES ('1303233208645304322', 'Tohsaka Rin', 0, '查询角色列表', 'com.gousade.controller.RoleController.selectRoleList', '1,10,org.apache.shiro.web.servlet.ShiroHttpServletRequest@7612a278', '2020-09-08 15:26:24', 0); INSERT INTO `operation_record_log` VALUES ('1303233350114983938', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@4bf7da6d,org.apache.shiro.web.servlet.ShiroHttpServletRequest@2d2b82c4', '2020-09-08 15:26:58', 0); INSERT INTO `operation_record_log` VALUES ('1303233943755800578', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@532d66e,org.apache.shiro.web.servlet.ShiroHttpServletRequest@5f6e0397', '2020-09-08 15:29:19', 0); INSERT INTO `operation_record_log` VALUES ('1303234099741966338', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@69c4980e,org.apache.shiro.web.servlet.ShiroHttpServletRequest@55a6087b', '2020-09-08 15:29:56', 0); INSERT INTO `operation_record_log` VALUES ('1303235031326244866', 'Tohsaka Rin', 0, '查询角色列表', 'com.gousade.controller.RoleController.selectRoleList', '1,10,org.apache.shiro.web.servlet.ShiroHttpServletRequest@27e716c6', '2020-09-08 15:33:39', 0); INSERT INTO `operation_record_log` VALUES ('1303604863284477954', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@64b4c135,org.apache.shiro.web.servlet.ShiroHttpServletRequest@1ddd8edd', '2020-09-09 16:03:13', 0); INSERT INTO `operation_record_log` VALUES ('1303613029246238722', 'Tohsaka Rin', 9999, '短信验证码发送', 'com.gousade.redis.RedisSmsCodeUtil.sendSmsCode', '151********', '2020-09-09 16:35:40', 0); INSERT INTO `operation_record_log` VALUES ('1303615487506841602', 'Tohsaka Rin', 9999, '短信验证码发送', 'com.gousade.redis.RedisSmsCodeUtil.sendSmsCode', '151********', '2020-09-09 16:45:26', 0); INSERT INTO `operation_record_log` VALUES ('1303897638727012353', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@4db43372,org.apache.shiro.web.servlet.ShiroHttpServletRequest@352054ae', '2020-09-10 11:26:36', 0); INSERT INTO `operation_record_log` VALUES ('1303965767683493890', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@77adcfa8,org.apache.shiro.web.servlet.ShiroHttpServletRequest@323910be', '2020-09-10 15:57:20', 0); INSERT INTO `operation_record_log` VALUES ('1303965768560103426', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@ddd48d2,org.apache.shiro.web.servlet.ShiroHttpServletRequest@5703100d', '2020-09-10 15:57:20', 0); INSERT INTO `operation_record_log` VALUES ('1303966095443185666', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@723e50fc,org.apache.shiro.web.servlet.ShiroHttpServletRequest@4814bb3a', '2020-09-10 15:58:38', 0); INSERT INTO `operation_record_log` VALUES ('1303967446092959746', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@47190d5e,org.apache.shiro.web.servlet.ShiroHttpServletRequest@5a2ae953', '2020-09-10 16:04:00', 0); INSERT INTO `operation_record_log` VALUES ('1303967551193829378', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@75f36e0f,org.apache.shiro.web.servlet.ShiroHttpServletRequest@7795775a', '2020-09-10 16:04:25', 0); INSERT INTO `operation_record_log` VALUES ('1303967622320836610', 'Tohsaka Rin', 1, '上传头像', 'com.gousade.controller.UserController.userAvatorUpload', 'org.springframework.web.multipart.support.StandardMultipartHttpServletRequest$StandardMultipartFile@4fe47e19', '2020-09-10 16:04:42', 0); INSERT INTO `operation_record_log` VALUES ('1303967623809814530', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@21843e1e,org.apache.shiro.web.servlet.ShiroHttpServletRequest@592359c7', '2020-09-10 16:04:42', 0); INSERT INTO `operation_record_log` VALUES ('1303968086433157121', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@25f8f197,org.apache.shiro.web.servlet.ShiroHttpServletRequest@964a6e5', '2020-09-10 16:06:33', 0); INSERT INTO `operation_record_log` VALUES ('1303968207610793985', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@353d1b5f,org.apache.shiro.web.servlet.ShiroHttpServletRequest@1333e894', '2020-09-10 16:07:01', 0); INSERT INTO `operation_record_log` VALUES ('1303968882327506945', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@58c0abd0,org.apache.shiro.web.servlet.ShiroHttpServletRequest@3bd19471', '2020-09-10 16:09:42', 0); INSERT INTO `operation_record_log` VALUES ('1303971010362167298', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@35091d58,org.apache.shiro.web.servlet.ShiroHttpServletRequest@7b4cdce9', '2020-09-10 16:18:10', 0); INSERT INTO `operation_record_log` VALUES ('1303971218030546945', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@330eff97,org.apache.shiro.web.servlet.ShiroHttpServletRequest@58f128d', '2020-09-10 16:18:59', 0); INSERT INTO `operation_record_log` VALUES ('1303971492874899458', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@2f6f90de,org.apache.shiro.web.servlet.ShiroHttpServletRequest@69a388b2', '2020-09-10 16:20:05', 0); INSERT INTO `operation_record_log` VALUES ('1303971754528165889', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@2fac21bc,org.apache.shiro.web.servlet.ShiroHttpServletRequest@5b6cbb7a', '2020-09-10 16:21:07', 0); INSERT INTO `operation_record_log` VALUES ('1303972070476697601', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@7eac5743,org.apache.shiro.web.servlet.ShiroHttpServletRequest@4361ae01', '2020-09-10 16:22:22', 0); INSERT INTO `operation_record_log` VALUES ('1303972457002782722', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@17a5134,org.apache.shiro.web.servlet.ShiroHttpServletRequest@9738730', '2020-09-10 16:23:55', 0); INSERT INTO `operation_record_log` VALUES ('1303972511805558785', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@6a8f333e,org.apache.shiro.web.servlet.ShiroHttpServletRequest@2b5294d', '2020-09-10 16:24:08', 0); INSERT INTO `operation_record_log` VALUES ('1303973064249921537', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@1a71119a,org.apache.shiro.web.servlet.ShiroHttpServletRequest@5f2548f6', '2020-09-10 16:26:19', 0); INSERT INTO `operation_record_log` VALUES ('1303973158403657729', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@1306d2bf,org.apache.shiro.web.servlet.ShiroHttpServletRequest@45efad79', '2020-09-10 16:26:42', 0); INSERT INTO `operation_record_log` VALUES ('1303973492421251073', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@1a20af22,org.apache.shiro.web.servlet.ShiroHttpServletRequest@39b9c83a', '2020-09-10 16:28:01', 0); INSERT INTO `operation_record_log` VALUES ('1304311878784905217', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@66752a4,org.apache.shiro.web.servlet.ShiroHttpServletRequest@2864d9f0', '2020-09-11 14:52:39', 0); INSERT INTO `operation_record_log` VALUES ('1304311934736920578', 'Tohsaka Rin', 1, '上传头像', 'com.gousade.controller.UserController.userAvatorUpload', 'org.springframework.web.multipart.support.StandardMultipartHttpServletRequest$StandardMultipartFile@1a6cf854', '2020-09-11 14:52:52', 0); INSERT INTO `operation_record_log` VALUES ('1304311936192344065', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@740dc7e7,org.apache.shiro.web.servlet.ShiroHttpServletRequest@50346a7c', '2020-09-11 14:52:53', 0); INSERT INTO `operation_record_log` VALUES ('1304344760886648833', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@6695b5fc,org.apache.shiro.web.servlet.ShiroHttpServletRequest@52c3f1c7', '2020-09-11 17:03:19', 0); INSERT INTO `operation_record_log` VALUES ('1304419062760140801', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@710f41a,org.apache.shiro.web.servlet.ShiroHttpServletRequest@677fa3d6', '2020-09-11 21:58:34', 0); INSERT INTO `operation_record_log` VALUES ('1304730811319296002', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@2c919112,org.apache.shiro.web.servlet.ShiroHttpServletRequest@73770f42', '2020-09-12 18:37:20', 0); INSERT INTO `operation_record_log` VALUES ('1304733323883450369', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@4f8db936,org.apache.shiro.web.servlet.ShiroHttpServletRequest@1610a865', '2020-09-12 18:47:19', 0); INSERT INTO `operation_record_log` VALUES ('1304733535205064705', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@5750aaa,org.apache.shiro.web.servlet.ShiroHttpServletRequest@4d5405f6', '2020-09-12 18:48:10', 0); INSERT INTO `operation_record_log` VALUES ('1304736140312457217', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@150d1996,org.apache.shiro.web.servlet.ShiroHttpServletRequest@3f8f1623', '2020-09-12 18:58:31', 0); INSERT INTO `operation_record_log` VALUES ('1304741751007748097', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@61231209,org.apache.shiro.web.servlet.ShiroHttpServletRequest@4e386cb', '2020-09-12 19:20:49', 0); INSERT INTO `operation_record_log` VALUES ('1304741924953923585', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@4140212c,org.apache.shiro.web.servlet.ShiroHttpServletRequest@3eac52d3', '2020-09-12 19:21:30', 0); INSERT INTO `operation_record_log` VALUES ('1304990090135711745', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@55532e63,org.apache.shiro.web.servlet.ShiroHttpServletRequest@6bf2b4cf', '2020-09-13 11:47:37', 0); INSERT INTO `operation_record_log` VALUES ('1305000260005810177', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@5b1f0169,org.apache.shiro.web.servlet.ShiroHttpServletRequest@55707c10', '2020-09-13 12:28:02', 0); INSERT INTO `operation_record_log` VALUES ('1305003538085163010', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@631ee452,org.apache.shiro.web.servlet.ShiroHttpServletRequest@24b42cc0', '2020-09-13 12:41:03', 0); INSERT INTO `operation_record_log` VALUES ('1305009682807640066', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@19766e54,org.apache.shiro.web.servlet.ShiroHttpServletRequest@7e8ac70c', '2020-09-13 13:05:28', 0); INSERT INTO `operation_record_log` VALUES ('1305010881795465217', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@6aa81b91,org.apache.shiro.web.servlet.ShiroHttpServletRequest@6c3d03d8', '2020-09-13 13:10:14', 0); INSERT INTO `operation_record_log` VALUES ('1305013922628173825', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@5546201d,org.apache.shiro.web.servlet.ShiroHttpServletRequest@73df1cce', '2020-09-13 13:22:19', 0); INSERT INTO `operation_record_log` VALUES ('1305013998972895233', 'Tohsaka Rin', 0, '查询角色列表', 'com.gousade.controller.RoleController.selectRoleList', '1,10,org.apache.shiro.web.servlet.ShiroHttpServletRequest@47218a5', '2020-09-13 13:22:38', 0); INSERT INTO `operation_record_log` VALUES ('1305015225265709058', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@48d81195,org.apache.shiro.web.servlet.ShiroHttpServletRequest@48da733a', '2020-09-13 13:27:30', 0); INSERT INTO `operation_record_log` VALUES ('1305017395939749889', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@300c24a2,org.apache.shiro.web.servlet.ShiroHttpServletRequest@7899512', '2020-09-13 13:36:07', 0); INSERT INTO `operation_record_log` VALUES ('1305019452453146625', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@bd9ff76,org.apache.shiro.web.servlet.ShiroHttpServletRequest@4a42c4e8', '2020-09-13 13:44:18', 0); INSERT INTO `operation_record_log` VALUES ('1305316749394755585', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@4dc3e9ff,org.apache.shiro.web.servlet.ShiroHttpServletRequest@5603346', '2020-09-14 09:25:39', 0); INSERT INTO `operation_record_log` VALUES ('1305319641166036993', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@47056699,org.apache.shiro.web.servlet.ShiroHttpServletRequest@2f0193d0', '2020-09-14 09:37:08', 0); INSERT INTO `operation_record_log` VALUES ('1305322666324652033', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@720a0a39,org.apache.shiro.web.servlet.ShiroHttpServletRequest@647c118e', '2020-09-14 09:49:10', 0); INSERT INTO `operation_record_log` VALUES ('1305328689420693505', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@29917c0b,org.apache.shiro.web.servlet.ShiroHttpServletRequest@200d5d0a', '2020-09-14 10:13:06', 0); INSERT INTO `operation_record_log` VALUES ('1305349729161035777', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@33dc3c0d,org.apache.shiro.web.servlet.ShiroHttpServletRequest@e3cb360', '2020-09-14 11:36:42', 0); INSERT INTO `operation_record_log` VALUES ('1305410433788792833', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@77df12d3,org.apache.shiro.web.servlet.ShiroHttpServletRequest@3bca7b9', '2020-09-14 15:37:55', 0); INSERT INTO `operation_record_log` VALUES ('1305410924807573505', 'Tohsaka Rin', 0, '查询角色列表', 'com.gousade.controller.RoleController.selectRoleList', '1,10,org.apache.shiro.web.servlet.ShiroHttpServletRequest@77385697', '2020-09-14 15:39:52', 0); INSERT INTO `operation_record_log` VALUES ('1305476737671393281', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@36b0147a,org.apache.shiro.web.servlet.ShiroHttpServletRequest@43049f25', '2020-09-14 20:01:23', 0); INSERT INTO `operation_record_log` VALUES ('1305477242829144066', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@5b5eb19a,org.apache.shiro.web.servlet.ShiroHttpServletRequest@6a7f9ea6', '2020-09-14 20:03:23', 0); INSERT INTO `operation_record_log` VALUES ('1305477269358116866', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@5e19335,org.apache.shiro.web.servlet.ShiroHttpServletRequest@1a745642', '2020-09-14 20:03:30', 0); INSERT INTO `operation_record_log` VALUES ('1305477287511064578', 'Tohsaka Rin', 9999, '短信验证码发送', 'com.gousade.redis.RedisSmsCodeUtil.sendSmsCode', '151********', '2020-09-14 20:03:34', 0); INSERT INTO `operation_record_log` VALUES ('1305478045845434369', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@33222ba6,org.apache.shiro.web.servlet.ShiroHttpServletRequest@39d23577', '2020-09-14 20:06:35', 0); INSERT INTO `operation_record_log` VALUES ('1305478057140695042', 'Tohsaka Rin', 9999, '短信验证码发送', 'com.gousade.redis.RedisSmsCodeUtil.sendSmsCode', '151********', '2020-09-14 20:06:38', 0); INSERT INTO `operation_record_log` VALUES ('1305478302331318274', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@7100dd52,org.apache.shiro.web.servlet.ShiroHttpServletRequest@38ab4ec3', '2020-09-14 20:07:36', 0); INSERT INTO `operation_record_log` VALUES ('1305478314033426434', 'Tohsaka Rin', 9999, '短信验证码发送', 'com.gousade.redis.RedisSmsCodeUtil.sendSmsCode', '151********', '2020-09-14 20:07:39', 0); INSERT INTO `operation_record_log` VALUES ('1305478486847139841', 'Tohsaka Rin', 9999, '短信验证码发送', 'com.gousade.redis.RedisSmsCodeUtil.sendSmsCode', '151********', '2020-09-14 20:08:20', 0); INSERT INTO `operation_record_log` VALUES ('1305478578727563265', 'Tohsaka Rin', 9999, '短信验证码发送', 'com.gousade.redis.RedisSmsCodeUtil.sendSmsCode', '151********', '2020-09-14 20:08:42', 0); INSERT INTO `operation_record_log` VALUES ('1305478816934768642', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@597d75a5,org.apache.shiro.web.servlet.ShiroHttpServletRequest@64336860', '2020-09-14 20:09:39', 0); INSERT INTO `operation_record_log` VALUES ('1305478828532019201', 'Tohsaka Rin', 9999, '短信验证码发送', 'com.gousade.redis.RedisSmsCodeUtil.sendSmsCode', '151********', '2020-09-14 20:09:42', 0); INSERT INTO `operation_record_log` VALUES ('1305481944438419458', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@625f3cdf,org.apache.shiro.web.servlet.ShiroHttpServletRequest@4facf084', '2020-09-14 20:22:04', 0); INSERT INTO `operation_record_log` VALUES ('1305481975887310850', 'Tohsaka Rin', 9999, '短信验证码发送', 'com.gousade.redis.RedisSmsCodeUtil.sendSmsCode', '151********', '2020-09-14 20:22:12', 0); INSERT INTO `operation_record_log` VALUES ('1305482287427629057', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@6e89365,org.apache.shiro.web.servlet.ShiroHttpServletRequest@2f7d8ada', '2020-09-14 20:23:26', 0); INSERT INTO `operation_record_log` VALUES ('1305482307241521153', 'Tohsaka Rin', 9999, '短信验证码发送', 'com.gousade.redis.RedisSmsCodeUtil.sendSmsCode', '151********', '2020-09-14 20:23:31', 0); INSERT INTO `operation_record_log` VALUES ('1305753702804606977', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@5db73165,org.apache.shiro.web.servlet.ShiroHttpServletRequest@39df9dac', '2020-09-15 14:21:57', 0); INSERT INTO `operation_record_log` VALUES ('1306044793025675266', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@139fa2df,org.apache.shiro.web.servlet.ShiroHttpServletRequest@abb8272', '2020-09-16 09:38:38', 0); INSERT INTO `operation_record_log` VALUES ('1306120356344066049', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@391026e2,org.apache.shiro.web.servlet.ShiroHttpServletRequest@fdae470', '2020-09-16 14:38:54', 0); INSERT INTO `operation_record_log` VALUES ('1306846512177442818', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@66f6d8b0,org.apache.shiro.web.servlet.ShiroHttpServletRequest@6f3d0905', '2020-09-18 14:44:23', 0); INSERT INTO `operation_record_log` VALUES ('1306868616948064257', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@27b3f3d3,org.apache.shiro.web.servlet.ShiroHttpServletRequest@668c77da', '2020-09-18 16:12:13', 0); INSERT INTO `operation_record_log` VALUES ('1306869108860231681', 'Tohsaka Rin', 0, '查询角色列表', 'com.gousade.controller.RoleController.selectRoleList', '1,10,org.apache.shiro.web.servlet.ShiroHttpServletRequest@3263b0c7', '2020-09-18 16:14:10', 0); INSERT INTO `operation_record_log` VALUES ('1307938056875683841', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@63ccb95f,org.apache.shiro.web.servlet.ShiroHttpServletRequest@bff95ae', '2020-09-21 15:01:47', 0); INSERT INTO `operation_record_log` VALUES ('1307938158117793793', 'Tohsaka Rin', 0, '查询角色列表', 'com.gousade.controller.RoleController.selectRoleList', '1,10,org.apache.shiro.web.servlet.ShiroHttpServletRequest@5f7fe29c', '2020-09-21 15:02:11', 0); INSERT INTO `operation_record_log` VALUES ('1307940968062398466', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@31c187a2,org.apache.shiro.web.servlet.ShiroHttpServletRequest@19848c3a', '2020-09-21 15:13:21', 0); INSERT INTO `operation_record_log` VALUES ('1307961700171599874', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@4de1a428,org.apache.shiro.web.servlet.ShiroHttpServletRequest@71238726', '2020-09-21 16:35:44', 0); INSERT INTO `operation_record_log` VALUES ('1307961720505585666', 'Tohsaka Rin', 0, '查询角色列表', 'com.gousade.controller.RoleController.selectRoleList', '1,10,org.apache.shiro.web.servlet.ShiroHttpServletRequest@257509ae', '2020-09-21 16:35:49', 0); INSERT INTO `operation_record_log` VALUES ('1307962961272983553', 'Tohsaka Rin', 0, '查询角色列表', 'com.gousade.controller.RoleController.selectRoleList', '1,10,org.apache.shiro.web.servlet.ShiroHttpServletRequest@6b0017b', '2020-09-21 16:40:45', 0); INSERT INTO `operation_record_log` VALUES ('1307971947170852865', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@2a7fac82,org.apache.shiro.web.servlet.ShiroHttpServletRequest@30126d1f', '2020-09-21 17:16:27', 0); INSERT INTO `operation_record_log` VALUES ('1307972293628751874', 'Tohsaka Rin', 0, '查询角色列表', 'com.gousade.controller.RoleController.selectRoleList', '1,10,org.apache.shiro.web.servlet.ShiroHttpServletRequest@13cbd7b5', '2020-09-21 17:17:50', 0); INSERT INTO `operation_record_log` VALUES ('1307972429566177281', 'Tohsaka Rin', 0, '查询角色列表', 'com.gousade.controller.RoleController.selectRoleList', '1,10,org.apache.shiro.web.servlet.ShiroHttpServletRequest@df741da', '2020-09-21 17:18:22', 0); INSERT INTO `operation_record_log` VALUES ('1307991578388840450', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@66e5db99,org.apache.shiro.web.servlet.ShiroHttpServletRequest@4f4ef4d1', '2020-09-21 18:34:28', 0); INSERT INTO `operation_record_log` VALUES ('1307991837552693250', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@2af1e0a8,org.apache.shiro.web.servlet.ShiroHttpServletRequest@27466d8f', '2020-09-21 18:35:30', 0); INSERT INTO `operation_record_log` VALUES ('1307995763362512898', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@70ce7b27,org.apache.shiro.web.servlet.ShiroHttpServletRequest@37604b78', '2020-09-21 18:51:06', 0); INSERT INTO `operation_record_log` VALUES ('1307996551396737025', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@31b7841b,org.apache.shiro.web.servlet.ShiroHttpServletRequest@28225ab9', '2020-09-21 18:54:13', 0); INSERT INTO `operation_record_log` VALUES ('1307996781143932930', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@44cae325,org.apache.shiro.web.servlet.ShiroHttpServletRequest@266238d2', '2020-09-21 18:55:08', 0); INSERT INTO `operation_record_log` VALUES ('1307997255221919745', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@38757b7e,org.apache.shiro.web.servlet.ShiroHttpServletRequest@37c316bd', '2020-09-21 18:57:01', 0); INSERT INTO `operation_record_log` VALUES ('1307997412470571010', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@7cd6687f,org.apache.shiro.web.servlet.ShiroHttpServletRequest@5808bb29', '2020-09-21 18:57:39', 0); INSERT INTO `operation_record_log` VALUES ('1307997676560728066', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@708f4910,org.apache.shiro.web.servlet.ShiroHttpServletRequest@2cc10376', '2020-09-21 18:58:42', 0); INSERT INTO `operation_record_log` VALUES ('1307997767803617281', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@21511004,org.apache.shiro.web.servlet.ShiroHttpServletRequest@14ba0a8b', '2020-09-21 18:59:03', 0); INSERT INTO `operation_record_log` VALUES ('1307999204497539074', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@52003e35,org.apache.shiro.web.servlet.ShiroHttpServletRequest@6ddbf26d', '2020-09-21 19:04:46', 0); INSERT INTO `operation_record_log` VALUES ('1308002635373096962', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@375d7b0f,org.apache.shiro.web.servlet.ShiroHttpServletRequest@187dcc96', '2020-09-21 19:18:24', 0); INSERT INTO `operation_record_log` VALUES ('1308003349293969410', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@fbd8b1e,org.apache.shiro.web.servlet.ShiroHttpServletRequest@1a4aa363', '2020-09-21 19:21:14', 0); INSERT INTO `operation_record_log` VALUES ('1308003924685369346', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@61a88d6a,org.apache.shiro.web.servlet.ShiroHttpServletRequest@2e32989e', '2020-09-21 19:23:31', 0); INSERT INTO `operation_record_log` VALUES ('1308003948710342658', 'Tohsaka Rin', 0, '查询角色列表', 'com.gousade.controller.RoleController.selectRoleList', '1,10,org.apache.shiro.web.servlet.ShiroHttpServletRequest@7b5bd737', '2020-09-21 19:23:37', 0); INSERT INTO `operation_record_log` VALUES ('1308004944291311618', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@3318ccba,org.apache.shiro.web.servlet.ShiroHttpServletRequest@342d2867', '2020-09-21 19:27:34', 0); INSERT INTO `operation_record_log` VALUES ('1308205705262190593', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@6fa3359e,org.apache.shiro.web.servlet.ShiroHttpServletRequest@68e7ac74', '2020-09-22 08:45:20', 0); INSERT INTO `operation_record_log` VALUES ('1308207399219978242', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@710146aa,org.apache.shiro.web.servlet.ShiroHttpServletRequest@38d6fe3', '2020-09-22 08:52:03', 0); INSERT INTO `operation_record_log` VALUES ('1308310099274207233', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@1f017bba,org.apache.shiro.web.servlet.ShiroHttpServletRequest@74cc1ddc', '2020-09-22 15:40:09', 0); INSERT INTO `operation_record_log` VALUES ('1308310186918383618', 'Tohsaka Rin', 0, '查询角色列表', 'com.gousade.controller.RoleController.selectRoleList', '1,10,org.apache.shiro.web.servlet.ShiroHttpServletRequest@1b07c730', '2020-09-22 15:40:30', 0); INSERT INTO `operation_record_log` VALUES ('1308310248448823297', 'Tohsaka Rin', 0, '查询角色列表', 'com.gousade.controller.RoleController.selectRoleList', '1,10,org.apache.shiro.web.servlet.ShiroHttpServletRequest@6091ad92', '2020-09-22 15:40:45', 0); INSERT INTO `operation_record_log` VALUES ('1308311698163863553', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@529ecc50,org.apache.shiro.web.servlet.ShiroHttpServletRequest@3e6648cb', '2020-09-22 15:46:30', 0); INSERT INTO `operation_record_log` VALUES ('1308311723551985666', 'Tohsaka Rin', 0, '查询角色列表', 'com.gousade.controller.RoleController.selectRoleList', '1,10,org.apache.shiro.web.servlet.ShiroHttpServletRequest@2088d402', '2020-09-22 15:46:36', 0); INSERT INTO `operation_record_log` VALUES ('1308312283931971585', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@43984f7b,org.apache.shiro.web.servlet.ShiroHttpServletRequest@45a79bcd', '2020-09-22 15:48:50', 0); INSERT INTO `operation_record_log` VALUES ('1308318589371781122', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@2d65251c,org.apache.shiro.web.servlet.ShiroHttpServletRequest@3a526611', '2020-09-22 16:13:53', 0); INSERT INTO `operation_record_log` VALUES ('1308318889058996225', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@2176554d,org.apache.shiro.web.servlet.ShiroHttpServletRequest@42695e33', '2020-09-22 16:15:05', 0); INSERT INTO `operation_record_log` VALUES ('1308319115614326785', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@60eba211,org.apache.shiro.web.servlet.ShiroHttpServletRequest@1045b216', '2020-09-22 16:15:59', 0); INSERT INTO `operation_record_log` VALUES ('1308321016833609730', 'Tohsaka Rin', 9999, '短信验证码发送', 'com.gousade.redis.RedisSmsCodeUtil.sendSmsCode', '151********', '2020-09-22 16:23:32', 0); INSERT INTO `operation_record_log` VALUES ('1308321148601864193', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@7604a210,org.apache.shiro.web.servlet.ShiroHttpServletRequest@4119afc', '2020-09-22 16:24:03', 0); INSERT INTO `operation_record_log` VALUES ('1308321255372066818', 'rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@45693877,org.apache.shiro.web.servlet.ShiroHttpServletRequest@7bef3c77', '2020-09-22 16:24:29', 0); INSERT INTO `operation_record_log` VALUES ('1308321448008060930', 'rin', 9999, '短信验证码发送', 'com.gousade.redis.RedisSmsCodeUtil.sendSmsCode', '1', '2020-09-22 16:25:15', 0); INSERT INTO `operation_record_log` VALUES ('1308321757845491713', 'rin', 9999, '短信验证码发送', 'com.gousade.redis.RedisSmsCodeUtil.sendSmsCode', '1', '2020-09-22 16:26:29', 0); INSERT INTO `operation_record_log` VALUES ('1308322041808261121', 'rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@c71f0f6,org.apache.shiro.web.servlet.ShiroHttpServletRequest@1b6c39b8', '2020-09-22 16:27:36', 0); INSERT INTO `operation_record_log` VALUES ('1308322518155366401', 'rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@3434b302,org.apache.shiro.web.servlet.ShiroHttpServletRequest@291b4213', '2020-09-22 16:29:30', 0); INSERT INTO `operation_record_log` VALUES ('1308322628239069185', 'rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@7252c792,org.apache.shiro.web.servlet.ShiroHttpServletRequest@71fe8c40', '2020-09-22 16:29:56', 0); INSERT INTO `operation_record_log` VALUES ('1308322693766680578', 'rin', 9999, '短信验证码发送', 'com.gousade.redis.RedisSmsCodeUtil.sendSmsCode', '151********', '2020-09-22 16:30:12', 0); INSERT INTO `operation_record_log` VALUES ('1308323790187106305', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@431f053f,org.apache.shiro.web.servlet.ShiroHttpServletRequest@96614c7', '2020-09-22 16:34:33', 0); INSERT INTO `operation_record_log` VALUES ('1308324392036175874', 'Tohsaka Rin', 0, '查询角色列表', 'com.gousade.controller.RoleController.selectRoleList', '1,10,org.apache.shiro.web.servlet.ShiroHttpServletRequest@7bd065d4', '2020-09-22 16:36:57', 0); INSERT INTO `operation_record_log` VALUES ('1308576146287976449', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@4b97ce99,org.apache.shiro.web.servlet.ShiroHttpServletRequest@2453b193', '2020-09-23 09:17:20', 0); INSERT INTO `operation_record_log` VALUES ('1308576186112892929', 'Tohsaka Rin', 9999, '短信验证码发送', 'com.gousade.redis.RedisSmsCodeUtil.sendSmsCode', '151********', '2020-09-23 09:17:29', 0); INSERT INTO `operation_record_log` VALUES ('1308578391872208898', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@18f84463,org.apache.shiro.web.servlet.ShiroHttpServletRequest@79af09b8', '2020-09-23 09:26:15', 0); INSERT INTO `operation_record_log` VALUES ('1308578735159214081', 'Tohsaka Rin', 9999, '短信验证码发送', 'com.gousade.redis.RedisSmsCodeUtil.sendSmsCode', '151********', '2020-09-23 09:27:37', 0); INSERT INTO `operation_record_log` VALUES ('1308580476470640641', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@35bfd7f9,org.apache.shiro.web.servlet.ShiroHttpServletRequest@544ba339', '2020-09-23 09:34:32', 0); INSERT INTO `operation_record_log` VALUES ('1308580701465690113', 'Tohsaka Rin', 9999, '短信验证码发送', 'com.gousade.redis.RedisSmsCodeUtil.sendSmsCode', '151********', '2020-09-23 09:35:26', 0); INSERT INTO `operation_record_log` VALUES ('1308581242333777922', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@483b74be,org.apache.shiro.web.servlet.ShiroHttpServletRequest@3697ded4', '2020-09-23 09:37:35', 0); INSERT INTO `operation_record_log` VALUES ('1308581329202008065', 'Tohsaka Rin', 9999, '短信验证码发送', 'com.gousade.redis.RedisSmsCodeUtil.sendSmsCode', '151********', '2020-09-23 09:37:55', 0); INSERT INTO `operation_record_log` VALUES ('1308581481916616706', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@717c817a,org.apache.shiro.web.servlet.ShiroHttpServletRequest@691f5eaf', '2020-09-23 09:38:32', 0); INSERT INTO `operation_record_log` VALUES ('1308581530759286785', 'Tohsaka Rin', 9999, '短信验证码发送', 'com.gousade.redis.RedisSmsCodeUtil.sendSmsCode', '151********', '2020-09-23 09:38:43', 0); INSERT INTO `operation_record_log` VALUES ('1308581645548998657', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@650cec9e,org.apache.shiro.web.servlet.ShiroHttpServletRequest@7ae5957c', '2020-09-23 09:39:11', 0); INSERT INTO `operation_record_log` VALUES ('1308582024726663169', 'Tohsaka Rin', 9999, '短信验证码发送', 'com.gousade.redis.RedisSmsCodeUtil.sendSmsCode', '151********', '2020-09-23 09:40:41', 0); INSERT INTO `operation_record_log` VALUES ('1308582743710060545', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@4a916142,org.apache.shiro.web.servlet.ShiroHttpServletRequest@664543e6', '2020-09-23 09:43:33', 0); INSERT INTO `operation_record_log` VALUES ('1308582891882237954', 'Tohsaka Rin', 9999, '短信验证码发送', 'com.gousade.redis.RedisSmsCodeUtil.sendSmsCode', '151********', '2020-09-23 09:44:08', 0); INSERT INTO `operation_record_log` VALUES ('1308582969975984130', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@6e01a32c,org.apache.shiro.web.servlet.ShiroHttpServletRequest@7841acab', '2020-09-23 09:44:26', 0); INSERT INTO `operation_record_log` VALUES ('1308583099236044802', 'Tohsaka Rin', 9999, '短信验证码发送', 'com.gousade.redis.RedisSmsCodeUtil.sendSmsCode', '151********', '2020-09-23 09:44:57', 0); INSERT INTO `operation_record_log` VALUES ('1308585297802104833', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@7d79c946,org.apache.shiro.web.servlet.ShiroHttpServletRequest@47ce1000', '2020-09-23 09:53:41', 0); INSERT INTO `operation_record_log` VALUES ('1308585387136585730', 'Tohsaka Rin', 9999, '短信验证码发送', 'com.gousade.redis.RedisSmsCodeUtil.sendSmsCode', '151********', '2020-09-23 09:54:03', 0); INSERT INTO `operation_record_log` VALUES ('1308586682245410818', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@7eb10a2e,org.apache.shiro.web.servlet.ShiroHttpServletRequest@5608acaf', '2020-09-23 09:59:12', 0); INSERT INTO `operation_record_log` VALUES ('1308586701929279490', 'Tohsaka Rin', 9999, '短信验证码发送', 'com.gousade.redis.RedisSmsCodeUtil.sendSmsCode', '151********', '2020-09-23 09:59:16', 0); INSERT INTO `operation_record_log` VALUES ('1308587443557732353', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@8710ca8,org.apache.shiro.web.servlet.ShiroHttpServletRequest@7fde8b91', '2020-09-23 10:02:13', 0); INSERT INTO `operation_record_log` VALUES ('1308589271955505154', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@24ad7ff2,org.apache.shiro.web.servlet.ShiroHttpServletRequest@4e4cff25', '2020-09-23 10:09:29', 0); INSERT INTO `operation_record_log` VALUES ('1308589316553539585', 'Tohsaka Rin', 9999, '短信验证码发送', 'com.gousade.redis.RedisSmsCodeUtil.sendSmsCode', '151********', '2020-09-23 10:09:40', 0); INSERT INTO `operation_record_log` VALUES ('1308655729146310658', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@4976fec7,org.apache.shiro.web.servlet.ShiroHttpServletRequest@51fa1b0a', '2020-09-23 14:33:34', 0); INSERT INTO `operation_record_log` VALUES ('1308671249790767106', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@61378321,org.apache.shiro.web.servlet.ShiroHttpServletRequest@5bd0ad35', '2020-09-23 15:35:14', 0); INSERT INTO `operation_record_log` VALUES ('1308671770341613570', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@6210aaa1,org.apache.shiro.web.servlet.ShiroHttpServletRequest@1d4d4b0a', '2020-09-23 07:37:18', 0); INSERT INTO `operation_record_log` VALUES ('1308695710556360706', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@7a314237,org.apache.shiro.web.servlet.ShiroHttpServletRequest@6aa9bccb', '2020-09-23 17:12:26', 0); INSERT INTO `operation_record_log` VALUES ('1308695762653810690', 'Tohsaka Rin', 1, '上传头像', 'com.gousade.controller.UserController.userAvatarUpload', 'org.springframework.web.multipart.support.StandardMultipartHttpServletRequest$StandardMultipartFile@68ff573f', '2020-09-23 17:12:38', 0); INSERT INTO `operation_record_log` VALUES ('1308695764000182274', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@7d0df504,org.apache.shiro.web.servlet.ShiroHttpServletRequest@7744f211', '2020-09-23 17:12:39', 0); INSERT INTO `operation_record_log` VALUES ('1308696018258890753', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@5f3b69ad,org.apache.shiro.web.servlet.ShiroHttpServletRequest@297b1914', '2020-09-23 17:13:39', 0); INSERT INTO `operation_record_log` VALUES ('1308696090690326530', 'Tohsaka Rin', 1, '上传oss头像', 'com.gousade.controller.UserController.uploadOssAvatar', 'org.springframework.web.multipart.support.StandardMultipartHttpServletRequest$StandardMultipartFile@675258ef', '2020-09-23 17:13:57', 0); INSERT INTO `operation_record_log` VALUES ('1308696091675987969', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@553d300d,org.apache.shiro.web.servlet.ShiroHttpServletRequest@a8c52f4', '2020-09-23 17:13:57', 0); INSERT INTO `operation_record_log` VALUES ('1308698748188794882', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@4cc3bff1,org.apache.shiro.web.servlet.ShiroHttpServletRequest@7e86d1c5', '2020-09-23 17:24:30', 0); INSERT INTO `operation_record_log` VALUES ('1308698873606873090', 'Tohsaka Rin', 1, '上传oss头像', 'com.gousade.controller.UserController.uploadOssAvatar', 'org.springframework.web.multipart.support.StandardMultipartHttpServletRequest$StandardMultipartFile@7d1091c2', '2020-09-23 17:25:00', 0); INSERT INTO `operation_record_log` VALUES ('1308941811851108353', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@4ef64b60,org.apache.shiro.web.servlet.ShiroHttpServletRequest@1b77a591', '2020-09-24 09:30:21', 0); INSERT INTO `operation_record_log` VALUES ('1308942497573675010', 'Tohsaka Rin', 1, '上传oss头像', 'com.gousade.controller.UserController.uploadOssAvatar', 'org.springframework.web.multipart.support.StandardMultipartHttpServletRequest$StandardMultipartFile@203d173a', '2020-09-24 09:33:05', 0); INSERT INTO `operation_record_log` VALUES ('1308944284338790402', 'Tohsaka Rin', 2, '获取oss头像', 'com.gousade.controller.UserController.getOssAvatar', NULL, '2020-09-24 09:40:11', 0); INSERT INTO `operation_record_log` VALUES ('1308944683737194497', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@589b52fa,org.apache.shiro.web.servlet.ShiroHttpServletRequest@1008348c', '2020-09-24 09:41:46', 0); INSERT INTO `operation_record_log` VALUES ('1308944732466618370', 'Tohsaka Rin', 1, '上传oss头像', 'com.gousade.controller.UserController.uploadOssAvatar', 'org.springframework.web.multipart.support.StandardMultipartHttpServletRequest$StandardMultipartFile@78d94366', '2020-09-24 09:41:57', 0); INSERT INTO `operation_record_log` VALUES ('1308944733095763969', 'Tohsaka Rin', 2, '获取oss头像', 'com.gousade.controller.UserController.getOssAvatar', NULL, '2020-09-24 09:41:58', 0); INSERT INTO `operation_record_log` VALUES ('1308945813292621826', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@4f586122,org.apache.shiro.web.servlet.ShiroHttpServletRequest@723c29cb', '2020-09-24 09:46:15', 0); INSERT INTO `operation_record_log` VALUES ('1308946321130561537', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@61c49c70,org.apache.shiro.web.servlet.ShiroHttpServletRequest@673cb6ef', '2020-09-24 09:48:16', 0); INSERT INTO `operation_record_log` VALUES ('1308946589276610561', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@608596c9,org.apache.shiro.web.servlet.ShiroHttpServletRequest@516318a6', '2020-09-24 09:49:20', 0); INSERT INTO `operation_record_log` VALUES ('1309045879143534593', 'Tohsaka Rin', 0, '查询角色列表', 'com.gousade.controller.RoleController.selectRoleList', '1,10,org.apache.shiro.web.servlet.ShiroHttpServletRequest@6d87cf49', '2020-09-24 16:23:53', 0); INSERT INTO `operation_record_log` VALUES ('1309407692104355842', 'Tohsaka Rin', 1, '上传excel测试', 'com.gousade.controller.EasyExcelDataController.upload', 'org.springframework.web.multipart.support.StandardMultipartHttpServletRequest$StandardMultipartFile@29c8e5bb', '2020-09-25 16:21:36', 0); INSERT INTO `operation_record_log` VALUES ('1309408103536218113', 'Tohsaka Rin', 1, '上传excel测试', 'com.gousade.controller.EasyExcelDataController.upload', 'org.springframework.web.multipart.support.StandardMultipartHttpServletRequest$StandardMultipartFile@2d20fa68', '2020-09-25 16:23:14', 0); INSERT INTO `operation_record_log` VALUES ('1309408474186862594', 'Tohsaka Rin', 1, '上传excel测试', 'com.gousade.controller.EasyExcelDataController.upload', 'org.springframework.web.multipart.support.StandardMultipartHttpServletRequest$StandardMultipartFile@25f2d2ff', '2020-09-25 16:24:42', 0); INSERT INTO `operation_record_log` VALUES ('1309408856401203202', 'Tohsaka Rin', 1, '上传excel测试', 'com.gousade.controller.EasyExcelDataController.upload', 'org.springframework.web.multipart.support.StandardMultipartHttpServletRequest$StandardMultipartFile@582a7dd', '2020-09-25 16:26:13', 0); INSERT INTO `operation_record_log` VALUES ('1309409695882760193', 'Tohsaka Rin', 1, '上传excel测试', 'com.gousade.controller.EasyExcelDataController.upload', 'org.springframework.web.multipart.support.StandardMultipartHttpServletRequest$StandardMultipartFile@3182a6b5', '2020-09-25 16:29:33', 0); INSERT INTO `operation_record_log` VALUES ('1309410276496068610', 'Tohsaka Rin', 1, '上传excel测试', 'com.gousade.controller.EasyExcelDataController.upload', 'org.springframework.web.multipart.support.StandardMultipartHttpServletRequest$StandardMultipartFile@6d378b62', '2020-09-25 16:31:52', 0); INSERT INTO `operation_record_log` VALUES ('1309417857377587201', 'Tohsaka Rin', 1, '上传excel测试', 'com.gousade.controller.EasyExcelDataController.upload', 'org.springframework.web.multipart.support.StandardMultipartHttpServletRequest$StandardMultipartFile@26bd2d48', '2020-09-25 17:01:59', 0); INSERT INTO `operation_record_log` VALUES ('1310022860161105921', 'Tohsaka Rin', 1, '上传excel测试', 'com.gousade.controller.EasyExcelDataController.upload', 'org.springframework.web.multipart.support.StandardMultipartHttpServletRequest$StandardMultipartFile@4aa2f42a', '2020-09-27 09:06:03', 0); INSERT INTO `operation_record_log` VALUES ('1310023065686196225', 'Tohsaka Rin', 1, '上传excel测试', 'com.gousade.controller.EasyExcelDataController.upload', 'org.springframework.web.multipart.support.StandardMultipartHttpServletRequest$StandardMultipartFile@5d0637bb', '2020-09-27 09:06:52', 0); INSERT INTO `operation_record_log` VALUES ('1310027430467682305', 'Tohsaka Rin', 2, '下载excel测试', 'com.gousade.controller.EasyExcelDataController.download', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@45ee3239', '2020-09-27 09:24:13', 0); INSERT INTO `operation_record_log` VALUES ('1310028014272856065', 'Tohsaka Rin', 2, '下载excel测试', 'com.gousade.controller.EasyExcelDataController.download', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@6a5002d8', '2020-09-27 09:26:32', 0); INSERT INTO `operation_record_log` VALUES ('1310031638583525378', 'Tohsaka Rin', 2, '下载excel测试', 'com.gousade.controller.EasyExcelDataController.download', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@48008492', '2020-09-27 09:40:56', 0); INSERT INTO `operation_record_log` VALUES ('1310032003320201217', 'Tohsaka Rin', 2, '下载excel测试', 'com.gousade.controller.EasyExcelDataController.download', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@39003223', '2020-09-27 09:42:23', 0); INSERT INTO `operation_record_log` VALUES ('1310049411275567106', 'Tohsaka Rin', 1, '上传excel测试', 'com.gousade.controller.EasyExcelDataController.upload', 'org.springframework.web.multipart.support.StandardMultipartHttpServletRequest$StandardMultipartFile@e829ba5', '2020-09-27 10:51:33', 0); INSERT INTO `operation_record_log` VALUES ('1310103109850882049', 'Tohsaka Rin', 1, '上传excel测试', 'com.gousade.controller.EasyExcelDataController.upload', 'org.springframework.web.multipart.support.StandardMultipartHttpServletRequest$StandardMultipartFile@475afd8c', '2020-09-27 14:24:56', 0); INSERT INTO `operation_record_log` VALUES ('1310103287899086849', 'Tohsaka Rin', 1, '上传excel测试', 'com.gousade.controller.EasyExcelDataController.upload', 'org.springframework.web.multipart.support.StandardMultipartHttpServletRequest$StandardMultipartFile@5b9c37cd', '2020-09-27 14:25:39', 0); INSERT INTO `operation_record_log` VALUES ('1310103881778978818', 'Tohsaka Rin', 1, '上传excel测试', 'com.gousade.controller.EasyExcelDataController.upload', 'org.springframework.web.multipart.support.StandardMultipartHttpServletRequest$StandardMultipartFile@511e8a77', '2020-09-27 14:28:00', 0); INSERT INTO `operation_record_log` VALUES ('1310104038247489537', 'Tohsaka Rin', 1, '上传excel测试', 'com.gousade.controller.EasyExcelDataController.upload', 'org.springframework.web.multipart.support.StandardMultipartHttpServletRequest$StandardMultipartFile@5fe9a703', '2020-09-27 14:28:37', 0); INSERT INTO `operation_record_log` VALUES ('1310107532241133570', 'Tohsaka Rin', 0, '查询角色列表', 'com.gousade.controller.RoleController.selectRoleList', '1,10,org.apache.shiro.web.servlet.ShiroHttpServletRequest@5407d5a8', '2020-09-27 14:42:30', 0); INSERT INTO `operation_record_log` VALUES ('1310411530005327873', 'Tohsaka Rin', 1, '上传excel测试', 'com.gousade.controller.EasyExcelDataController.upload', 'org.springframework.web.multipart.support.StandardMultipartHttpServletRequest$StandardMultipartFile@5007b7b', '2020-09-28 10:50:29', 0); INSERT INTO `operation_record_log` VALUES ('1310412731304349697', 'Tohsaka Rin', 2, '下载excel测试', 'com.gousade.controller.EasyExcelDataController.download', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@bb6c2d8', '2020-09-28 10:55:16', 0); INSERT INTO `operation_record_log` VALUES ('1310414830931001345', 'Tohsaka Rin', 1, '上传excel测试', 'com.gousade.controller.EasyExcelDataController.upload', 'org.springframework.web.multipart.support.StandardMultipartHttpServletRequest$StandardMultipartFile@74dd912f', '2020-09-28 11:03:36', 0); INSERT INTO `operation_record_log` VALUES ('1310414927576154114', 'Tohsaka Rin', 1, '上传excel测试', 'com.gousade.controller.EasyExcelDataController.upload', 'org.springframework.web.multipart.support.StandardMultipartHttpServletRequest$StandardMultipartFile@7d988b22', '2020-09-28 11:03:59', 0); INSERT INTO `operation_record_log` VALUES ('1311223409980116994', 'Tohsaka Rin', 1, '上传excel测试', 'com.gousade.controller.EasyExcelDataController.upload', 'org.springframework.web.multipart.support.StandardMultipartHttpServletRequest$StandardMultipartFile@28dd2140', '2020-09-30 16:36:36', 0); INSERT INTO `operation_record_log` VALUES ('1316210920217755650', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@26fb507,org.apache.shiro.web.servlet.ShiroHttpServletRequest@9aa285d', '2020-10-14 10:55:12', 0); INSERT INTO `operation_record_log` VALUES ('1316217281022377986', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@6f0185ef,org.apache.shiro.web.servlet.ShiroHttpServletRequest@3fa566d8', '2020-10-14 11:20:28', 0); INSERT INTO `operation_record_log` VALUES ('1316222141407019010', 'Tohsaka Rin', 0, '查询角色列表', 'com.gousade.controller.RoleController.selectRoleList', '1,10,org.apache.shiro.web.servlet.ShiroHttpServletRequest@2ef3a777', '2020-10-14 11:39:47', 0); INSERT INTO `operation_record_log` VALUES ('1316658526559518721', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@514cbbf8,org.apache.shiro.web.servlet.ShiroHttpServletRequest@27518a79', '2020-10-15 16:33:49', 0); INSERT INTO `operation_record_log` VALUES ('1318002444039036930', 'Tohsaka Rin', 0, '查询角色列表', 'com.gousade.controller.RoleController.selectRoleList', '1,10,org.apache.shiro.web.servlet.ShiroHttpServletRequest@4bc3f51', '2020-10-19 09:34:04', 0); INSERT INTO `operation_record_log` VALUES ('1318445973227941889', 'Tohsaka Rin', 0, '查询角色列表', 'com.gousade.controller.RoleController.selectRoleList', '1,10,org.apache.shiro.web.servlet.ShiroHttpServletRequest@3b4bd761', '2020-10-20 14:56:30', 0); INSERT INTO `operation_record_log` VALUES ('1318446919412592642', 'Tohsaka Rin', 0, '查询角色列表', 'com.gousade.controller.RoleController.selectRoleList', '1,10,org.apache.shiro.web.servlet.ShiroHttpServletRequest@464f0da8', '2020-10-20 15:00:15', 0); INSERT INTO `operation_record_log` VALUES ('1318870853243392001', 'Tohsaka Rin', 0, '查询角色列表', 'com.gousade.controller.RoleController.selectRoleList', '1,10,org.apache.shiro.web.servlet.ShiroHttpServletRequest@694e40e4', '2020-10-21 19:04:49', 0); INSERT INTO `operation_record_log` VALUES ('1328879762874155009', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@277af94d,org.apache.shiro.web.servlet.ShiroHttpServletRequest@11ebebd4', '2020-11-18 09:56:39', 0); INSERT INTO `operation_record_log` VALUES ('1328879813864308737', 'Tohsaka Rin', 9999, '短信验证码发送', 'com.gousade.redis.RedisSmsCodeUtil.sendSmsCode', '151********', '2020-11-18 09:56:51', 0); INSERT INTO `operation_record_log` VALUES ('1328880081968414721', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@396ddee8,org.apache.shiro.web.servlet.ShiroHttpServletRequest@1a9a9505', '2020-11-18 09:57:55', 0); INSERT INTO `operation_record_log` VALUES ('1328880083423838209', 'Tohsaka Rin', 9999, '短信验证码发送', 'com.gousade.redis.RedisSmsCodeUtil.sendSmsCode', '151********', '2020-11-18 09:57:55', 0); INSERT INTO `operation_record_log` VALUES ('1328880092106047490', 'Tohsaka Rin', 9999, '短信验证码发送', 'com.gousade.redis.RedisSmsCodeUtil.sendSmsCode', '151********', '2020-11-18 09:57:58', 0); INSERT INTO `operation_record_log` VALUES ('1329315095596089345', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@41656040,org.apache.shiro.web.servlet.ShiroHttpServletRequest@3261a18d', '2020-11-19 14:46:30', 0); INSERT INTO `operation_record_log` VALUES ('1331152533301870593', 'Tohsaka Rin', 2, '获取头像', 'com.gousade.controller.UserController.getUserAvatar', 'com.alibaba.druid.support.http.WebStatFilter$StatHttpServletResponseWrapper@7c215b23,org.apache.shiro.web.servlet.ShiroHttpServletRequest@611ee34a', '2020-11-24 16:27:50', 0); INSERT INTO `operation_record_log` VALUES ('1331152567804215297', 'Tohsaka Rin', 0, '查询角色列表', 'com.gousade.controller.RoleController.selectRoleList', '1,10,org.apache.shiro.web.servlet.ShiroHttpServletRequest@635295d3', '2020-11-24 16:27:58', 0); INSERT INTO `operation_record_log` VALUES ('1331152652558516226', 'Tohsaka Rin', 0, '查询角色列表', 'com.gousade.controller.RoleController.selectRoleList', '1,10,org.apache.shiro.web.servlet.ShiroHttpServletRequest@2b4e9eac', '2020-11-24 16:28:18', 0); INSERT INTO `operation_record_log` VALUES ('1332551867689967618', 'Tohsaka Rin', 0, '查询角色列表', 'com.gousade.controller.RoleController.selectRoleList', '1,10,org.apache.shiro.web.servlet.ShiroHttpServletRequest@23c78354', '2020-11-28 13:08:17', 0); INSERT INTO `operation_record_log` VALUES ('1348210622641250306', 'Tohsaka Rin', 0, '查询角色列表', 'com.gousade.controller.RoleController.selectRoleList', '1,10,org.apache.shiro.web.servlet.ShiroHttpServletRequest@5b587d2', '2021-01-10 18:10:35', 0); -- ---------------------------- -- Table structure for product -- ---------------------------- DROP TABLE IF EXISTS `product`; CREATE TABLE `product` ( `id` double(255, 0 ) NULL DEFAULT NULL, `amount` decimal(65, 0) NULL DEFAULT NULL, `create_time` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP, `create_date` date NULL DEFAULT NULL, `create_datetime` datetime NULL DEFAULT NULL, `time` time NULL DEFAULT NULL ) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Compact; -- ---------------------------- -- Records of product -- ---------------------------- INSERT INTO `product` VALUES (1, 100, '2020-10-13 11:38:08', '2020-10-13', '2020-10-13 11:38:05', '11:37:57'); INSERT INTO `product` VALUES (2, 200, NULL, NULL, NULL, NULL); INSERT INTO `product` VALUES (3, 300, NULL, NULL, NULL, NULL); INSERT INTO `product` VALUES (4, 400, NULL, NULL, NULL, NULL); INSERT INTO `product` VALUES (1, 200, NULL, NULL, NULL, NULL); INSERT INTO `product` VALUES (10, 1000, NULL, NULL, NULL, NULL); INSERT INTO `product` VALUES (99, 9990, NULL, NULL, NULL, NULL); -- ---------------------------- -- Table structure for product_details -- ---------------------------- DROP TABLE IF EXISTS `product_details`; CREATE TABLE `product_details` ( `id` int(255) NULL DEFAULT NULL, `weight` int(255) NULL DEFAULT NULL, `exist` int(255) NULL DEFAULT NULL ) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Compact; -- ---------------------------- -- Records of product_details -- ---------------------------- INSERT INTO `product_details` VALUES (2, 200, 0); INSERT INTO `product_details` VALUES (3, 400, 1); INSERT INTO `product_details` VALUES (4, 55, 0); INSERT INTO `product_details` VALUES (5, 66, 1); INSERT INTO `product_details` VALUES (1, 33, 0); INSERT INTO `product_details` VALUES (7, 77, 777); INSERT INTO `product_details` VALUES (6, 66, 666); -- ---------------------------- -- Table structure for resource -- ---------------------------- DROP TABLE IF EXISTS `resource`; CREATE TABLE `resource` ( `id` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, `pid` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, `name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, `url` varchar(500) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, `icon` varchar(400) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '资源图标', `seq` int(32) NULL DEFAULT NULL COMMENT '资源排序序号(用于同级资源展示时先后顺序控制)', `remarks` varchar(400) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, `status` int(1) NULL DEFAULT NULL COMMENT '打开状态', `resource_type` int(5) NULL DEFAULT NULL COMMENT '菜单类型 1:目录-非外链 2:目录-外链 3:目录-外链-登录(加密) 4:目录-外链-登录(明码) 5:目录-外链-嵌入 6:目录-外链-嵌入-登录 7:按钮或权限', `tip` int(5) NULL DEFAULT NULL, `create_time` datetime NULL DEFAULT NULL, `update_time` datetime NULL DEFAULT NULL, `delflag` int(1) NULL DEFAULT 0, PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '资源表' ROW_FORMAT = Compact; -- ---------------------------- -- Records of resource -- ---------------------------- INSERT INTO `resource` VALUES ('1521d63c0d4e421fb20fd593d2827351', '1521d63c0d4e421fb20fd593d2827351', '品牌链接', '', '', 3, '', 0, 1, 0, NULL, '2020-08-04 09:08:30', 0); INSERT INTO `resource` VALUES ('1780f2abcd3241eabe62677d8d7c90d4', 'cb63cdbde80e48b085a03d4fdd226301', '资源管理', '/admin/resource/resourceManage', NULL, 2, '资源的列表', 0, 1, 0, '2019-12-15 17:09:39', '2020-03-16 11:05:17', 0); INSERT INTO `resource` VALUES ('230888defa67469cabf6d160b4099567', '', 'echarts', '', '', 2, 'e', 0, 1, NULL, NULL, NULL, 0); INSERT INTO `resource` VALUES ('26adeafc02f54b5fa1766784bc501033', 'cb63cdbde80e48b085a03d4fdd226301', 'tab', '/admin/user/tabs', '', 5, '1', 0, 1, 0, '2020-08-18 09:37:03', NULL, 0); INSERT INTO `resource` VALUES ('42b9aa7bd4df417989dcb148a6402a62', '230888defa67469cabf6d160b4099567', 'echarts-gl', '/admin/echarts/echarts-gl', 'fa-globe', 0, 'echarts3D', 0, 1, 0, '2020-08-11 20:32:03', NULL, 0); INSERT INTO `resource` VALUES ('622039c6820a49fd98db50c050c7413b', '9c81edaf15b749a0bf8f61b4926daa0f', 'adminlte.io-2.4.18', 'https://adminlte.io/themes/AdminLTE/index.html', '', 1, '', 0, 2, 0, '2020-08-11 20:56:25', NULL, 0); INSERT INTO `resource` VALUES ('6af9c09c689a41cb9cddc17e2c2644d0', '1521d63c0d4e421fb20fd593d2827351', 'github/gousade', 'https://github.com/woxigousade/gousade', 'fa-github', 1, '', 0, 2, 0, '2020-09-08 15:26:06', NULL, 0); INSERT INTO `resource` VALUES ('7b5e58dc822e4262a6a919c316c9f023', 'cb63cdbde80e48b085a03d4fdd226301', '用户管理', '/admin/user/userManage', NULL, 0, '用户管理', 0, 1, 9, NULL, '2020-03-16 11:05:17', 0); INSERT INTO `resource` VALUES ('8b54d67ed1b745b7a89c3cb7d662f9b0', 'bc97fbda9e644b3aa3efe55bb8c56d7c', 'player01', '/admin/aliyun/player01', '', 0, '', 0, 1, 0, '2020-10-20 14:55:50', NULL, 0); INSERT INTO `resource` VALUES ('91a17ec6bc2b4f7d9dfdb05f8e7bbda4', '9c81edaf15b749a0bf8f61b4926daa0f', 'adminlte.io-docs3.0', 'https://adminlte.io/docs/3.0/', '', 0, '', 0, 2, 0, '2020-08-11 20:55:49', NULL, 0); INSERT INTO `resource` VALUES ('94fdfa071b1d4025b31a843fc432d0aa', NULL, '后台管理', '', '', -1, NULL, 0, 1, 0, '2019-12-12 16:36:26', '2019-12-13 20:14:55', 0); INSERT INTO `resource` VALUES ('9c81edaf15b749a0bf8f61b4926daa0f', '', 'adminlte.io 3.0', '', 'fa-link', 1, '', 0, 1, 0, '2020-08-11 20:52:09', NULL, 0); INSERT INTO `resource` VALUES ('aa8bbc7e05594e9ab4714df3ecc0714c', 'bc97fbda9e644b3aa3efe55bb8c56d7c', 'player02', '/admin/aliyun/player02', '', 1, '', 0, 1, 0, '2020-10-20 15:22:43', NULL, 0); INSERT INTO `resource` VALUES ('ba1d900f91dd46b990c04dd51a7d65a7', '1521d63c0d4e421fb20fd593d2827351', 'pilipili', 'https://www.bilibili.com', 'fa-behance', -1, 'bilibili', 0, 2, 0, '2020-09-24 10:13:28', NULL, 0); INSERT INTO `resource` VALUES ('bc97fbda9e644b3aa3efe55bb8c56d7c', '', 'aliyunPlayer', '', '', 4, '', 0, 1, 0, '2020-10-20 14:55:01', NULL, 0); INSERT INTO `resource` VALUES ('c7d66d969354494da013de70a6765bb3', '1521d63c0d4e421fb20fd593d2827351', '百度', 'https://www.baidu.com', '', 0, '', 0, 5, 0, '2020-09-03 16:06:53', NULL, 0); INSERT INTO `resource` VALUES ('ca171f466a62472996a2591d0a3d4966', 'cb63cdbde80e48b085a03d4fdd226301', '角色管理', '/admin/role/roleManage', NULL, 1, '角色的列表', 0, 1, 0, '2019-12-12 16:38:19', '2020-03-16 11:05:17', 0); INSERT INTO `resource` VALUES ('cb63cdbde80e48b085a03d4fdd226301', '94fdfa071b1d4025b31a843fc432d0aa', '权限管理', NULL, NULL, 0, NULL, 0, 1, 0, NULL, '2020-03-16 11:05:17', 0); INSERT INTO `resource` VALUES ('dce73d7e99a14d09a8f410532a689da9', '', '测试', '1', '', NULL, '', 0, 1, 0, NULL, '2020-08-11 21:29:38', 1); -- ---------------------------- -- Table structure for role -- ---------------------------- DROP TABLE IF EXISTS `role`; CREATE TABLE `role` ( `id` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, `name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, `remarks` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, `seq` int(32) NULL DEFAULT NULL COMMENT '排序序号', `create_time` datetime NULL DEFAULT NULL, `update_time` datetime NULL DEFAULT NULL, `delflag` tinyint(1) NULL DEFAULT NULL, PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '角色表' ROW_FORMAT = Compact; -- ---------------------------- -- Records of role -- ---------------------------- INSERT INTO `role` VALUES ('0e073250b876489a8eefd6b801374b60', '超级管理员', '拥有本系统最高权限', 0, '2018-12-25 17:16:45', '2019-12-15 17:16:52', 0); INSERT INTO `role` VALUES ('19b9914b6c9a342f92377783422d8430', '测试mybatisplus角色3', NULL, 10, '2020-08-29 12:09:01', '2020-08-29 12:09:01', 1); INSERT INTO `role` VALUES ('27f83817878649cb941b2c4fe71de12e', '测试setz', '', 99, '2020-03-19 09:25:36', '2020-11-20 14:40:46', 0); INSERT INTO `role` VALUES ('2821427e1b9743c1afc57f0ba476e3f4', '综合功能', '综合功能维护', 2, '2019-12-15 17:18:27', '2020-03-18 14:32:08', 0); INSERT INTO `role` VALUES ('28438d95153646b1ae8a7ee1338dce22', '测试角色', '4', 4, '2020-03-18 14:22:25', '2020-08-31 20:15:13', 1); INSERT INTO `role` VALUES ('30f11a4ac30023ee5119fae02005adcc', '测试mybatisplus角色3', NULL, 10, '2020-08-31 17:06:06', '2020-08-31 17:06:06', 0); INSERT INTO `role` VALUES ('30f52a03f28399a3147a0dfa5103a750', 'jasypt', '拥有jasypt权限', 11, '2020-09-07 15:54:36', '2020-09-07 15:54:36', 0); INSERT INTO `role` VALUES ('40089b6738770c9b21dbae278351ed4d', '测试mybatisplus角色3', NULL, 10, '2020-08-31 19:51:56', '2020-08-31 19:51:56', 0); INSERT INTO `role` VALUES ('5a7608c676f762d9198fbe5076f3c7ee', '测试mybatisplus角色3', NULL, 10, '2020-08-29 12:07:51', '2020-08-29 12:07:51', 0); INSERT INTO `role` VALUES ('7314257f98de48588012b2f30ede585a', '测试资源2', '2', 2, '2020-03-18 14:18:10', '2020-03-18 14:55:11', 0); INSERT INTO `role` VALUES ('7c1d5e63821b131998acbe0125da7917', '测试mybatisplus角色3', NULL, 10, '2020-09-01 14:50:57', '2020-09-01 14:50:57', 0); INSERT INTO `role` VALUES ('82773b3e46924b049b0269334cc4ea0e', '后台管理员', '维护系统后台数据', 1, '2019-12-15 17:18:04', '2020-03-18 14:32:03', 0); INSERT INTO `role` VALUES ('8a024a8d53934950ad56c98846ca864b', 'echarts测试角色', '', 0, '2020-08-11 20:14:24', NULL, 0); INSERT INTO `role` VALUES ('9cb8a0e38a4b4c46bad26010c8486386', '831测试', '啊', 1, '2020-08-31 09:46:44', '2020-08-31 09:46:44', 0); INSERT INTO `role` VALUES ('a542106af9074d8589fc646ce827be73', '资源橘色的', '1', 3, '2020-04-30 10:57:11', '2020-04-30 10:57:20', 1); INSERT INTO `role` VALUES ('c1d4fbfcd68580147437291a4896e11d', '测试mybatisplus角色3', NULL, 10, '2020-08-28 22:59:46', '2020-08-28 22:59:46', 0); INSERT INTO `role` VALUES ('c32460983cc870145f4a8da17d2e63ec', '测试mybatisplus角色3', NULL, 10, '2020-09-01 14:28:21', '2020-09-01 14:28:21', 0); INSERT INTO `role` VALUES ('c628cfe4030f355dedf1d11977d6e145', '测试mybatisplus角色3', NULL, 10, '2020-08-26 11:08:16', '2020-08-26 11:08:16', 0); INSERT INTO `role` VALUES ('f2ad2fc3c7384bf687c2fba8278fe42f', '测试角色2', '2', 2, '2020-03-18 14:23:01', '2020-03-18 14:57:54', 0); INSERT INTO `role` VALUES ('ff383e5d436b08017ba97342d9cdafda', '测试mybatisplus角色3', NULL, 10, '2020-08-31 21:44:39', '2020-08-31 21:44:39', 0); -- ---------------------------- -- Table structure for role_resource -- ---------------------------- DROP TABLE IF EXISTS `role_resource`; CREATE TABLE `role_resource` ( `id` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, `roleid` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, `resourceid` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, `create_time` datetime NULL DEFAULT NULL, `update_time` datetime NULL DEFAULT NULL, `delflag` varchar(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '角色资源关联表' ROW_FORMAT = Compact; -- ---------------------------- -- Records of role_resource -- ---------------------------- INSERT INTO `role_resource` VALUES ('063c1a2df2dc45cc9024718a4d6b36a0', '0e073250b876489a8eefd6b801374b60', '7b5e58dc822e4262a6a919c316c9f023', '2020-08-11 20:56:54', NULL, '0'); INSERT INTO `role_resource` VALUES ('079398f025b24fc3a26d76b7edca16fc', '82773b3e46924b049b0269334cc4ea0e', '7b5e58dc822e4262a6a919c316c9f023', '2020-09-22 15:40:46', NULL, '0'); INSERT INTO `role_resource` VALUES ('1bc087ffc14e47b580a21fcff4c51f5c', '0e073250b876489a8eefd6b801374b60', '42b9aa7bd4df417989dcb148a6402a62', '2020-08-11 20:56:54', NULL, '0'); INSERT INTO `role_resource` VALUES ('1ea5a756ed964b6b888462a56c5ba99e', '0e073250b876489a8eefd6b801374b60', '1521d63c0d4e421fb20fd593d2827351', '2020-08-11 20:56:54', NULL, '0'); INSERT INTO `role_resource` VALUES ('2025a3d3076b48f79c71129b93519b18', '0e073250b876489a8eefd6b801374b60', 'dce73d7e99a14d09a8f410532a689da9', '2020-08-11 20:56:54', NULL, '0'); INSERT INTO `role_resource` VALUES ('2400ef83166f475a960d78b0a37f813f', '0e073250b876489a8eefd6b801374b60', '26adeafc02f54b5fa1766784bc501033', '2020-08-18 09:37:03', NULL, '0'); INSERT INTO `role_resource` VALUES ('3396b17ef3614409bedba357d87e0a2f', '0e073250b876489a8eefd6b801374b60', 'aa8bbc7e05594e9ab4714df3ecc0714c', '2020-10-20 15:22:44', NULL, '0'); INSERT INTO `role_resource` VALUES ('3a563b1995554ac3a6f3fc1aaef7acb5', '82773b3e46924b049b0269334cc4ea0e', '94fdfa071b1d4025b31a843fc432d0aa', '2020-09-22 15:40:46', NULL, '0'); INSERT INTO `role_resource` VALUES ('3d312a87727341a99e478d51518eef26', '27f83817878649cb941b2c4fe71de12e', '1521d63c0d4e421fb20fd593d2827351', '2020-07-02 15:29:11', NULL, '0'); INSERT INTO `role_resource` VALUES ('3d44165a016b407c86fcd5ae87410c36', '82773b3e46924b049b0269334cc4ea0e', '94fdfa071b1d4025b31a843fc432d0aa', '2020-08-05 17:16:08', '2020-09-22 15:40:46', '1'); INSERT INTO `role_resource` VALUES ('424f1184760d4c4f80fbe5a883e4c66c', '27f83817878649cb941b2c4fe71de12e', '94fdfa071b1d4025b31a843fc432d0aa', '2020-07-02 15:29:11', NULL, '0'); INSERT INTO `role_resource` VALUES ('4437689fa2a44d8da052009b695a6eb5', '0e073250b876489a8eefd6b801374b60', '6af9c09c689a41cb9cddc17e2c2644d0', '2020-09-08 15:26:06', NULL, '0'); INSERT INTO `role_resource` VALUES ('444065a32155438bac4ca0c5da66c467', '0e073250b876489a8eefd6b801374b60', '1780f2abcd3241eabe62677d8d7c90d4', '2020-08-11 20:56:54', NULL, '0'); INSERT INTO `role_resource` VALUES ('458a6eb59654407fbadb01009e909cda', '0e073250b876489a8eefd6b801374b60', 'ba1d900f91dd46b990c04dd51a7d65a7', '2020-09-24 10:13:28', NULL, '0'); INSERT INTO `role_resource` VALUES ('5dcdebd7493f4ddba7d56ee695dc3c13', '27f83817878649cb941b2c4fe71de12e', 'cde08aca539349259c9fc4c024ecade5', '2020-07-02 15:29:11', NULL, '0'); INSERT INTO `role_resource` VALUES ('5f057e8f2f6940008d84fe6f42e2aeba', '27f83817878649cb941b2c4fe71de12e', '1cc6969b704b4695a9d55bde5986ca0f', '2020-07-02 15:29:11', NULL, '0'); INSERT INTO `role_resource` VALUES ('5f111b95910e458b9346a968dc44b134', '27f83817878649cb941b2c4fe71de12e', 'e33cba1cb6f748baa07f14ed859d6996', '2020-07-02 15:29:11', NULL, '0'); INSERT INTO `role_resource` VALUES ('5fb65862c63747108afa6a4266565b7a', '82773b3e46924b049b0269334cc4ea0e', '1521d63c0d4e421fb20fd593d2827351', '2020-09-22 15:40:46', NULL, '0'); INSERT INTO `role_resource` VALUES ('62abe39e2c6740469ac259a10b8c1d1d', '0e073250b876489a8eefd6b801374b60', '066a7a097a00456f84b1f99fd64f8865', '2020-08-11 20:56:54', NULL, '0'); INSERT INTO `role_resource` VALUES ('6f1c3be4d5cd4cc7833212b678d2f030', '0e073250b876489a8eefd6b801374b60', '94fdfa071b1d4025b31a843fc432d0aa', '2020-08-11 20:56:54', NULL, '0'); INSERT INTO `role_resource` VALUES ('6fd8d7fb85bd4619a8b503be6dc6d972', '27f83817878649cb941b2c4fe71de12e', '14cba37c49dd4797884675e8f2ef287e', '2020-07-02 15:29:11', NULL, '0'); INSERT INTO `role_resource` VALUES ('71dfe9fbeca343b7b5c799a6d84f84d7', '0e073250b876489a8eefd6b801374b60', 'cb63cdbde80e48b085a03d4fdd226301', '2020-08-11 20:56:54', NULL, '0'); INSERT INTO `role_resource` VALUES ('891a70c877504850b5c766fbe2cc367e', '0e073250b876489a8eefd6b801374b60', '622039c6820a49fd98db50c050c7413b', '2020-08-11 20:56:54', NULL, '0'); INSERT INTO `role_resource` VALUES ('8fc37fc6494244e69fd644ab0f70296e', '0e073250b876489a8eefd6b801374b60', '230888defa67469cabf6d160b4099567', '2020-08-11 20:56:54', NULL, '0'); INSERT INTO `role_resource` VALUES ('a2e4182ba16a48b3935af65f9fac6073', '7314257f98de48588012b2f30ede585a', 'cb63cdbde80e48b085a03d4fdd226301', '2020-11-24 16:28:18', NULL, '0'); INSERT INTO `role_resource` VALUES ('b0ea89727c474b09bc2a8a902e4e4950', '27f83817878649cb941b2c4fe71de12e', '9dae1d494f414264a4ffa69fb995c3da', '2020-07-02 15:29:11', NULL, '0'); INSERT INTO `role_resource` VALUES ('b5378d782033499aa1ac7386c55e0d49', '8a024a8d53934950ad56c98846ca864b', '230888defa67469cabf6d160b4099567', '2020-08-11 20:14:38', NULL, '0'); INSERT INTO `role_resource` VALUES ('bcc7f3e57ad84a7db4fa57e100952b92', '7314257f98de48588012b2f30ede585a', '1780f2abcd3241eabe62677d8d7c90d4', '2020-11-24 16:28:18', NULL, '0'); INSERT INTO `role_resource` VALUES ('bf03128ec9544cb2bcc82f5017370030', '0e073250b876489a8eefd6b801374b60', '8b54d67ed1b745b7a89c3cb7d662f9b0', '2020-10-20 14:55:50', NULL, '0'); INSERT INTO `role_resource` VALUES ('c427d0c1f0284ef4a97c01cc936edc6b', '0e073250b876489a8eefd6b801374b60', 'ca171f466a62472996a2591d0a3d4966', '2020-08-11 20:56:54', NULL, '0'); INSERT INTO `role_resource` VALUES ('c4f4ee7a72e949839733248982dda420', '0e073250b876489a8eefd6b801374b60', '9c81edaf15b749a0bf8f61b4926daa0f', '2020-08-11 20:56:54', NULL, '0'); INSERT INTO `role_resource` VALUES ('d6adb78d980e4aaba1ed9ef1b1e632ee', '82773b3e46924b049b0269334cc4ea0e', 'ca171f466a62472996a2591d0a3d4966', '2020-09-22 15:40:46', NULL, '0'); INSERT INTO `role_resource` VALUES ('d99c73c46b4c43baa12f0d06414429d7', '0e073250b876489a8eefd6b801374b60', 'c7d66d969354494da013de70a6765bb3', '2020-09-03 16:06:53', NULL, '0'); INSERT INTO `role_resource` VALUES ('da33af9d089848238d4550b6c4ce3414', '0e073250b876489a8eefd6b801374b60', 'bc97fbda9e644b3aa3efe55bb8c56d7c', '2020-10-20 14:55:01', NULL, '0'); INSERT INTO `role_resource` VALUES ('e58f07893b4d4e2c9d1e42b55f3a60e4', '0e073250b876489a8eefd6b801374b60', '91a17ec6bc2b4f7d9dfdb05f8e7bbda4', '2020-08-11 20:56:54', NULL, '0'); INSERT INTO `role_resource` VALUES ('ebfe03fdadc144f0b7b4a18d3500d578', '27f83817878649cb941b2c4fe71de12e', 'cb63cdbde80e48b085a03d4fdd226301', '2020-07-02 15:29:11', NULL, '0'); INSERT INTO `role_resource` VALUES ('f021634f29da4120a0d864906947f245', '7314257f98de48588012b2f30ede585a', '94fdfa071b1d4025b31a843fc432d0aa', '2020-11-24 16:28:18', NULL, '0'); -- ---------------------------- -- Table structure for secret_jasypt -- ---------------------------- DROP TABLE IF EXISTS `secret_jasypt`; CREATE TABLE `secret_jasypt` ( `id` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT 'id', `jasypt` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '混淆盐值', `vm_options` varchar(5000) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '启动参数', `create_time` datetime NULL DEFAULT NULL COMMENT '创建时间', `delflag` tinyint(1) NULL DEFAULT NULL COMMENT '逻辑删除', PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Compact; -- ---------------------------- -- Records of secret_jasypt -- ---------------------------- INSERT INTO `secret_jasypt` VALUES ('52ad73833a754219b9770e712f17e639', '52ad73833a754219b9770e712f17e639', '-Djasypt.encryptor.password=52ad73833a754219b9770e712f17e639 -Dspring.profiles.active=dev', '2020-08-31 16:31:33', 0); INSERT INTO `secret_jasypt` VALUES ('eclipse', 'eclipse中运行所需配置', '默认直接以dev模式运行。在maven build和run configuration的Profile中都需要填入prod(主要原因是pom的<resource>标签的写法会过滤配置文件,只有build包含了prod配置文件才能运行,在run configuration中有两处可以设置prod,springboot页设置Porfile栏为prod,以及arguments页设置Program arguments栏为--spring.profiles.active=prod),执行build后再run。(还需要在vm参数中填入-Djasypt.encryptor.password=52ad73833a754219b9770e712f17e639)', NULL, NULL); INSERT INTO `secret_jasypt` VALUES ('idea.run', 'idea中运行所需配置', 'edit configuration中填写环境变量(environment variables) jasypt.encryptor.password=52ad73833a754219b9770e712f17e639 或者在vm参数中填写-Djasypt.encryptor.password=52ad73833a754219b9770e712f17e639,再将右侧maven的Profiles勾选 dev test prod其中一个即可正常运行', '2020-09-13 13:37:29', 0); INSERT INTO `secret_jasypt` VALUES ('maven-D-P', '-D和-P的解释', 'http://mvnbook.com/maven-properties.html', NULL, NULL); INSERT INTO `secret_jasypt` VALUES ('maven.package', 'maven打包命令', 'mvn clean package -Pdev 或 mvn clean package -Pprod 或 mvn clean package -Dprofiles.active=dev 其中-D之后的profiles.active为pom中<properties>包裹的自定义的名字。可以参考http://mvnbook.com/maven-properties.html 或者直接使用idea中的maven,Profiles选中一种环境,再点击clean和package即可。', '2020-09-13 13:31:14', 0); INSERT INTO `secret_jasypt` VALUES ('spring.datasource.url', 'spring.datasource.url', 'spring.datasource.url=jdbc:mysql://101.132.118.130:9733/gousade?useUnicode=true&characterEncoding=utf-8&autoReconnect=true&allowMultiQueries=true&serverTimezone=GMT%2B8&useSSL=false', NULL, NULL); INSERT INTO `secret_jasypt` VALUES ('spring.profiles.active', '运行时环境变量', 'spring.profiles.active=dev 或 spring.profiles.active=prod', '2020-09-13 13:24:26', 0); INSERT INTO `secret_jasypt` VALUES ('war.run', '打包后运行命令', 'java -Djasypt.encryptor.password=52ad73833a754219b9770e712f17e639 -jar gousade.war 不需要指定dev和prod 因为打包时候已经将配置填充到文件中,当然也可以写全:java -Djasypt.encryptor.password=52ad73833a754219b9770e712f17e639 -Dspring.profiles.active=dev -jar gousade.war', '2020-09-13 13:32:14', 0); -- ---------------------------- -- Table structure for sms_response_log -- ---------------------------- DROP TABLE IF EXISTS `sms_response_log`; CREATE TABLE `sms_response_log` ( `id` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, `response` varchar(5000) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, `create_time` datetime NULL DEFAULT NULL, `delflag` tinyint(1) NULL DEFAULT NULL, PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Compact; -- ---------------------------- -- Records of sms_response_log -- ---------------------------- INSERT INTO `sms_response_log` VALUES ('1300243375404560385', '{\"Message\":\"模板不合法(不存在或被拉黑)\",\"RequestId\":\"E26D2A98-3AA9-44AF-A8C3-F0390840AD98\",\"Code\":\"isv.SMS_TEMPLATE_ILLEGAL\"}', '2020-08-31 09:25:52', 0); INSERT INTO `sms_response_log` VALUES ('1300243769602027522', '{\"Message\":\"模板不合法(不存在或被拉黑)\",\"RequestId\":\"54A06B8A-BA8F-4853-A347-5615B559D023\",\"Code\":\"isv.SMS_TEMPLATE_ILLEGAL\"}', '2020-08-31 09:27:26', 0); INSERT INTO `sms_response_log` VALUES ('1300244037295091714', '{\"Message\":\"模板不合法(不存在或被拉黑)\",\"RequestId\":\"5BEE04A8-2BA8-45CF-B60B-96ADC10CDB5A\",\"Code\":\"isv.SMS_TEMPLATE_ILLEGAL\"}', '2020-08-31 09:28:30', 0); INSERT INTO `sms_response_log` VALUES ('1300245539661152257', '{\"Message\":\"模板不合法(不存在或被拉黑)\",\"RequestId\":\"10CBA6CB-7BC3-4884-B936-9652F907BC7C\",\"Code\":\"isv.SMS_TEMPLATE_ILLEGAL\"}', '2020-08-31 09:34:28', 0); INSERT INTO `sms_response_log` VALUES ('1300325404116758530', '{\"Message\":\"模板不合法(不存在或被拉黑)\",\"RequestId\":\"8CB2C3A3-50A8-4022-B98A-996B1160C7DC\",\"Code\":\"isv.SMS_TEMPLATE_ILLEGAL\"}', '2020-08-31 14:51:49', 0); INSERT INTO `sms_response_log` VALUES ('1300325793453027330', '{\"Message\":\"模板不合法(不存在或被拉黑)\",\"RequestId\":\"B3F47F6F-CA83-482D-B58E-1F10F0536E17\",\"Code\":\"isv.SMS_TEMPLATE_ILLEGAL\"}', '2020-08-31 14:53:22', 0); INSERT INTO `sms_response_log` VALUES ('1300395391127228417', '{\"Message\":\"模板不合法(不存在或被拉黑)\",\"RequestId\":\"D4A29375-FB0C-46B7-9DC2-EE20D173D573\",\"Code\":\"isv.SMS_TEMPLATE_ILLEGAL\"}', '2020-08-31 19:29:56', 0); INSERT INTO `sms_response_log` VALUES ('1300780435444334594', '{\"Message\":\"模板不合法(不存在或被拉黑)\",\"RequestId\":\"09ACA75B-1255-4DDD-96A5-BEE0B5C09321\",\"Code\":\"isv.SMS_TEMPLATE_ILLEGAL\"}', '2020-09-01 20:59:57', 0); INSERT INTO `sms_response_log` VALUES ('1300783760533356546', '{\"Message\":\"模板不合法(不存在或被拉黑)\",\"RequestId\":\"7CE7877C-D47A-4694-9AF4-1CFB8B1DE3B2\",\"Code\":\"isv.SMS_TEMPLATE_ILLEGAL\"}', '2020-09-01 21:13:10', 0); INSERT INTO `sms_response_log` VALUES ('1301048373222825986', '{\"Message\":\"模板不合法(不存在或被拉黑)\",\"RequestId\":\"B7ABB0A3-1B32-4128-9E5B-58BD4152541D\",\"Code\":\"isv.SMS_TEMPLATE_ILLEGAL\"}', '2020-09-02 14:44:39', 0); INSERT INTO `sms_response_log` VALUES ('1301056127572369410', '{\"Message\":\"模板不合法(不存在或被拉黑)\",\"RequestId\":\"FD252775-DFC6-4F30-8394-27B0DDF29C4E\",\"Code\":\"isv.SMS_TEMPLATE_ILLEGAL\"}', '2020-09-02 15:15:27', 0); INSERT INTO `sms_response_log` VALUES ('1301057008120356865', '{\"Message\":\"模板不合法(不存在或被拉黑)\",\"RequestId\":\"BAF2C375-FC6B-4647-86CA-B05087B4A797\",\"Code\":\"isv.SMS_TEMPLATE_ILLEGAL\"}', '2020-09-02 15:18:57', 0); INSERT INTO `sms_response_log` VALUES ('1301060590886445057', '{\"Message\":\"模板不合法(不存在或被拉黑)\",\"RequestId\":\"99DC57C6-21F1-41D4-8C9A-72EDDA02C57D\",\"Code\":\"isv.SMS_TEMPLATE_ILLEGAL\"}', '2020-09-02 15:33:12', 0); INSERT INTO `sms_response_log` VALUES ('1301062256088047617', '{\"Message\":\"模板不合法(不存在或被拉黑)\",\"RequestId\":\"CFFEFE45-80E8-4E12-88DD-B40E5422F377\",\"Code\":\"isv.SMS_TEMPLATE_ILLEGAL\"}', '2020-09-02 15:39:49', 0); INSERT INTO `sms_response_log` VALUES ('1301064009240010754', '{\"Message\":\"模板不合法(不存在或被拉黑)\",\"RequestId\":\"8C4980B0-C5E9-4954-BA20-58DF7F59BF80\",\"Code\":\"isv.SMS_TEMPLATE_ILLEGAL\"}', '2020-09-02 15:46:47', 0); INSERT INTO `sms_response_log` VALUES ('1301064221857669121', '{\"Message\":\"模板不合法(不存在或被拉黑)\",\"RequestId\":\"ABA6562B-5D9E-4276-9D34-1B8B720949AB\",\"Code\":\"isv.SMS_TEMPLATE_ILLEGAL\"}', '2020-09-02 15:47:37', 0); INSERT INTO `sms_response_log` VALUES ('1303615487280349185', '{\"Message\":\"OK\",\"RequestId\":\"B48297FB-A999-4D77-A91A-5D09CECCBB9B\",\"BizId\":\"776723599641127392^0\",\"Code\":\"OK\"}', '2020-09-09 16:45:26', 0); INSERT INTO `sms_response_log` VALUES ('1305477287368458241', '{\"Message\":\"OK\",\"RequestId\":\"7FD0E82C-DF5C-442F-A50E-D31EBDCC85D1\",\"BizId\":\"618423000085013457^0\",\"Code\":\"OK\"}', '2020-09-14 20:03:34', 0); INSERT INTO `sms_response_log` VALUES ('1305478057073586178', '{\"Message\":\"OK\",\"RequestId\":\"3820604D-2367-4FDF-ABBF-0467CF04D6FA\",\"BizId\":\"467901800085197095^0\",\"Code\":\"OK\"}', '2020-09-14 20:06:38', 0); INSERT INTO `sms_response_log` VALUES ('1305478578664648706', '{\"Message\":\"OK\",\"RequestId\":\"1932ACFB-6775-45AF-9051-283F4A19BC64\",\"BizId\":\"596224600085321473^0\",\"Code\":\"OK\"}', '2020-09-14 20:08:42', 0); INSERT INTO `sms_response_log` VALUES ('1305478828485881858', '{\"Message\":\"OK\",\"RequestId\":\"522214A4-77B1-4BC2-B9A5-E54B662FD9E0\",\"BizId\":\"648921400085381013^0\",\"Code\":\"OK\"}', '2020-09-14 20:09:41', 0); INSERT INTO `sms_response_log` VALUES ('1305481975820201985', '{\"Message\":\"模板不合法(不存在或被拉黑)\",\"RequestId\":\"C0150C10-41B0-4322-A44A-F8F0668544DF\",\"Code\":\"isv.SMS_TEMPLATE_ILLEGAL\"}', '2020-09-14 20:22:12', 0); INSERT INTO `sms_response_log` VALUES ('1305482307157635073', '{\"Message\":\"OK\",\"RequestId\":\"1EEC5A1D-1F2F-4CBE-93F8-664F04570F07\",\"BizId\":\"184407500086210407^0\",\"Code\":\"OK\"}', '2020-09-14 20:23:31', 0); INSERT INTO `sms_response_log` VALUES ('1308321016699392002', '{\"Message\":\"OK\",\"RequestId\":\"1B83F553-AE61-40D8-BDBE-08E6CF0809DB\",\"BizId\":\"864701800763013276^0\",\"Code\":\"OK\"}', '2020-09-22 16:23:32', 0); INSERT INTO `sms_response_log` VALUES ('1308576186049978370', '{\"Message\":\"模板不合法(不存在或被拉黑)\",\"RequestId\":\"7A1F4169-1C0C-4EFD-9637-D5A6DD16A024\",\"Code\":\"isv.SMS_TEMPLATE_ILLEGAL\"}', '2020-09-23 09:17:29', 0); INSERT INTO `sms_response_log` VALUES ('1308578735087910913', '{\"Message\":\"模板不合法(不存在或被拉黑)\",\"RequestId\":\"2406F9EA-EF3D-4C47-802C-4FBA97BD5299\",\"Code\":\"isv.SMS_TEMPLATE_ILLEGAL\"}', '2020-09-23 09:27:37', 0); INSERT INTO `sms_response_log` VALUES ('1308582891810934785', '{\"Message\":\"模板不合法(不存在或被拉黑)\",\"RequestId\":\"8D4C0B3E-DA5A-45D1-B085-350F1EA45FCC\",\"Code\":\"isv.SMS_TEMPLATE_ILLEGAL\"}', '2020-09-23 09:44:08', 0); INSERT INTO `sms_response_log` VALUES ('1308583099072466946', '{\"Message\":\"模板不合法(不存在或被拉黑)\",\"RequestId\":\"06FA9461-0003-4CF3-8847-1B80A63CC0A0\",\"Code\":\"isv.SMS_TEMPLATE_ILLEGAL\"}', '2020-09-23 09:44:57', 0); INSERT INTO `sms_response_log` VALUES ('1308585387052699649', '{\"Message\":\"模板不合法(不存在或被拉黑)\",\"RequestId\":\"EB079F53-2E30-4A26-A838-9CF87BCFCD3E\",\"Code\":\"isv.SMS_TEMPLATE_ILLEGAL\"}', '2020-09-23 09:54:03', 0); INSERT INTO `sms_response_log` VALUES ('1308586701866364929', '{\"Message\":\"模板不合法(不存在或被拉黑)\",\"RequestId\":\"87233C95-E30B-4980-968F-B12CF5C1E3D2\",\"Code\":\"isv.SMS_TEMPLATE_ILLEGAL\"}', '2020-09-23 09:59:16', 0); INSERT INTO `sms_response_log` VALUES ('1308589316473847809', '{\"Message\":\"模板不合法(不存在或被拉黑)\",\"RequestId\":\"45876F89-470C-4566-A7BB-6F0505D50F50\",\"Code\":\"isv.SMS_TEMPLATE_ILLEGAL\"}', '2020-09-23 10:09:40', 0); -- ---------------------------- -- Table structure for ssr -- ---------------------------- DROP TABLE IF EXISTS `ssr`; CREATE TABLE `ssr` ( `id` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, `link` varchar(1000) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Compact; -- ---------------------------- -- Records of ssr -- ---------------------------- INSERT INTO `ssr` VALUES ('3d217633e6c34e3bb278d1bdd93eefb4', 'ssr://MjA3LjI0Ni44NC4yMTM6OTk5OTphdXRoX3NoYTFfdjQ6YWVzLTI1Ni1jZmI6cGxhaW46ZDNoc016WTJNakF4Lz9vYmZzcGFyYW09'); -- ---------------------------- -- Table structure for test -- ---------------------------- DROP TABLE IF EXISTS `test`; CREATE TABLE `test` ( `id` double(5, 2 ) NULL DEFAULT NULL, `amount` decimal(65, 0) NULL DEFAULT NULL ) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Compact; -- ---------------------------- -- Records of test -- ---------------------------- INSERT INTO `test` VALUES (1.13, 1); INSERT INTO `test` VALUES (1.23, 1); INSERT INTO `test` VALUES (123.12, 1); -- ---------------------------- -- Table structure for user -- ---------------------------- DROP TABLE IF EXISTS `user`; CREATE TABLE `user` ( `id` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, `user_id` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, `user_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, `password` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, `salt` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, `create_time` datetime NULL DEFAULT NULL, `update_time` datetime NULL DEFAULT NULL, `remark` varchar(400) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, `phone_number` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, `lastlogintime` datetime NULL DEFAULT NULL, `delflag` tinyint(1) NULL DEFAULT 0, `avatar_path` varchar(4000) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '头像路径', `version` int(11) NULL DEFAULT NULL COMMENT '版本号 乐观锁', PRIMARY KEY (`id`) USING BTREE, UNIQUE INDEX `gousade_user_index_id`(`id`) USING BTREE ) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '用户表' ROW_FORMAT = Compact; -- ---------------------------- -- Records of user -- ---------------------------- INSERT INTO `user` VALUES ('04ab11ce56c34a9297ab3f0cd4901a9d', 'z', NULL, NULL, NULL, '2020-09-22 18:36:04', '2020-09-22 16:44:27', NULL, NULL, NULL, 0, NULL, 2); INSERT INTO `user` VALUES ('0cc558e6d87c4379a414a2a482054cf7', 'ceshi1', 'ceshi1', '67bfbdf8871081969a37f64e371890c9', '29f47476a4c7475c8a5fc809a703a5f3', '2020-08-05 22:34:31', '2020-09-22 16:44:27', NULL, '1', NULL, 0, NULL, 2); INSERT INTO `user` VALUES ('1b0422c6f0644d84b947c6d893b11749', 'bb', NULL, NULL, NULL, NULL, '2020-09-22 16:44:27', NULL, NULL, NULL, 0, NULL, 2); INSERT INTO `user` VALUES ('2959c92012ba4db08714369f52eca424', 'b', NULL, NULL, NULL, NULL, '2020-09-22 16:46:35', NULL, NULL, NULL, 0, NULL, 4); INSERT INTO `user` VALUES ('2e63015ae9093b00ea7d6f54d1e9cf5d', '831测试1', '831测试1', '0fba3a2c7c1a816d383c6266492341aa', 'fb8c35469f624997ad1e400d0f9b35ee', '2020-08-31 10:48:31', '2020-09-22 16:46:35', NULL, '1', '2020-08-31 10:49:32', 0, NULL, 4); INSERT INTO `user` VALUES ('326f44ea600f516708966fa65a6b91f0', '831测试2', '831测试1', 'aa', '23cf6d80de3d4ba8a0316466b50372fe', '2020-08-31 10:49:00', '2020-09-22 16:46:35', NULL, '12', NULL, 0, NULL, 4); INSERT INTO `user` VALUES ('70a6c4d7a0034123a506c1570fd85ec2', 's', NULL, NULL, NULL, NULL, '2020-09-22 16:46:35', NULL, NULL, NULL, 0, NULL, 4); INSERT INTO `user` VALUES ('728fdccf23dc48b8a53014cbc475042d', 'sss', NULL, NULL, NULL, NULL, '2020-09-22 16:46:35', NULL, NULL, NULL, 0, NULL, 4); INSERT INTO `user` VALUES ('78b66ae44ad34c23afd9afac02cd83e0', 'textadmin', '文本分析管理员', 'c08ce72bf25386cc3814f7c5131f97d9', 'b222ee185b7c48c7bce686e715fe931f', '2019-02-28 11:05:52', '2020-09-22 16:46:35', '文本分析管理员', '151********', NULL, 0, NULL, 4); INSERT INTO `user` VALUES ('8252099ea409477489b90f4cf0f084a3', 'gousade', '狗萨德', 'c08ce72bf25386cc3814f7c5131f97d9', 'b222ee185b7c48c7bce686e715fe931f', '2019-11-27 20:32:27', '2020-09-22 16:46:35', NULL, NULL, NULL, 0, NULL, 4); INSERT INTO `user` VALUES ('86a50c1474ef4a61b00fef8c8e5db8a1', 'ccc', NULL, NULL, NULL, NULL, '2020-09-22 16:46:35', NULL, NULL, NULL, 0, NULL, 4); INSERT INTO `user` VALUES ('8961e4f21fac43b796c1e0d0a422414', 'abbt', '023', NULL, NULL, NULL, '2020-09-22 16:46:35', NULL, '222', NULL, 0, NULL, 4); INSERT INTO `user` VALUES ('911a8e15eebf4d569f8a8299e5ad99d5', 'Tohsaka Rin', 'Tohsaka Rin', '9bb54586cc1d39ea40fd0efab1b845c5', '9117b66d4b3c40d5a53d7a199b0d437b', '2018-11-07 22:56:54', '2020-09-22 16:46:35', '超级管理员,拥有全部权限', '151********', '2021-01-10 18:10:01', 0, 'https://gousade.oss-cn-beijing.aliyuncs.com/2020-09-24/19e1b6fd7fc74588b573864aec3ca838avarar3.jpg', 4); INSERT INTO `user` VALUES ('9f8a863225404d908e9a028cc8adb9fd', 'aaa', NULL, NULL, NULL, NULL, '2020-09-22 16:46:35', NULL, NULL, NULL, 0, NULL, 4); INSERT INTO `user` VALUES ('a34d6da6c33b49af9f532c3dd7cde20c', 'z新增', 'a', '74b91c865bdcb34751b88f5410b70573', '53b8ce1db4ed4b529a10ea219feb6a66', '2020-08-26 09:59:58', '2020-09-22 16:46:35', NULL, '1', NULL, 0, NULL, 4); INSERT INTO `user` VALUES ('a8a31f50f3634c7eb42f35d03e8afacf', 'zzz', NULL, NULL, NULL, NULL, '2020-09-22 16:46:35', NULL, NULL, NULL, 0, NULL, 4); INSERT INTO `user` VALUES ('aa6ec84407295d184d5464401b94d131', 'a1', 'a1', '7da78b5ee40c61ed751eead003d49690', '4561aefdaff64eb09baa609cf5325b1a', '2020-09-23 15:35:40', '2020-09-23 15:35:40', NULL, '151', NULL, 0, NULL, 1); INSERT INTO `user` VALUES ('abbt', 'abbt', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, 1); INSERT INTO `user` VALUES ('b0121414558a4804a86eacff5ac33584', 'ss', NULL, NULL, NULL, NULL, '2020-09-22 16:46:35', NULL, NULL, NULL, 0, NULL, 4); INSERT INTO `user` VALUES ('b1a7e088446b46b89a3d994589c3d29b', 'aaaa', NULL, NULL, NULL, NULL, '2020-09-22 16:46:35', NULL, NULL, NULL, 0, NULL, 4); INSERT INTO `user` VALUES ('c0f597ae8bbd4550b1caa6ac130c02e6', '831测试', 'rin', 'cc7c12d1f150821ae99d18af18febef9', 'b8fb13f2e57c4c60b305a2618bc82be2', '2020-08-31 09:51:16', '2020-09-22 16:46:35', NULL, '151********', '2020-09-22 16:29:56', 0, NULL, 4); INSERT INTO `user` VALUES ('c4d94480bf2e4a6a894c669897a6dc21', 'ztesttime', '1', 'ed0b2ece34f1f79b7d9ed4109d7f9e92', 'e4c71e9343494b84b5655a53b907a363', '2020-08-24 15:28:21', '2020-09-22 16:46:35', NULL, '1', NULL, 0, NULL, 4); INSERT INTO `user` VALUES ('cc1fb84381be4f03aab1160cc990dc22', 'salt', '盐', '5b96272f7074510dcc9e3acafd1ad8a4', '8b035f42a17b4bfdbd4d41af71af1ee0', '2019-09-05 18:51:22', '2020-09-22 16:46:35', NULL, '13357145239', '2020-08-12 14:05:35', 0, NULL, 4); INSERT INTO `user` VALUES ('ccd25094437d6a67970890a6e5c51674', 'a3', 'a3', '70b7da115c37f78af8bfc828a1057f73', 'e7201771355f401ea5f492fbb8b21a98', '2020-09-23 15:38:27', '2020-09-23 15:38:27', NULL, '3', NULL, 0, NULL, 1); INSERT INTO `user` VALUES ('d1411e5c58a70c44d72ca016d1acc183', '0901测试', '0901测试才啊', '414274c52def5d67d3e169cf7a3aebec', 'eab63256145c414eae2a5c57fe763c06', '2020-09-01 11:03:59', '2020-09-01 15:17:54', '备注', '0901', NULL, 0, NULL, 7); INSERT INTO `user` VALUES ('d426016a5b814aa4bd50276ede4fe6c3', 'aaaaaaa', NULL, NULL, NULL, NULL, '2020-09-22 16:46:35', NULL, NULL, NULL, 0, NULL, 4); INSERT INTO `user` VALUES ('eac90d4d92fb45de91ad33df85ebc0ae', 'shiro002', '2', '796b0c410981e75ef5dcf1a34c81101c', '5c3e7ffe8155450e9e6deaab37431801', '2019-11-27 18:53:41', '2020-09-22 16:46:35', NULL, NULL, NULL, 0, NULL, 4); INSERT INTO `user` VALUES ('f9a35773d8ed4edfbb2e81d878f9dd59', 'c', NULL, NULL, NULL, NULL, '2020-09-22 16:46:35', NULL, NULL, NULL, 0, NULL, 4); INSERT INTO `user` VALUES ('fc6b0b6aa2dadb653f8de78266d60f88', 'a2', 'a2', '4b3f9223b88a8324380990c8bc0677f1', '8bfdc190cdbe4d7db98ee423775b1d6e', '2020-09-23 07:37:35', '2020-09-23 07:37:35', NULL, '11', NULL, 0, NULL, 1); -- ---------------------------- -- Table structure for user_role -- ---------------------------- DROP TABLE IF EXISTS `user_role`; CREATE TABLE `user_role` ( `id` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, `userid` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, `roleid` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, `create_time` datetime NULL DEFAULT NULL, `update_time` datetime NULL DEFAULT NULL, `delflag` varchar(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, PRIMARY KEY (`id`) USING BTREE, INDEX `FK_Reference_3`(`userid`) USING BTREE, INDEX `FK_Reference_4`(`roleid`) USING BTREE ) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '用户角色关联表' ROW_FORMAT = Compact; -- ---------------------------- -- Records of user_role -- ---------------------------- INSERT INTO `user_role` VALUES ('06f2245fa6754f93a62015bb3a6c4489', 'fc354e3dd71711ea9fce00163e002b3a', '82773b3e46924b049b0269334cc4ea0e', '2020-08-11 21:09:56', '2020-08-11 21:14:59', '1'); INSERT INTO `user_role` VALUES ('09e6a970cc6a43398d15ed5f149a7592', 'c0f597ae8bbd4550b1caa6ac130c02e6', '82773b3e46924b049b0269334cc4ea0e', '2020-09-22 16:21:02', '2020-09-22 16:24:21', '1'); INSERT INTO `user_role` VALUES ('0bf66696412d4f828d2515e37a49cf5b', '911a8e15eebf4d569f8a8299e5ad99d5', '0e073250b876489a8eefd6b801374b60', '2020-09-07 15:57:36', '2020-09-07 15:57:36', '0'); INSERT INTO `user_role` VALUES ('132bcff1ab1045918fcb65f30e45f3d6', '326f44ea600f516708966fa65a6b91f0', '82773b3e46924b049b0269334cc4ea0e', '2020-08-31 14:35:54', '2020-08-31 14:35:54', '0'); INSERT INTO `user_role` VALUES ('13bb0c1de7d144e9b94daff2f822daba', '911a8e15eebf4d569f8a8299e5ad99d5', '0e073250b876489a8eefd6b801374b60', '2020-08-14 16:02:36', '2020-08-28 10:44:59', '1'); INSERT INTO `user_role` VALUES ('1f76727aa008423ba9fb105124b0a0f8', 'd1411e5c58a70c44d72ca016d1acc183', '8a024a8d53934950ad56c98846ca864b', '2020-09-01 14:25:16', '2020-09-01 15:17:54', '1'); INSERT INTO `user_role` VALUES ('1f7b749c218e4e128e9854405f8bcf5e', '911a8e15eebf4d569f8a8299e5ad99d5', '30f52a03f28399a3147a0dfa5103a750', '2020-09-07 15:57:36', '2020-09-07 15:57:36', '0'); INSERT INTO `user_role` VALUES ('274ef0b7aca445d890117b35761134f8', '911a8e15eebf4d569f8a8299e5ad99d5', '0e073250b876489a8eefd6b801374b60', '2020-08-13 17:04:05', '2020-08-14 15:55:45', '1'); INSERT INTO `user_role` VALUES ('3225cfdc08c3440d960386343a467daa', 'fc354e3dd71711ea9fce00163e002b3a', '82773b3e46924b049b0269334cc4ea0e', '2020-08-11 21:14:59', '2020-08-11 21:14:59', '0'); INSERT INTO `user_role` VALUES ('344020c0d88f462da54f639e57f51fea', 'd1411e5c58a70c44d72ca016d1acc183', '8a024a8d53934950ad56c98846ca864b', '2020-09-01 15:17:54', '2020-09-01 15:18:39', '1'); INSERT INTO `user_role` VALUES ('381fef22f7ff4f4195f22c71d7dfdcb5', '911a8e15eebf4d569f8a8299e5ad99d5', '0e073250b876489a8eefd6b801374b60', '2020-08-28 10:45:32', '2020-09-07 15:57:36', '1'); INSERT INTO `user_role` VALUES ('39bba4a3191545939040bf71a4ce7607', 'fc354e3dd71711ea9fce00163e002b3a', '7314257f98de48588012b2f30ede585a', '2020-08-11 21:14:59', '2020-08-11 21:14:59', '0'); INSERT INTO `user_role` VALUES ('431baa378bba485d81e267863d80e860', '8961e4f21fac43b796c1e0d0a422414', '8a024a8d53934950ad56c98846ca864b', '2020-08-31 21:03:15', '2020-08-31 21:04:47', '1'); INSERT INTO `user_role` VALUES ('5a36c4a99fdf458eaaa42760a5966c34', 'fc354e3dd71711ea9fce00163e002b3a', '27f83817878649cb941b2c4fe71de12e', '2020-08-11 21:14:59', '2020-08-11 21:14:59', '0'); INSERT INTO `user_role` VALUES ('62bcc727c9f547f4aadce8ae46d6f49b', 'fc354e3dd71711ea9fce00163e002b3a', '0e073250b876489a8eefd6b801374b60', '2020-08-11 21:09:56', '2020-08-11 21:14:59', '1'); INSERT INTO `user_role` VALUES ('6ec3c562938341f2a5d505c09bfad9fd', 'c0f597ae8bbd4550b1caa6ac130c02e6', '82773b3e46924b049b0269334cc4ea0e', '2020-09-22 15:40:26', '2020-09-22 16:21:02', '1'); INSERT INTO `user_role` VALUES ('79c67612ab234b348cbcd9b8821a5c9d', '911a8e15eebf4d569f8a8299e5ad99d5', '0e073250b876489a8eefd6b801374b60', '2020-08-28 10:44:59', '2020-08-28 10:45:32', '1'); INSERT INTO `user_role` VALUES ('8a606b2536c5467383e7df04d21760a1', 'd1411e5c58a70c44d72ca016d1acc183', '8a024a8d53934950ad56c98846ca864b', '2020-09-01 15:18:39', '2020-09-01 15:18:39', '0'); INSERT INTO `user_role` VALUES ('8b7d467e58b443438635f54bdb32da57', '326f44ea600f516708966fa65a6b91f0', '82773b3e46924b049b0269334cc4ea0e', '2020-08-31 11:01:12', '2020-08-31 14:35:54', '1'); INSERT INTO `user_role` VALUES ('8c24b8675bcb4d8b8dc2c2f99fefec1b', 'd1411e5c58a70c44d72ca016d1acc183', '8a024a8d53934950ad56c98846ca864b', '2020-09-01 11:07:58', '2020-09-01 11:40:18', '1'); INSERT INTO `user_role` VALUES ('8d5ae4c84c5749068fb39cf700bb90d7', '326f44ea600f516708966fa65a6b91f0', '82773b3e46924b049b0269334cc4ea0e', '2020-08-31 10:55:50', '2020-08-31 11:01:12', '1'); INSERT INTO `user_role` VALUES ('8f97064d81db44bbb5e9ea9bef0ac983', 'fc354e3dd71711ea9fce00163e002b3a', '0e073250b876489a8eefd6b801374b60', '2020-08-11 21:14:59', '2020-08-11 21:14:59', '0'); INSERT INTO `user_role` VALUES ('925865d661c740f386b2bca5d77aaca1', 'fc35495fd71711ea9fce00163e002b3a', '0e073250b876489a8eefd6b801374b60', '2020-08-12 11:40:16', '2020-08-12 11:40:16', '0'); INSERT INTO `user_role` VALUES ('9f443b36f0e24b1abb5fd2dca9b8a345', '911a8e15eebf4d569f8a8299e5ad99d5', '0e073250b876489a8eefd6b801374b60', '2020-08-14 16:57:40', '2020-08-28 10:44:59', '1'); INSERT INTO `user_role` VALUES ('a0c6c162e7cf4da0988231270a4e9ae9', 'd1411e5c58a70c44d72ca016d1acc183', '8a024a8d53934950ad56c98846ca864b', '2020-09-01 11:40:18', '2020-09-01 14:25:16', '1'); INSERT INTO `user_role` VALUES ('a38a79a8104d44ec91621b9ee0fd6cf9', '8961e4f21fac43b796c1e0d0a422414', '8a024a8d53934950ad56c98846ca864b', '2020-08-31 21:04:51', '2020-08-31 21:04:51', '0'); INSERT INTO `user_role` VALUES ('b37794076c284a0c96ecf960c9aba05d', 'c0f597ae8bbd4550b1caa6ac130c02e6', '82773b3e46924b049b0269334cc4ea0e', '2020-09-22 16:24:21', '2020-09-22 16:29:03', '1'); INSERT INTO `user_role` VALUES ('d4f90eb1ecfa480c8d50f6f08f35bfe9', 'fc354e3dd71711ea9fce00163e002b3a', '27f83817878649cb941b2c4fe71de12e', '2020-08-11 21:09:56', '2020-08-11 21:14:59', '1'); INSERT INTO `user_role` VALUES ('dd16dc2f7f0f4a18a331be1c9026328d', '326f44ea600f516708966fa65a6b91f0', '82773b3e46924b049b0269334cc4ea0e', '2020-08-31 10:52:33', '2020-08-31 10:55:50', '1'); INSERT INTO `user_role` VALUES ('e539a761e1a04b57ab2918b07b5e4975', 'fc354e3dd71711ea9fce00163e002b3a', '7314257f98de48588012b2f30ede585a', '2020-08-11 21:09:56', '2020-08-11 21:14:59', '1'); INSERT INTO `user_role` VALUES ('e6e9f64298f644658cb1db72dc20ed5d', '911a8e15eebf4d569f8a8299e5ad99d5', '0e073250b876489a8eefd6b801374b60', '2020-08-14 15:55:45', '2020-08-14 16:02:36', '1'); INSERT INTO `user_role` VALUES ('ffd0fcf7605940b9b24d30134a58c3af', 'c0f597ae8bbd4550b1caa6ac130c02e6', '82773b3e46924b049b0269334cc4ea0e', '2020-09-22 16:29:03', '2020-09-22 16:29:03', '0'); -- ---------------------------- -- View structure for selectattachments -- ---------------------------- DROP VIEW IF EXISTS `selectattachments`; CREATE ALGORITHM = UNDEFINED SQL SECURITY DEFINER VIEW `selectattachments` AS select `attachment_general`.`id` AS `id`, `attachment_general`.`attach_id` AS `attach_id`, `attachment_general`.`attach_name` AS `attach_name`, `attachment_general`.`attach_type` AS `attach_type`, `attachment_general`.`attach_size` AS `attach_size`, `attachment_general`.`attach_path` AS `attach_path`, `attachment_general`.`create_time` AS `create_time`, `attachment_general`.`delflag` AS `delflag` from `attachment_general`; SET FOREIGN_KEY_CHECKS = 1;
71.467588
336
0.744678
9ef8dd84af6a32de4c3ac5494e436cb01364e71c
506
kt
Kotlin
sbp-users/src/main/kotlin/io/github/tiscs/sbp/messaging/UserEventListener.kt
Tiscs/spring-boot-practices
1e5a97f7512a097c75fb4abd509a09e8762cc83e
[ "MIT" ]
null
null
null
sbp-users/src/main/kotlin/io/github/tiscs/sbp/messaging/UserEventListener.kt
Tiscs/spring-boot-practices
1e5a97f7512a097c75fb4abd509a09e8762cc83e
[ "MIT" ]
null
null
null
sbp-users/src/main/kotlin/io/github/tiscs/sbp/messaging/UserEventListener.kt
Tiscs/spring-boot-practices
1e5a97f7512a097c75fb4abd509a09e8762cc83e
[ "MIT" ]
null
null
null
package io.github.tiscs.sbp.messaging import org.slf4j.Logger import org.slf4j.LoggerFactory import org.springframework.amqp.rabbit.annotation.RabbitListener import org.springframework.stereotype.Service @Service class UserEventListener { companion object { val LOGGER: Logger = LoggerFactory.getLogger(UserEventListener::class.java) } @RabbitListener(queues = ["users.events"]) fun handleUserEvent(message: String) { LOGGER.info("Handling user event: $message") } }
26.631579
83
0.752964
3b5d5883635b301cb6aa99b25f44de2bf20bc9a7
1,218
c
C
tests/CompileTests/C_tests/test2015_130.c
sujankh/rose-matlab
7435d4fa1941826c784ba97296c0ec55fa7d7c7e
[ "BSD-3-Clause" ]
1
2016-05-01T03:10:47.000Z
2016-05-01T03:10:47.000Z
tests/CompileTests/C_tests/test2015_130.c
sujankh/rose-matlab
7435d4fa1941826c784ba97296c0ec55fa7d7c7e
[ "BSD-3-Clause" ]
null
null
null
tests/CompileTests/C_tests/test2015_130.c
sujankh/rose-matlab
7435d4fa1941826c784ba97296c0ec55fa7d7c7e
[ "BSD-3-Clause" ]
null
null
null
struct MemoryRegion { int x; }; typedef struct MemoryRegion MemoryRegion; struct AddressSpace { char *name; MemoryRegion *root; }; typedef struct AddressSpace AddressSpace; typedef unsigned long int uint64_t; typedef long int int64_t; typedef uint64_t hwaddr; typedef struct Int128 Int128; struct Int128 { uint64_t lo; int64_t hi; }; struct MemoryRegionSection { MemoryRegion *mr; AddressSpace *address_space; hwaddr offset_within_region; Int128 size; hwaddr offset_within_address_space; }; typedef struct MemoryRegionSection MemoryRegionSection; typedef struct AddrRange AddrRange; struct AddrRange { Int128 start; Int128 size; }; struct MemoryRegionIoeventfd { AddrRange addr; }; typedef struct MemoryRegionIoeventfd MemoryRegionIoeventfd; static __attribute__ (( always_inline )) __inline__ uint64_t int128_get64(Int128 a); static void address_space_add_del_ioeventfds(AddressSpace *as) { MemoryRegionIoeventfd *fd; MemoryRegionSection section; section = (MemoryRegionSection) { .address_space = as, .offset_within_address_space = int128_get64(fd->addr.start), .size = fd->addr.size, }; }
21.75
84
0.731527
bc121625943d000671401defa9524fa6b8f36220
21,367
rs
Rust
aravis/src/auto/gc_property_node.rs
ryancwicks/aravis-rs
350479cb0bde957fa9e107157961777ea8a1a4a3
[ "BSD-2-Clause" ]
10
2019-11-08T21:36:45.000Z
2022-03-23T00:15:55.000Z
aravis/src/auto/gc_property_node.rs
ryancwicks/aravis-rs
350479cb0bde957fa9e107157961777ea8a1a4a3
[ "BSD-2-Clause" ]
9
2020-03-09T18:47:59.000Z
2021-04-15T08:57:33.000Z
aravis/src/auto/gc_property_node.rs
ryancwicks/aravis-rs
350479cb0bde957fa9e107157961777ea8a1a4a3
[ "BSD-2-Clause" ]
3
2020-03-09T21:09:51.000Z
2022-03-21T15:23:56.000Z
// This file was generated by gir (https://github.com/gtk-rs/gir) // from ../gir-files // DO NOT EDIT use crate::DomElement; use crate::DomNode; use crate::GcAccessMode; use crate::GcCachable; use crate::GcDisplayNotation; use crate::GcNode; use crate::GcPropertyNodeType; use crate::GcRepresentation; use crate::GcSignedness; use crate::GcVisibility; use glib::object::Cast; use glib::object::IsA; use glib::translate::*; use std::fmt; use std::ptr; glib::wrapper! { #[doc(alias = "ArvGcPropertyNode")] pub struct GcPropertyNode(Object<ffi::ArvGcPropertyNode, ffi::ArvGcPropertyNodeClass>) @extends GcNode, DomElement, DomNode; match fn { type_ => || ffi::arv_gc_property_node_get_type(), } } impl GcPropertyNode { #[doc(alias = "arv_gc_property_node_new_access_mode")] pub fn new_access_mode() -> GcPropertyNode { assert_initialized_main_thread!(); unsafe { GcNode::from_glib_full(ffi::arv_gc_property_node_new_access_mode()).unsafe_cast() } } #[doc(alias = "arv_gc_property_node_new_address")] pub fn new_address() -> GcPropertyNode { assert_initialized_main_thread!(); unsafe { GcNode::from_glib_full(ffi::arv_gc_property_node_new_address()).unsafe_cast() } } #[doc(alias = "arv_gc_property_node_new_bit")] pub fn new_bit() -> GcPropertyNode { assert_initialized_main_thread!(); unsafe { GcNode::from_glib_full(ffi::arv_gc_property_node_new_bit()).unsafe_cast() } } #[doc(alias = "arv_gc_property_node_new_cachable")] pub fn new_cachable() -> GcPropertyNode { assert_initialized_main_thread!(); unsafe { GcNode::from_glib_full(ffi::arv_gc_property_node_new_cachable()).unsafe_cast() } } #[doc(alias = "arv_gc_property_node_new_chunk_id")] pub fn new_chunk_id() -> GcPropertyNode { assert_initialized_main_thread!(); unsafe { GcNode::from_glib_full(ffi::arv_gc_property_node_new_chunk_id()).unsafe_cast() } } #[doc(alias = "arv_gc_property_node_new_command_value")] pub fn new_command_value() -> GcPropertyNode { assert_initialized_main_thread!(); unsafe { GcNode::from_glib_full(ffi::arv_gc_property_node_new_command_value()).unsafe_cast() } } #[doc(alias = "arv_gc_property_node_new_constant")] pub fn new_constant() -> GcPropertyNode { assert_initialized_main_thread!(); unsafe { GcNode::from_glib_full(ffi::arv_gc_property_node_new_constant()).unsafe_cast() } } #[doc(alias = "arv_gc_property_node_new_description")] pub fn new_description() -> GcPropertyNode { assert_initialized_main_thread!(); unsafe { GcNode::from_glib_full(ffi::arv_gc_property_node_new_description()).unsafe_cast() } } #[doc(alias = "arv_gc_property_node_new_display_name")] pub fn new_display_name() -> GcPropertyNode { assert_initialized_main_thread!(); unsafe { GcNode::from_glib_full(ffi::arv_gc_property_node_new_display_name()).unsafe_cast() } } #[doc(alias = "arv_gc_property_node_new_display_notation")] pub fn new_display_notation() -> GcPropertyNode { assert_initialized_main_thread!(); unsafe { GcNode::from_glib_full(ffi::arv_gc_property_node_new_display_notation()).unsafe_cast() } } #[doc(alias = "arv_gc_property_node_new_display_precision")] pub fn new_display_precision() -> GcPropertyNode { assert_initialized_main_thread!(); unsafe { GcNode::from_glib_full(ffi::arv_gc_property_node_new_display_precision()).unsafe_cast() } } #[doc(alias = "arv_gc_property_node_new_endianness")] pub fn new_endianness() -> GcPropertyNode { assert_initialized_main_thread!(); unsafe { GcNode::from_glib_full(ffi::arv_gc_property_node_new_endianness()).unsafe_cast() } } #[doc(alias = "arv_gc_property_node_new_event_id")] pub fn new_event_id() -> GcPropertyNode { assert_initialized_main_thread!(); unsafe { GcNode::from_glib_full(ffi::arv_gc_property_node_new_event_id()).unsafe_cast() } } #[doc(alias = "arv_gc_property_node_new_expression")] pub fn new_expression() -> GcPropertyNode { assert_initialized_main_thread!(); unsafe { GcNode::from_glib_full(ffi::arv_gc_property_node_new_expression()).unsafe_cast() } } #[doc(alias = "arv_gc_property_node_new_formula")] #[doc(alias = "new_formula")] pub fn formula() -> GcPropertyNode { assert_initialized_main_thread!(); unsafe { GcNode::from_glib_full(ffi::arv_gc_property_node_new_formula()).unsafe_cast() } } #[doc(alias = "arv_gc_property_node_new_formula_from")] #[doc(alias = "new_formula_from")] pub fn formula_from() -> GcPropertyNode { assert_initialized_main_thread!(); unsafe { GcNode::from_glib_full(ffi::arv_gc_property_node_new_formula_from()).unsafe_cast() } } #[doc(alias = "arv_gc_property_node_new_formula_to")] #[doc(alias = "new_formula_to")] pub fn formula_to() -> GcPropertyNode { assert_initialized_main_thread!(); unsafe { GcNode::from_glib_full(ffi::arv_gc_property_node_new_formula_to()).unsafe_cast() } } #[doc(alias = "arv_gc_property_node_new_imposed_access_mode")] pub fn new_imposed_access_mode() -> GcPropertyNode { assert_initialized_main_thread!(); unsafe { GcNode::from_glib_full(ffi::arv_gc_property_node_new_imposed_access_mode()) .unsafe_cast() } } #[doc(alias = "arv_gc_property_node_new_increment")] pub fn new_increment() -> GcPropertyNode { assert_initialized_main_thread!(); unsafe { GcNode::from_glib_full(ffi::arv_gc_property_node_new_increment()).unsafe_cast() } } #[doc(alias = "arv_gc_property_node_new_is_linear")] pub fn new_is_linear() -> GcPropertyNode { assert_initialized_main_thread!(); unsafe { GcNode::from_glib_full(ffi::arv_gc_property_node_new_is_linear()).unsafe_cast() } } #[doc(alias = "arv_gc_property_node_new_length")] pub fn new_length() -> GcPropertyNode { assert_initialized_main_thread!(); unsafe { GcNode::from_glib_full(ffi::arv_gc_property_node_new_length()).unsafe_cast() } } #[doc(alias = "arv_gc_property_node_new_lsb")] pub fn new_lsb() -> GcPropertyNode { assert_initialized_main_thread!(); unsafe { GcNode::from_glib_full(ffi::arv_gc_property_node_new_lsb()).unsafe_cast() } } #[doc(alias = "arv_gc_property_node_new_maximum")] pub fn new_maximum() -> GcPropertyNode { assert_initialized_main_thread!(); unsafe { GcNode::from_glib_full(ffi::arv_gc_property_node_new_maximum()).unsafe_cast() } } #[doc(alias = "arv_gc_property_node_new_minimum")] pub fn new_minimum() -> GcPropertyNode { assert_initialized_main_thread!(); unsafe { GcNode::from_glib_full(ffi::arv_gc_property_node_new_minimum()).unsafe_cast() } } #[doc(alias = "arv_gc_property_node_new_msb")] pub fn new_msb() -> GcPropertyNode { assert_initialized_main_thread!(); unsafe { GcNode::from_glib_full(ffi::arv_gc_property_node_new_msb()).unsafe_cast() } } #[doc(alias = "arv_gc_property_node_new_off_value")] pub fn new_off_value() -> GcPropertyNode { assert_initialized_main_thread!(); unsafe { GcNode::from_glib_full(ffi::arv_gc_property_node_new_off_value()).unsafe_cast() } } #[doc(alias = "arv_gc_property_node_new_on_value")] pub fn new_on_value() -> GcPropertyNode { assert_initialized_main_thread!(); unsafe { GcNode::from_glib_full(ffi::arv_gc_property_node_new_on_value()).unsafe_cast() } } #[doc(alias = "arv_gc_property_node_new_p_address")] pub fn new_p_address() -> GcPropertyNode { assert_initialized_main_thread!(); unsafe { GcNode::from_glib_full(ffi::arv_gc_property_node_new_p_address()).unsafe_cast() } } #[doc(alias = "arv_gc_property_node_new_p_command_value")] pub fn new_p_command_value() -> GcPropertyNode { assert_initialized_main_thread!(); unsafe { GcNode::from_glib_full(ffi::arv_gc_property_node_new_p_command_value()).unsafe_cast() } } #[doc(alias = "arv_gc_property_node_new_p_feature")] pub fn new_p_feature() -> GcPropertyNode { assert_initialized_main_thread!(); unsafe { GcNode::from_glib_full(ffi::arv_gc_property_node_new_p_feature()).unsafe_cast() } } #[doc(alias = "arv_gc_property_node_new_p_increment")] pub fn new_p_increment() -> GcPropertyNode { assert_initialized_main_thread!(); unsafe { GcNode::from_glib_full(ffi::arv_gc_property_node_new_p_increment()).unsafe_cast() } } #[doc(alias = "arv_gc_property_node_new_p_is_available")] pub fn new_p_is_available() -> GcPropertyNode { assert_initialized_main_thread!(); unsafe { GcNode::from_glib_full(ffi::arv_gc_property_node_new_p_is_available()).unsafe_cast() } } #[doc(alias = "arv_gc_property_node_new_p_is_implemented")] pub fn new_p_is_implemented() -> GcPropertyNode { assert_initialized_main_thread!(); unsafe { GcNode::from_glib_full(ffi::arv_gc_property_node_new_p_is_implemented()).unsafe_cast() } } #[doc(alias = "arv_gc_property_node_new_p_is_locked")] pub fn new_p_is_locked() -> GcPropertyNode { assert_initialized_main_thread!(); unsafe { GcNode::from_glib_full(ffi::arv_gc_property_node_new_p_is_locked()).unsafe_cast() } } #[doc(alias = "arv_gc_property_node_new_p_length")] pub fn new_p_length() -> GcPropertyNode { assert_initialized_main_thread!(); unsafe { GcNode::from_glib_full(ffi::arv_gc_property_node_new_p_length()).unsafe_cast() } } #[doc(alias = "arv_gc_property_node_new_p_maximum")] pub fn new_p_maximum() -> GcPropertyNode { assert_initialized_main_thread!(); unsafe { GcNode::from_glib_full(ffi::arv_gc_property_node_new_p_maximum()).unsafe_cast() } } #[doc(alias = "arv_gc_property_node_new_p_minimum")] pub fn new_p_minimum() -> GcPropertyNode { assert_initialized_main_thread!(); unsafe { GcNode::from_glib_full(ffi::arv_gc_property_node_new_p_minimum()).unsafe_cast() } } #[doc(alias = "arv_gc_property_node_new_p_port")] pub fn new_p_port() -> GcPropertyNode { assert_initialized_main_thread!(); unsafe { GcNode::from_glib_full(ffi::arv_gc_property_node_new_p_port()).unsafe_cast() } } #[doc(alias = "arv_gc_property_node_new_p_selected")] pub fn new_p_selected() -> GcPropertyNode { assert_initialized_main_thread!(); unsafe { GcNode::from_glib_full(ffi::arv_gc_property_node_new_p_selected()).unsafe_cast() } } #[doc(alias = "arv_gc_property_node_new_p_value")] pub fn new_p_value() -> GcPropertyNode { assert_initialized_main_thread!(); unsafe { GcNode::from_glib_full(ffi::arv_gc_property_node_new_p_value()).unsafe_cast() } } #[doc(alias = "arv_gc_property_node_new_p_value_default")] pub fn new_p_value_default() -> GcPropertyNode { assert_initialized_main_thread!(); unsafe { GcNode::from_glib_full(ffi::arv_gc_property_node_new_p_value_default()).unsafe_cast() } } #[doc(alias = "arv_gc_property_node_new_p_variable")] pub fn new_p_variable() -> GcPropertyNode { assert_initialized_main_thread!(); unsafe { GcNode::from_glib_full(ffi::arv_gc_property_node_new_p_variable()).unsafe_cast() } } #[doc(alias = "arv_gc_property_node_new_polling_time")] pub fn new_polling_time() -> GcPropertyNode { assert_initialized_main_thread!(); unsafe { GcNode::from_glib_full(ffi::arv_gc_property_node_new_polling_time()).unsafe_cast() } } #[doc(alias = "arv_gc_property_node_new_representation")] pub fn new_representation() -> GcPropertyNode { assert_initialized_main_thread!(); unsafe { GcNode::from_glib_full(ffi::arv_gc_property_node_new_representation()).unsafe_cast() } } #[doc(alias = "arv_gc_property_node_new_sign")] pub fn new_sign() -> GcPropertyNode { assert_initialized_main_thread!(); unsafe { GcNode::from_glib_full(ffi::arv_gc_property_node_new_sign()).unsafe_cast() } } #[doc(alias = "arv_gc_property_node_new_slope")] pub fn new_slope() -> GcPropertyNode { assert_initialized_main_thread!(); unsafe { GcNode::from_glib_full(ffi::arv_gc_property_node_new_slope()).unsafe_cast() } } #[doc(alias = "arv_gc_property_node_new_streamable")] pub fn new_streamable() -> GcPropertyNode { assert_initialized_main_thread!(); unsafe { GcNode::from_glib_full(ffi::arv_gc_property_node_new_streamable()).unsafe_cast() } } #[doc(alias = "arv_gc_property_node_new_tooltip")] pub fn new_tooltip() -> GcPropertyNode { assert_initialized_main_thread!(); unsafe { GcNode::from_glib_full(ffi::arv_gc_property_node_new_tooltip()).unsafe_cast() } } #[doc(alias = "arv_gc_property_node_new_unit")] pub fn new_unit() -> GcPropertyNode { assert_initialized_main_thread!(); unsafe { GcNode::from_glib_full(ffi::arv_gc_property_node_new_unit()).unsafe_cast() } } #[doc(alias = "arv_gc_property_node_new_value")] pub fn new_value() -> GcPropertyNode { assert_initialized_main_thread!(); unsafe { GcNode::from_glib_full(ffi::arv_gc_property_node_new_value()).unsafe_cast() } } #[doc(alias = "arv_gc_property_node_new_value_default")] pub fn new_value_default() -> GcPropertyNode { assert_initialized_main_thread!(); unsafe { GcNode::from_glib_full(ffi::arv_gc_property_node_new_value_default()).unsafe_cast() } } #[doc(alias = "arv_gc_property_node_new_visibility")] pub fn new_visibility() -> GcPropertyNode { assert_initialized_main_thread!(); unsafe { GcNode::from_glib_full(ffi::arv_gc_property_node_new_visibility()).unsafe_cast() } } } unsafe impl Send for GcPropertyNode {} pub const NONE_GC_PROPERTY_NODE: Option<&GcPropertyNode> = None; /// Trait containing all [`struct@GcPropertyNode`] methods. /// /// # Implementors /// /// [`GcIndexNode`][struct@crate::GcIndexNode], [`GcInvalidatorNode`][struct@crate::GcInvalidatorNode], [`GcPropertyNode`][struct@crate::GcPropertyNode], [`GcValueIndexedNode`][struct@crate::GcValueIndexedNode] pub trait GcPropertyNodeExt: 'static { #[doc(alias = "arv_gc_property_node_get_access_mode")] #[doc(alias = "get_access_mode")] fn access_mode(&self, default_value: GcAccessMode) -> GcAccessMode; #[doc(alias = "arv_gc_property_node_get_cachable")] #[doc(alias = "get_cachable")] fn cachable(&self, default_value: GcCachable) -> GcCachable; #[doc(alias = "arv_gc_property_node_get_display_notation")] #[doc(alias = "get_display_notation")] fn display_notation(&self, default_value: GcDisplayNotation) -> GcDisplayNotation; #[doc(alias = "arv_gc_property_node_get_display_precision")] #[doc(alias = "get_display_precision")] fn display_precision(&self, default_value: i64) -> i64; #[doc(alias = "arv_gc_property_node_get_double")] #[doc(alias = "get_double")] fn double(&self) -> Result<f64, glib::Error>; #[doc(alias = "arv_gc_property_node_get_endianness")] #[doc(alias = "get_endianness")] fn endianness(&self, default_value: u32) -> u32; #[doc(alias = "arv_gc_property_node_get_int64")] #[doc(alias = "get_int64")] fn int64(&self) -> Result<i64, glib::Error>; /// /// # Returns /// /// the [`GcNode`][crate::GcNode] which `self` points to, [`None`] if the property is not a pointer. #[doc(alias = "arv_gc_property_node_get_linked_node")] #[doc(alias = "get_linked_node")] fn linked_node(&self) -> Option<GcNode>; #[doc(alias = "arv_gc_property_node_get_lsb")] #[doc(alias = "get_lsb")] fn lsb(&self, default_value: u32) -> u32; #[doc(alias = "arv_gc_property_node_get_msb")] #[doc(alias = "get_msb")] fn msb(&self, default_value: u32) -> u32; /// /// # Returns /// /// node Name property value. #[doc(alias = "arv_gc_property_node_get_name")] #[doc(alias = "get_name")] fn name(&self) -> Option<glib::GString>; #[doc(alias = "arv_gc_property_node_get_node_type")] #[doc(alias = "get_node_type")] fn node_type(&self) -> GcPropertyNodeType; #[doc(alias = "arv_gc_property_node_get_representation")] #[doc(alias = "get_representation")] fn representation(&self, default_value: GcRepresentation) -> GcRepresentation; #[doc(alias = "arv_gc_property_node_get_sign")] #[doc(alias = "get_sign")] fn sign(&self, default_value: GcSignedness) -> GcSignedness; //#[cfg(any(feature = "v0_8_8", feature = "dox"))] //#[cfg_attr(feature = "dox", doc(cfg(feature = "v0_8_8")))] //#[doc(alias = "arv_gc_property_node_get_streamable")] //#[doc(alias = "get_streamable")] //fn streamable(&self, default_value: /*Ignored*/GcStreamable) -> /*Ignored*/GcStreamable; #[doc(alias = "arv_gc_property_node_get_string")] #[doc(alias = "get_string")] fn string(&self) -> Result<glib::GString, glib::Error>; #[doc(alias = "arv_gc_property_node_get_visibility")] #[doc(alias = "get_visibility")] fn visibility(&self, default_value: GcVisibility) -> GcVisibility; #[doc(alias = "arv_gc_property_node_set_double")] fn set_double(&self, v_double: f64) -> Result<(), glib::Error>; #[doc(alias = "arv_gc_property_node_set_int64")] fn set_int64(&self, v_int64: i64) -> Result<(), glib::Error>; #[doc(alias = "arv_gc_property_node_set_string")] fn set_string(&self, string: &str) -> Result<(), glib::Error>; } impl<O: IsA<GcPropertyNode>> GcPropertyNodeExt for O { fn access_mode(&self, default_value: GcAccessMode) -> GcAccessMode { unsafe { from_glib(ffi::arv_gc_property_node_get_access_mode( self.as_ref().to_glib_none().0, default_value.into_glib(), )) } } fn cachable(&self, default_value: GcCachable) -> GcCachable { unsafe { from_glib(ffi::arv_gc_property_node_get_cachable( self.as_ref().to_glib_none().0, default_value.into_glib(), )) } } fn display_notation(&self, default_value: GcDisplayNotation) -> GcDisplayNotation { unsafe { from_glib(ffi::arv_gc_property_node_get_display_notation( self.as_ref().to_glib_none().0, default_value.into_glib(), )) } } fn display_precision(&self, default_value: i64) -> i64 { unsafe { ffi::arv_gc_property_node_get_display_precision( self.as_ref().to_glib_none().0, default_value, ) } } fn double(&self) -> Result<f64, glib::Error> { unsafe { let mut error = ptr::null_mut(); let ret = ffi::arv_gc_property_node_get_double(self.as_ref().to_glib_none().0, &mut error); if error.is_null() { Ok(ret) } else { Err(from_glib_full(error)) } } } fn endianness(&self, default_value: u32) -> u32 { unsafe { ffi::arv_gc_property_node_get_endianness(self.as_ref().to_glib_none().0, default_value) } } fn int64(&self) -> Result<i64, glib::Error> { unsafe { let mut error = ptr::null_mut(); let ret = ffi::arv_gc_property_node_get_int64(self.as_ref().to_glib_none().0, &mut error); if error.is_null() { Ok(ret) } else { Err(from_glib_full(error)) } } } fn linked_node(&self) -> Option<GcNode> { unsafe { from_glib_none(ffi::arv_gc_property_node_get_linked_node( self.as_ref().to_glib_none().0, )) } } fn lsb(&self, default_value: u32) -> u32 { unsafe { ffi::arv_gc_property_node_get_lsb(self.as_ref().to_glib_none().0, default_value) } } fn msb(&self, default_value: u32) -> u32 { unsafe { ffi::arv_gc_property_node_get_msb(self.as_ref().to_glib_none().0, default_value) } } fn name(&self) -> Option<glib::GString> { unsafe { from_glib_none(ffi::arv_gc_property_node_get_name( self.as_ref().to_glib_none().0, )) } } fn node_type(&self) -> GcPropertyNodeType { unsafe { from_glib(ffi::arv_gc_property_node_get_node_type( self.as_ref().to_glib_none().0, )) } } fn representation(&self, default_value: GcRepresentation) -> GcRepresentation { unsafe { from_glib(ffi::arv_gc_property_node_get_representation( self.as_ref().to_glib_none().0, default_value.into_glib(), )) } } fn sign(&self, default_value: GcSignedness) -> GcSignedness { unsafe { from_glib(ffi::arv_gc_property_node_get_sign( self.as_ref().to_glib_none().0, default_value.into_glib(), )) } } //#[cfg(any(feature = "v0_8_8", feature = "dox"))] //#[cfg_attr(feature = "dox", doc(cfg(feature = "v0_8_8")))] //fn streamable(&self, default_value: /*Ignored*/GcStreamable) -> /*Ignored*/GcStreamable { // unsafe { TODO: call ffi:arv_gc_property_node_get_streamable() } //} fn string(&self) -> Result<glib::GString, glib::Error> { unsafe { let mut error = ptr::null_mut(); let ret = ffi::arv_gc_property_node_get_string(self.as_ref().to_glib_none().0, &mut error); if error.is_null() { Ok(from_glib_none(ret)) } else { Err(from_glib_full(error)) } } } fn visibility(&self, default_value: GcVisibility) -> GcVisibility { unsafe { from_glib(ffi::arv_gc_property_node_get_visibility( self.as_ref().to_glib_none().0, default_value.into_glib(), )) } } fn set_double(&self, v_double: f64) -> Result<(), glib::Error> { unsafe { let mut error = ptr::null_mut(); let _ = ffi::arv_gc_property_node_set_double( self.as_ref().to_glib_none().0, v_double, &mut error, ); if error.is_null() { Ok(()) } else { Err(from_glib_full(error)) } } } fn set_int64(&self, v_int64: i64) -> Result<(), glib::Error> { unsafe { let mut error = ptr::null_mut(); let _ = ffi::arv_gc_property_node_set_int64( self.as_ref().to_glib_none().0, v_int64, &mut error, ); if error.is_null() { Ok(()) } else { Err(from_glib_full(error)) } } } fn set_string(&self, string: &str) -> Result<(), glib::Error> { unsafe { let mut error = ptr::null_mut(); let _ = ffi::arv_gc_property_node_set_string( self.as_ref().to_glib_none().0, string.to_glib_none().0, &mut error, ); if error.is_null() { Ok(()) } else { Err(from_glib_full(error)) } } } } impl fmt::Display for GcPropertyNode { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { f.write_str("GcPropertyNode") } }
31.748886
210
0.728694
2649cf21c2d74b1c80170482bf1558d6db65d8cf
1,312
java
Java
app/src/main/java/com/pointhouse/chiguan/common/LoadingAlertDialog.java
QinYZ1996/pointhouse
9d04715cdb699c53680ee9db8878932ddf3a32f0
[ "Apache-2.0" ]
null
null
null
app/src/main/java/com/pointhouse/chiguan/common/LoadingAlertDialog.java
QinYZ1996/pointhouse
9d04715cdb699c53680ee9db8878932ddf3a32f0
[ "Apache-2.0" ]
null
null
null
app/src/main/java/com/pointhouse/chiguan/common/LoadingAlertDialog.java
QinYZ1996/pointhouse
9d04715cdb699c53680ee9db8878932ddf3a32f0
[ "Apache-2.0" ]
null
null
null
package com.pointhouse.chiguan.common; import android.app.AlertDialog; import android.content.Context; import android.os.Bundle; import android.widget.ProgressBar; import android.widget.TextView; import com.pointhouse.chiguan.R; /** * Created by P on 2017/8/10. */ public class LoadingAlertDialog extends AlertDialog { private Context mContext; private ProgressBar mBar; private TextView mMessage; public LoadingAlertDialog(Context context) { super(context, R.style.LoadDialog); mContext = context; } @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.dialog_loading); //点击imageview外侧区域,动画不会消失 setCanceledOnTouchOutside(false); mBar = (ProgressBar) findViewById(R.id.bar); mMessage = (TextView) findViewById(R.id.message); } public void show(String msg) { super.show(); if (mMessage != null) { mMessage.setText(msg); } } //设置进度图片 public void setIndeterminateDrawable(int drawable) { mBar.setIndeterminateDrawable(mContext.getResources().getDrawable(drawable)); } //设置字体颜色 public void setTextColor(int color) { mMessage.setTextColor(color); } }
23.017544
85
0.678354
892cdf30c006c4cf8192358f98dbee828c686c4c
497
asm
Assembly
programs/oeis/175/A175608.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
22
2018-02-06T19:19:31.000Z
2022-01-17T21:53:31.000Z
programs/oeis/175/A175608.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
41
2021-02-22T19:00:34.000Z
2021-08-28T10:47:47.000Z
programs/oeis/175/A175608.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
5
2021-02-24T21:14:16.000Z
2021-08-09T19:48:05.000Z
; A175608: Characteristic function of squarefree triangular integers: 1 if n(n+1)/2 is squarefree else 0. ; 1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,1,1,0,0,1,1,0,0,1,1,1,0,0,1,0,0,0,0,1,1,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,0,0,1,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0 mov $2,$0 bin $2,2 add $2,$0 add $0,$2 seq $0,8683 ; Möbius (or Moebius) function mu(n). mu(1) = 1; mu(n) = (-1)^k if n is the product of k different primes; otherwise mu(n) = 0. pow $0,2
49.7
201
0.597586
64f52383fb3e76b961be7e482b80946b130a44ff
12,596
java
Java
dataverse-webapp/src/main/java/edu/harvard/iq/dataverse/datafile/FileDownloadServiceBean.java
chopeen/dataverse
6c1bd6add829e25c336cee7d97702aab9994a7fc
[ "Apache-2.0" ]
null
null
null
dataverse-webapp/src/main/java/edu/harvard/iq/dataverse/datafile/FileDownloadServiceBean.java
chopeen/dataverse
6c1bd6add829e25c336cee7d97702aab9994a7fc
[ "Apache-2.0" ]
null
null
null
dataverse-webapp/src/main/java/edu/harvard/iq/dataverse/datafile/FileDownloadServiceBean.java
chopeen/dataverse
6c1bd6add829e25c336cee7d97702aab9994a7fc
[ "Apache-2.0" ]
null
null
null
package edu.harvard.iq.dataverse.datafile; import edu.harvard.iq.dataverse.DataFileServiceBean; import edu.harvard.iq.dataverse.DataverseRequestServiceBean; import edu.harvard.iq.dataverse.DataverseSession; import edu.harvard.iq.dataverse.EjbDataverseEngine; import edu.harvard.iq.dataverse.authorization.AuthenticationServiceBean; import edu.harvard.iq.dataverse.datasetutility.WorldMapPermissionHelper; import edu.harvard.iq.dataverse.engine.command.exception.CommandException; import edu.harvard.iq.dataverse.engine.command.impl.CreateGuestbookResponseCommand; import edu.harvard.iq.dataverse.externaltools.ExternalToolHandler; import edu.harvard.iq.dataverse.persistence.GlobalId; import edu.harvard.iq.dataverse.persistence.datafile.DataFile; import edu.harvard.iq.dataverse.persistence.datafile.ExternalTool; import edu.harvard.iq.dataverse.persistence.datafile.FileMetadata; import edu.harvard.iq.dataverse.persistence.dataset.DataCitation; import edu.harvard.iq.dataverse.persistence.dataset.Dataset; import edu.harvard.iq.dataverse.persistence.guestbook.GuestbookResponse; import edu.harvard.iq.dataverse.persistence.user.ApiToken; import edu.harvard.iq.dataverse.persistence.user.AuthenticatedUser; import edu.harvard.iq.dataverse.persistence.user.User; import edu.harvard.iq.dataverse.util.FileUtil; import edu.harvard.iq.dataverse.util.FileUtil.ApiBatchDownloadType; import edu.harvard.iq.dataverse.util.FileUtil.ApiDownloadType; import org.primefaces.PrimeFaces; import javax.ejb.EJB; import javax.ejb.Stateless; import javax.faces.context.FacesContext; import javax.inject.Inject; import javax.inject.Named; import javax.servlet.ServletOutputStream; import javax.servlet.http.HttpServletResponse; import java.io.IOException; import java.util.List; import java.util.logging.Logger; /** * @author skraffmi * Handles All File Download processes * including Guestbook responses */ @Stateless @Named("fileDownloadService") public class FileDownloadServiceBean implements java.io.Serializable { @EJB DataFileServiceBean datafileService; @EJB AuthenticationServiceBean authService; @EJB ExternalToolHandler externalToolHandler; @Inject DataverseSession session; @EJB EjbDataverseEngine commandEngine; @Inject DataverseRequestServiceBean dvRequestService; @Inject WorldMapPermissionHelper worldMapPermissionHelper; private static final Logger logger = Logger.getLogger(FileDownloadServiceBean.class.getCanonicalName()); public void writeGuestbookResponseRecord(GuestbookResponse guestbookResponse) { try { CreateGuestbookResponseCommand cmd = new CreateGuestbookResponseCommand(dvRequestService.getDataverseRequest(), guestbookResponse, guestbookResponse.getDataset()); commandEngine.submit(cmd); } catch (CommandException e) { //if an error occurs here then download won't happen no need for response recs... } } // The "guestBookRecord(s)AlreadyWritten" parameter in the 2 methods // below (redirectToBatchDownloadAPI() and redirectToDownloadAPI(), for the // multiple- and single-file downloads respectively) are passed to the // Download API, where it is treated as a "SKIP writing the GuestbookResponse // record for this download on the API side" flag. In other words, we want // to create and save this record *either* on the UI, or the API side - but // not both. // As of now (Aug. 2018) we always set this flag to true when redirecting the // user to the Access API. That's because we have either just created the // record ourselves, on the UI side; or we have skipped creating one, // because this was a draft file and we don't want to count the download. // But either way, it is NEVER the API side's job to count the download that // was initiated in the GUI. // But note that this may change - there may be some future situations where it will // become necessary again, to pass the job of creating the access record // to the API. public void redirectToBatchDownloadAPI(List<Long> fileIds, boolean guestbookRecordsAlreadyWritten, ApiBatchDownloadType downloadType) { String filesDownloadUrl = FileUtil.getBatchFilesDownloadUrlPath(fileIds, guestbookRecordsAlreadyWritten, downloadType); try { FacesContext.getCurrentInstance().getExternalContext().redirect(filesDownloadUrl); } catch (IOException ex) { logger.info("Failed to issue a redirect to file download url."); } } public void redirectToDownloadAPI(ApiDownloadType downloadType, Long fileId, boolean guestBookRecordAlreadyWritten) { String fileDownloadUrl = FileUtil.getFileDownloadUrlPath(downloadType, fileId, guestBookRecordAlreadyWritten); logger.fine("Redirecting to file download url: " + fileDownloadUrl); try { FacesContext.getCurrentInstance().getExternalContext().redirect(fileDownloadUrl); } catch (IOException ex) { logger.info("Failed to issue a redirect to file download url (" + fileDownloadUrl + "): " + ex); } } /** * Launch an "explore" tool which is a type of ExternalTool such as * TwoRavens or Data Explorer. This method may be invoked directly from the * xhtml if no popup is required (no terms of use, no guestbook, etc.). */ public void explore(FileMetadata fmd, ExternalTool externalTool) { ApiToken apiToken = null; User user = session.getUser(); if (user instanceof AuthenticatedUser) { AuthenticatedUser authenticatedUser = (AuthenticatedUser) user; apiToken = authService.findApiTokenByUser(authenticatedUser); } DataFile dataFile = fmd.getDataFile(); //For tools to get the dataset and datasetversion ids, we need a full DataFile object (not a findCheapAndEasy() copy) if (dataFile.getFileMetadata() == null) { dataFile = datafileService.find(dataFile.getId()); } // Back when we only had TwoRavens, the downloadType was always "Explore". Now we persist the name of the tool (i.e. "TwoRavens", "Data Explorer", etc.) String toolUrl = externalToolHandler.buildToolUrlWithQueryParams(externalTool, dataFile, apiToken); logger.fine("Exploring with " + toolUrl); PrimeFaces.current().executeScript("window.open('" + toolUrl + "', target='_blank');"); } public String startWorldMapDownloadLink(FileMetadata fileMetadata) { DataFile file = fileMetadata.getDataFile(); String retVal = worldMapPermissionHelper.getMapLayerMetadata(file).getLayerLink(); try { FacesContext.getCurrentInstance().getExternalContext().redirect(retVal); return retVal; } catch (IOException ex) { logger.info("Failed to issue a redirect to file download url."); } return retVal; } public void downloadDatasetCitationXML(Dataset dataset) { downloadCitationXML(null, dataset, false); } public void downloadDatafileCitationXML(FileMetadata fileMetadata) { downloadCitationXML(fileMetadata, null, false); } public void downloadDirectDatafileCitationXML(FileMetadata fileMetadata) { downloadCitationXML(fileMetadata, null, true); } public void downloadCitationXML(FileMetadata fileMetadata, Dataset dataset, boolean direct) { DataCitation citation = null; if (dataset != null) { citation = new DataCitation(dataset.getLatestVersion()); } else { citation = new DataCitation(fileMetadata, direct); } FacesContext ctx = FacesContext.getCurrentInstance(); HttpServletResponse response = (HttpServletResponse) ctx.getExternalContext().getResponse(); response.setContentType("text/xml"); String fileNameString; if (fileMetadata == null || fileMetadata.getLabel() == null) { // Dataset-level citation: fileNameString = "attachment;filename=" + getFileNameFromPid(citation.getPersistentId()) + ".xml"; } else { // Datafile-level citation: fileNameString = "attachment;filename=" + getFileNameFromPid(citation.getPersistentId()) + "-" + FileUtil.getCiteDataFileFilename(citation.getFileTitle(), FileUtil.FileCitationExtension.ENDNOTE); } response.setHeader("Content-Disposition", fileNameString); try { ServletOutputStream out = response.getOutputStream(); citation.writeAsEndNoteCitation(out); out.flush(); ctx.responseComplete(); } catch (IOException e) { } } public void downloadDatasetCitationRIS(Dataset dataset) { downloadCitationRIS(null, dataset, false); } public void downloadDatafileCitationRIS(FileMetadata fileMetadata) { downloadCitationRIS(fileMetadata, null, false); } public void downloadDirectDatafileCitationRIS(FileMetadata fileMetadata) { downloadCitationRIS(fileMetadata, null, true); } public void downloadCitationRIS(FileMetadata fileMetadata, Dataset dataset, boolean direct) { DataCitation citation = null; if (dataset != null) { citation = new DataCitation(dataset.getLatestVersion()); } else { citation = new DataCitation(fileMetadata, direct); } FacesContext ctx = FacesContext.getCurrentInstance(); HttpServletResponse response = (HttpServletResponse) ctx.getExternalContext().getResponse(); response.setContentType("application/download"); String fileNameString; if (fileMetadata == null || fileMetadata.getLabel() == null) { // Dataset-level citation: fileNameString = "attachment;filename=" + getFileNameFromPid(citation.getPersistentId()) + ".ris"; } else { // Datafile-level citation: fileNameString = "attachment;filename=" + getFileNameFromPid(citation.getPersistentId()) + "-" + FileUtil.getCiteDataFileFilename(citation.getFileTitle(), FileUtil.FileCitationExtension.RIS); } response.setHeader("Content-Disposition", fileNameString); try { ServletOutputStream out = response.getOutputStream(); citation.writeAsRISCitation(out); out.flush(); ctx.responseComplete(); } catch (IOException e) { } } private String getFileNameFromPid(GlobalId id) { return id.asString(); } public void downloadDatasetCitationBibtex(Dataset dataset) { downloadCitationBibtex(null, dataset, false); } public void downloadDatafileCitationBibtex(FileMetadata fileMetadata) { downloadCitationBibtex(fileMetadata, null, false); } public void downloadDirectDatafileCitationBibtex(FileMetadata fileMetadata) { downloadCitationBibtex(fileMetadata, null, true); } public void downloadCitationBibtex(FileMetadata fileMetadata, Dataset dataset, boolean direct) { DataCitation citation = null; if (dataset != null) { citation = new DataCitation(dataset.getLatestVersion()); } else { citation = new DataCitation(fileMetadata, direct); } //SEK 12/3/2018 changing this to open the json in a new tab. FacesContext ctx = FacesContext.getCurrentInstance(); HttpServletResponse response = (HttpServletResponse) ctx.getExternalContext().getResponse(); // FIXME: BibTeX isn't JSON. Firefox will try to parse it and report "SyntaxError". response.setContentType("application/json"); String fileNameString; if (fileMetadata == null || fileMetadata.getLabel() == null) { // Dataset-level citation: fileNameString = "inline;filename=" + getFileNameFromPid(citation.getPersistentId()) + ".bib"; } else { // Datafile-level citation: fileNameString = "inline;filename=" + getFileNameFromPid(citation.getPersistentId()) + "-" + FileUtil.getCiteDataFileFilename(citation.getFileTitle(), FileUtil.FileCitationExtension.BIBTEX); } response.setHeader("Content-Disposition", fileNameString); try { ServletOutputStream out = response.getOutputStream(); citation.writeAsBibtexCitation(out); out.flush(); ctx.responseComplete(); } catch (IOException e) { } } }
42.989761
207
0.703398
f8fc51b0ce25828f2d240d75c1c06cfe6c2caca9
638
asm
Assembly
oeis/080/A080925.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/080/A080925.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/080/A080925.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A080925: Binomial transform of Jacobsthal gap sequence (A080924). ; 0,1,5,13,41,121,365,1093,3281,9841,29525,88573,265721,797161,2391485,7174453,21523361,64570081,193710245,581130733,1743392201,5230176601,15690529805,47071589413,141214768241,423644304721,1270932914165,3812798742493,11438396227481,34315188682441,102945566047325,308836698141973,926510094425921,2779530283277761,8338590849833285,25015772549499853,75047317648499561,225141952945498681,675425858836496045,2026277576509488133,6078832729528464401,18236498188585393201,54709494565756179605 mov $1,1 lpb $0 add $1,2 pow $1,$0 sub $0,1 mod $0,2 lpe div $1,2 mov $0,$1
49.076923
484
0.840125
5305e1d8c38dd45451502175f63a1351c681a72b
1,925
sql
SQL
src/lib/database/beatmap_db.sql
tomtix/osux-lib
5262fd3a3251871783d5ee38dc343afcd1075e5b
[ "Apache-2.0" ]
4
2016-09-19T08:06:48.000Z
2016-12-02T17:12:50.000Z
src/lib/database/beatmap_db.sql
tomtix/osux
cf87171ffca9513c3a05e2156618b20cea4aef98
[ "Apache-2.0" ]
null
null
null
src/lib/database/beatmap_db.sql
tomtix/osux
cf87171ffca9513c3a05e2156618b20cea4aef98
[ "Apache-2.0" ]
null
null
null
DROP TABLE IF EXISTS beatmap_set; DROP TABLE IF EXISTS beatmap; CREATE TABLE beatmap_set ( -- do not replace integer by int for primary key !! beatmap_set_id integer PRIMARY KEY NOT NULL, osu_beatmap_set_id int, creator text, artist text, artist_unicode text, title text, title_unicode text, display_font text, tags text, source text, directory text, status int ); CREATE TABLE beatmap ( -- do not replace integer by int for primary key !! beatmap_id integer PRIMARY KEY NOT NULL, osu_beatmap_id int, osu_forum_thrd int, beatmap_set_id int, game_mode int, audio_filename text, diff_name text, md5_hash text UNIQUE, osu_filename text, file_path text, circles int, sliders int, spinners int, last_modification text, last_checked text, approach_rate real, circle_size real, hp_drain real, overall_diff real, slider_velocity real, stack_leniency real, drain_time int, total_time int, preview_time int, bpm_avg int, bpm_max int, bpm_min int, local_offset int, online_offset int, already_played int, last_played text, ignore_hitsound int, ignore_skin int, disable_sb int, disable_video int, visual_override int, mania_scroll_speed int, FOREIGN KEY(beatmap_set_id) REFERENCES beatmap_set(beatmap_set_id) );
26.369863
76
0.508571
9a1440208847dbeddb389b7956346aca709ac504
155
sql
SQL
revert/functions/get_last_stream_message.sql
josephchoe/database-message-store
f19d647c0d42571d163b530005a607f9ae957388
[ "MIT" ]
null
null
null
revert/functions/get_last_stream_message.sql
josephchoe/database-message-store
f19d647c0d42571d163b530005a607f9ae957388
[ "MIT" ]
null
null
null
revert/functions/get_last_stream_message.sql
josephchoe/database-message-store
f19d647c0d42571d163b530005a607f9ae957388
[ "MIT" ]
1
2021-06-30T23:49:52.000Z
2021-06-30T23:49:52.000Z
-- Revert database-message-store:functions/get_last_stream_message from pg BEGIN; DROP FUNCTION message_store.get_last_stream_message(varchar); COMMIT;
19.375
74
0.83871
a1279542143d26b32b4beb4b5f5e68d95e5670d9
151
swift
Swift
Pods/SlackWebAPIKit/SlackWebAPIKit/Classes/Data/APIClient/Endpoints/ChannelsListEndpoint.swift
MoralAlberto/Send-It-for-Slack
a5ad6d299d050ef118a8783f238e0093e3726700
[ "MIT" ]
42
2017-10-14T07:28:37.000Z
2021-12-01T03:31:06.000Z
Pods/SlackWebAPIKit/SlackWebAPIKit/Classes/Data/APIClient/Endpoints/ChannelsListEndpoint.swift
MoralAlberto/Send-It-for-Slack
a5ad6d299d050ef118a8783f238e0093e3726700
[ "MIT" ]
2
2017-11-28T01:23:17.000Z
2019-04-27T07:44:05.000Z
Pods/SlackWebAPIKit/SlackWebAPIKit/Classes/Data/APIClient/Endpoints/ChannelsListEndpoint.swift
MoralAlberto/Send-It-for-Slack
a5ad6d299d050ef118a8783f238e0093e3726700
[ "MIT" ]
4
2017-10-23T09:08:36.000Z
2019-08-06T06:13:20.000Z
public class ChannelsListEndpoint: Endpoint { public var endpointType: EndpointType = .channelsList public var parameters: [String: String]? }
30.2
57
0.761589
1085e148fc7802bb2dcbdb87ede59ba1ca4e00ca
553
asm
Assembly
header/002/generic_v1.asm
freem/nes_corelib
a890aa3c436e931a765866265f24ccf3c432f71d
[ "0BSD" ]
16
2015-06-23T03:17:40.000Z
2021-10-05T23:40:28.000Z
nes_corelib/header/002/generic_v1.asm
master-g/childhood
7cd2a6a13f7e862df6d239e78371df6222b30a53
[ "Apache-2.0" ]
null
null
null
nes_corelib/header/002/generic_v1.asm
master-g/childhood
7cd2a6a13f7e862df6d239e78371df6222b30a53
[ "Apache-2.0" ]
3
2015-11-12T01:29:55.000Z
2020-07-06T05:15:06.000Z
; Generic UxROM template (iNES) ; This template does not impose a specific "U*ROM" board layout. ;------------------------------------------------------------------------------; ; number of 16K PRG-ROM banks PRG_BANKS = $08 ; UOROM mirroring is hardwired via solder pads. ; %0000 = Horizontal ; %0001 = Vertical MIRRORING = %0001 ; Mapper 002 (UOROM) iNES header .byte "NES",$1A .byte PRG_BANKS ; 16K PRG banks .byte $00 ; CHR-RAM .byte $20|MIRRORING ; flags 6 .byte $00 ; flags 7 .byte $00 ; no PRG RAM .dsb 7, $00 ; clear the remaining bytes
27.65
80
0.59132
1957346f6ba642d0a80b7b2102471fa65545501b
57
sql
SQL
make/migrations/postgresql/0002_update_v_length_properties.up.sql
estaleiro/harbor
fa02521fecb509a41d05bc6fc7e249ed743e1981
[ "Apache-2.0" ]
1
2019-06-23T21:13:57.000Z
2019-06-23T21:13:57.000Z
make/migrations/postgresql/0002_update_v_length_properties.up.sql
vpc123/harbor
64d83101f5aec82863c1705d4b0202e1a8e43f69
[ "Apache-2.0" ]
null
null
null
make/migrations/postgresql/0002_update_v_length_properties.up.sql
vpc123/harbor
64d83101f5aec82863c1705d4b0202e1a8e43f69
[ "Apache-2.0" ]
2
2019-02-19T09:44:17.000Z
2019-12-17T14:31:22.000Z
ALTER TABLE properties ALTER COLUMN v TYPE varchar(1024);
57
57
0.824561