max_stars_count
int64
301
224k
text
stringlengths
6
1.05M
token_count
int64
3
727k
303
<gh_stars>100-1000 /* Copyright (C) 2005-2011 <NAME> */ package com.lightcrafts.ui.rotate; import javax.swing.*; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.awt.*; import static com.lightcrafts.ui.rotate.Locale.LOCALE; import com.lightcrafts.ui.toolkit.CoolButton; class ResetButton extends CoolButton implements ActionListener { private RotorControl control; ResetButton(RotorControl control) { setText(LOCALE.get("ResetButton")); this.control = control; addActionListener(this); setToolTipText(LOCALE.get("ResetToolTip")); // Shave off some of the width padded around the button text by the L&F. Dimension size = getPreferredSize(); size.width -= 22; setMinimumSize(size); setPreferredSize(size); setMaximumSize(size); } public void actionPerformed(ActionEvent event) { control.setAngleInternal(0); control.notifyListenersReset(); } public static void main(String[] args) { JPanel panel = new JPanel(new FlowLayout()); panel.add(new ResetButton(null)); JFrame frame = new JFrame(); frame.setContentPane(panel); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); frame.setBounds(100, 100, 400, 400); frame.setVisible(true); } }
537
852
<reponame>ckamtsikis/cmssw #ifndef SimCalorimetry_HGCSimProducers_hgcdigitizerbase #define SimCalorimetry_HGCSimProducers_hgcdigitizerbase #include <array> #include <iostream> #include <vector> #include <memory> #include <unordered_map> #include <unordered_set> #include "DataFormats/HGCDigi/interface/HGCDigiCollections.h" #include "FWCore/Utilities/interface/EDMException.h" #include "FWCore/ParameterSet/interface/ParameterSet.h" #include "FWCore/Framework/interface/ConsumesCollector.h" #include "SimCalorimetry/HGCalSimProducers/interface/HGCDigitizerTypes.h" #include "SimCalorimetry/HGCalSimProducers/interface/HGCFEElectronics.h" #include "Geometry/CaloGeometry/interface/CaloSubdetectorGeometry.h" #include "Geometry/HGCalGeometry/interface/HGCalGeometry.h" #include "Geometry/HcalTowerAlgo/interface/HcalGeometry.h" #include "SimCalorimetry/HGCalSimAlgos/interface/HGCalSiNoiseMap.h" namespace hgc = hgc_digi; namespace hgc_digi_utils { using hgc::HGCCellInfo; inline void addCellMetadata(HGCCellInfo& info, const HGCalGeometry* geom, const DetId& detid) { const auto& dddConst = geom->topology().dddConstants(); bool isHalf = (((dddConst.geomMode() == HGCalGeometryMode::Hexagon) || (dddConst.geomMode() == HGCalGeometryMode::HexagonFull)) ? dddConst.isHalfCell(HGCalDetId(detid).wafer(), HGCalDetId(detid).cell()) : false); //base time samples for each DetId, initialized to 0 info.size = (isHalf ? 0.5 : 1.0); info.thickness = 1 + dddConst.waferType(detid); } inline void addCellMetadata(HGCCellInfo& info, const CaloSubdetectorGeometry* geom, const DetId& detid) { if (DetId::Hcal == detid.det()) { const HcalGeometry* hc = static_cast<const HcalGeometry*>(geom); addCellMetadata(info, hc, detid); } else { const HGCalGeometry* hg = static_cast<const HGCalGeometry*>(geom); addCellMetadata(info, hg, detid); } } } // namespace hgc_digi_utils class HGCDigitizerBase { public: typedef HGCalDataFrame DFr; typedef edm::SortedCollection<DFr> DColl; /** @short CTOR */ HGCDigitizerBase(const edm::ParameterSet& ps); /** @short Gaussian Noise Generation Member Function */ void GenerateGaussianNoise(CLHEP::HepRandomEngine* engine, const double NoiseMean, const double NoiseStd); /** @short steer digitization mode */ void run(std::unique_ptr<DColl>& digiColl, hgc::HGCSimHitDataAccumulator& simData, const CaloSubdetectorGeometry* theGeom, const std::unordered_set<DetId>& validIds, uint32_t digitizationType, CLHEP::HepRandomEngine* engine); /** @short getters */ float keV2fC() const { return keV2fC_; } bool toaModeByEnergy() const { return (myFEelectronics_->toaMode() == HGCFEElectronics<DFr>::WEIGHTEDBYE); } float tdcOnset() const { return myFEelectronics_->getTDCOnset(); } std::array<float, 3> tdcForToAOnset() const { return myFEelectronics_->getTDCForToAOnset(); } DetId::Detector det() const { return det_; } ForwardSubdetector subdet() const { return subdet_; } /** @short a trivial digitization: sum energies and digitize */ void runSimple(std::unique_ptr<DColl>& coll, hgc::HGCSimHitDataAccumulator& simData, const CaloSubdetectorGeometry* theGeom, const std::unordered_set<DetId>& validIds, CLHEP::HepRandomEngine* engine); /** @short prepares the output according to the number of time samples to produce */ void updateOutput(std::unique_ptr<DColl>& coll, const DFr& rawDataFrame); /** @short to be specialized by top class */ virtual void runDigitizer(std::unique_ptr<DColl>& coll, hgc::HGCSimHitDataAccumulator& simData, const CaloSubdetectorGeometry* theGeom, const std::unordered_set<DetId>& validIds, CLHEP::HepRandomEngine* engine) = 0; /** @short DTOR */ virtual ~HGCDigitizerBase(){}; protected: //baseline configuration edm::ParameterSet myCfg_; //1keV in fC float keV2fC_; //noise level (used if scaleByDose=False) std::vector<float> noise_fC_; //charge collection efficiency (used if scaleByDose=False) std::vector<double> cce_; //determines if the dose map should be used instead bool scaleByDose_; //multiplicative fator to scale fluence map double scaleByDoseFactor_; //path to dose map std::string doseMapFile_; //noise maps (used if scaleByDose=True) HGCalSiNoiseMap<HGCSiliconDetId> scal_; HGCalSiNoiseMap<HFNoseDetId> scalHFNose_; //front-end electronics model std::unique_ptr<HGCFEElectronics<DFr> > myFEelectronics_; //bunch time double bxTime_; //if true will put both in time and out-of-time samples in the event bool doTimeSamples_; //if set to true, threshold will be computed based on the expected meap peak/2 bool thresholdFollowsMIP_; // Identify the detector components, i.e. DetIds, that will be managed by // this digitizer. This information will be used to fetch the correct // geometry and the full list of detids for which a digitization is // requested. DetId::Detector det_; // Identify the subdetector components that will be managed by this // digitizer. This information will be used to fetch the correct geometry and // the full list of detids for which a digitization is requested. ForwardSubdetector subdet_; // New NoiseArray Parameters const double NoiseMean_, NoiseStd_; static const size_t NoiseArrayLength_ = 200000; static const size_t samplesize_ = 15; std::array<std::array<double, samplesize_>, NoiseArrayLength_> GaussianNoiseArray_; bool RandNoiseGenerationFlag_; // A parameter configurable from python configuration to decide which noise generation model to use bool NoiseGeneration_Method_; }; #endif
2,317
12,874
{ "LOGIN": { "TITLE": "Log ind på Chatwoot", "EMAIL": { "LABEL": "E-mail", "PLACEHOLDER": "E-mail, fx: <EMAIL>" }, "PASSWORD": { "LABEL": "Adgangskode", "PLACEHOLDER": "<PASSWORD>" }, "API": { "SUCCESS_MESSAGE": "Login Lykkedes", "ERROR_MESSAGE": "Kunne ikke oprette forbindelse til Woot Server, Prøv igen senere", "UNAUTH": "Brugernavn / adgangskode forkert. Prøv igen" }, "FORGOT_PASSWORD": "<PASSWORD>?", "CREATE_NEW_ACCOUNT": "Opret ny konto", "SUBMIT": "Log Ind" } }
293
679
<filename>main/editeng/source/xml/xmltxtimp.cxx /************************************************************** * * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. * *************************************************************/ // MARKER(update_precomp.py): autogen include statement, do not remove #include "precompiled_editeng.hxx" #include <tools/debug.hxx> #include <com/sun/star/io/XActiveDataControl.hpp> #include <com/sun/star/io/XActiveDataSource.hpp> #include <com/sun/star/xml/sax/XParser.hpp> #include <com/sun/star/xml/sax/XDocumentHandler.hpp> #include <com/sun/star/io/XOutputStream.hpp> #include <com/sun/star/text/XText.hpp> #include <comphelper/processfactory.hxx> #include <unotools/streamwrap.hxx> #include <rtl/ustrbuf.hxx> #include <sot/storage.hxx> #include <svl/itemprop.hxx> #include <xmloff/xmlimp.hxx> #include <xmloff/xmlmetae.hxx> #include <xmloff/xmlictxt.hxx> #include <xmloff/xmltoken.hxx> #include <xmloff/xmlnmspe.hxx> #include <xmloff/xmlstyle.hxx> #include "editsource.hxx" #include <editeng/editeng.hxx> #include <editeng/unotext.hxx> #include <editeng/unoprnms.hxx> #include <editeng/unoipset.hxx> using namespace com::sun::star; using namespace com::sun::star::document; using namespace com::sun::star::uno; using namespace com::sun::star::lang; using namespace com::sun::star::xml::sax; using namespace com::sun::star::text; using namespace ::rtl; using namespace cppu; using namespace xmloff::token; /////////////////////////////////////////////////////////////////////// class SvxXMLTextImportContext : public SvXMLImportContext { public: SvxXMLTextImportContext( SvXMLImport& rImport, sal_uInt16 nPrfx, const OUString& rLName, const uno::Reference< XAttributeList >& xAttrList, const uno::Reference< XText >& xText ); virtual ~SvxXMLTextImportContext(); virtual SvXMLImportContext *CreateChildContext( sal_uInt16 nPrefix, const OUString& rLocalName, const uno::Reference< XAttributeList >& xAttrList ); // SvxXMLXTableImport& getImport() const { return *(SvxXMLXTableImport*)&GetImport(); } private: const uno::Reference< XText > mxText; }; /////////////////////////////////////////////////////////////////////// SvxXMLTextImportContext::SvxXMLTextImportContext( SvXMLImport& rImport, sal_uInt16 nPrfx, const OUString& rLName, const uno::Reference< XAttributeList >&, const uno::Reference< XText >& xText ) : SvXMLImportContext( rImport, nPrfx, rLName ), mxText( xText ) { } SvxXMLTextImportContext::~SvxXMLTextImportContext() { } SvXMLImportContext *SvxXMLTextImportContext::CreateChildContext( sal_uInt16 nPrefix, const OUString& rLocalName, const uno::Reference< XAttributeList >& xAttrList ) { SvXMLImportContext* pContext = NULL; if(XML_NAMESPACE_OFFICE == nPrefix && IsXMLToken( rLocalName, XML_BODY ) ) { pContext = new SvxXMLTextImportContext( GetImport(), nPrefix, rLocalName, xAttrList, mxText ); } else if( XML_NAMESPACE_OFFICE == nPrefix && IsXMLToken( rLocalName, XML_AUTOMATIC_STYLES ) ) { pContext = new SvXMLStylesContext( GetImport(), nPrefix, rLocalName, xAttrList ); GetImport().GetTextImport()->SetAutoStyles( (SvXMLStylesContext*)pContext ); } else { pContext = GetImport().GetTextImport()->CreateTextChildContext( GetImport(), nPrefix, rLocalName, xAttrList ); } if( NULL == pContext ) pContext = new SvXMLImportContext( GetImport(), nPrefix, rLocalName ); return pContext; } /////////////////////////////////////////////////////////////////////// class SvxXMLXTextImportComponent : public SvXMLImport { public: // #110680# SvxXMLXTextImportComponent( const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory > xServiceFactory, const uno::Reference< XText > & xText ); virtual ~SvxXMLXTextImportComponent() throw (); static sal_Bool load( const rtl::OUString& rUrl, const com::sun::star::uno::Reference< com::sun::star::container::XNameContainer >& xTable ) throw(); protected: virtual SvXMLImportContext *CreateChildContext( sal_uInt16 nPrefix, const OUString& rLocalName, const uno::Reference< XAttributeList >& xAttrList ); private: const uno::Reference< XText > mxText; }; // -------------------------------------------------------------------- // #110680# SvxXMLXTextImportComponent::SvxXMLXTextImportComponent( const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory > xServiceFactory, const uno::Reference< XText > & xText ) : SvXMLImport(xServiceFactory), mxText( xText ) { GetTextImport()->SetCursor( mxText->createTextCursor() ); } SvxXMLXTextImportComponent::~SvxXMLXTextImportComponent() throw () { } void SvxReadXML( EditEngine& rEditEngine, SvStream& rStream, const ESelection& rSel ) { SvxEditEngineSource aEditSource( &rEditEngine ); static const SfxItemPropertyMapEntry SvxXMLTextImportComponentPropertyMap[] = { SVX_UNOEDIT_CHAR_PROPERTIES, SVX_UNOEDIT_FONT_PROPERTIES, // SVX_UNOEDIT_OUTLINER_PROPERTIES, SVX_UNOEDIT_PARA_PROPERTIES, {0,0,0,0,0,0} }; static SvxItemPropertySet aSvxXMLTextImportComponentPropertySet( SvxXMLTextImportComponentPropertyMap, EditEngine::GetGlobalItemPool() ); uno::Reference<text::XText > xParent; SvxUnoText* pUnoText = new SvxUnoText( &aEditSource, &aSvxXMLTextImportComponentPropertySet, xParent ); pUnoText->SetSelection( rSel ); uno::Reference<text::XText > xText( pUnoText ); try { do { uno::Reference<lang::XMultiServiceFactory> xServiceFactory( ::comphelper::getProcessServiceFactory() ); if( !xServiceFactory.is() ) { DBG_ERROR( "SvxXMLXTableImport::load: got no service manager" ); break; } uno::Reference< xml::sax::XParser > xParser( xServiceFactory->createInstance( OUString( RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.xml.sax.Parser" ) ) ), uno::UNO_QUERY ); if( !xParser.is() ) { DBG_ERROR( "com.sun.star.xml.sax.Parser service missing" ); break; } uno::Reference<io::XInputStream> xInputStream = new utl::OInputStreamWrapper( rStream ); /* testcode const OUString aURL( RTL_CONSTASCII_USTRINGPARAM( "file:///e:/test.xml" ) ); SfxMedium aMedium( aURL, STREAM_READ | STREAM_NOCREATE, sal_True ); aMedium.IsRemote(); uno::Reference<io::XOutputStream> xOut( new utl::OOutputStreamWrapper( *aMedium.GetOutStream() ) ); aMedium.GetInStream()->Seek( 0 ); uno::Reference< io::XActiveDataSource > xSource( aMedium.GetDataSource() ); if( !xSource.is() ) { DBG_ERROR( "got no data source from medium" ); break; } uno::Reference< XInterface > xPipe( xServiceFactory->createInstance(OUString( RTL_CONSTASCII_USTRINGPARAM("com.sun.star.io.Pipe") ) ) ); if( !xPipe.is() ) { DBG_ERROR( "XMLReader::Read: com.sun.star.io.Pipe service missing" ); break; } // connect pipe's output stream to the data source xSource->setOutputStream( uno::Reference< io::XOutputStream >::query( xPipe ) ); xml::sax::InputSource aParserInput; aParserInput.aInputStream = uno::Reference< io::XInputStream >::query( xPipe ); aParserInput.sSystemId = aMedium.GetName(); if( xSource.is() ) { uno::Reference< io::XActiveDataControl > xSourceControl( xSource, UNO_QUERY ); xSourceControl->start(); } */ // #110680# // uno::Reference< XDocumentHandler > xHandler( new SvxXMLXTextImportComponent( xText ) ); uno::Reference< XDocumentHandler > xHandler( new SvxXMLXTextImportComponent( xServiceFactory, xText ) ); xParser->setDocumentHandler( xHandler ); xml::sax::InputSource aParserInput; aParserInput.aInputStream = xInputStream; // aParserInput.sSystemId = aMedium.GetName(); xParser->parseStream( aParserInput ); } while(0); } catch( uno::Exception& ) { } } SvXMLImportContext *SvxXMLXTextImportComponent::CreateChildContext( sal_uInt16 nPrefix, const OUString& rLocalName, const uno::Reference< XAttributeList >& xAttrList ) { SvXMLImportContext* pContext; if(XML_NAMESPACE_OFFICE == nPrefix && ( IsXMLToken( rLocalName, XML_DOCUMENT ) || IsXMLToken( rLocalName, XML_DOCUMENT_CONTENT ) ) ) { pContext = new SvxXMLTextImportContext(*this, nPrefix, rLocalName, xAttrList, mxText ); } else { pContext = SvXMLImport::CreateContext(nPrefix, rLocalName, xAttrList); } return pContext; }
3,230
639
<gh_stars>100-1000 // Generated by the protocol buffer compiler. DO NOT EDIT! // source: tensor.proto #include "tensor.pb.h" #include <algorithm> #include <google/protobuf/stubs/common.h> #include <google/protobuf/stubs/port.h> #include <google/protobuf/stubs/once.h> #include <google/protobuf/io/coded_stream.h> #include <google/protobuf/wire_format_lite_inl.h> #include <google/protobuf/descriptor.h> #include <google/protobuf/generated_message_reflection.h> #include <google/protobuf/reflection_ops.h> #include <google/protobuf/wire_format.h> // This is a temporary google only hack #ifdef GOOGLE_PROTOBUF_ENFORCE_UNIQUENESS #include "third_party/protobuf/version.h" #endif // @@protoc_insertion_point(includes) namespace tensorflow { class TensorProtoDefaultTypeInternal { public: ::google::protobuf::internal::ExplicitlyConstructed<TensorProto> _instance; } _TensorProto_default_instance_; class VariantTensorDataProtoDefaultTypeInternal { public: ::google::protobuf::internal::ExplicitlyConstructed<VariantTensorDataProto> _instance; } _VariantTensorDataProto_default_instance_; } // namespace tensorflow namespace protobuf_tensor_2eproto { void InitDefaultsTensorProtoImpl() { GOOGLE_PROTOBUF_VERIFY_VERSION; #ifdef GOOGLE_PROTOBUF_ENFORCE_UNIQUENESS ::google::protobuf::internal::InitProtobufDefaultsForceUnique(); #else ::google::protobuf::internal::InitProtobufDefaults(); #endif // GOOGLE_PROTOBUF_ENFORCE_UNIQUENESS protobuf_tensor_5fshape_2eproto::InitDefaultsTensorShapeProto(); protobuf_resource_5fhandle_2eproto::InitDefaultsResourceHandleProto(); { void* ptr = &::tensorflow::_TensorProto_default_instance_; new (ptr) ::tensorflow::TensorProto(); ::google::protobuf::internal::OnShutdownDestroyMessage(ptr); } { void* ptr = &::tensorflow::_VariantTensorDataProto_default_instance_; new (ptr) ::tensorflow::VariantTensorDataProto(); ::google::protobuf::internal::OnShutdownDestroyMessage(ptr); } ::tensorflow::TensorProto::InitAsDefaultInstance(); ::tensorflow::VariantTensorDataProto::InitAsDefaultInstance(); } void InitDefaultsTensorProto() { static GOOGLE_PROTOBUF_DECLARE_ONCE(once); ::google::protobuf::GoogleOnceInit(&once, &InitDefaultsTensorProtoImpl); } ::google::protobuf::Metadata file_level_metadata[2]; const ::google::protobuf::uint32 TableStruct::offsets[] GOOGLE_PROTOBUF_ATTRIBUTE_SECTION_VARIABLE(protodesc_cold) = { ~0u, // no _has_bits_ GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::tensorflow::TensorProto, _internal_metadata_), ~0u, // no _extensions_ ~0u, // no _oneof_case_ ~0u, // no _weak_field_map_ GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::tensorflow::TensorProto, dtype_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::tensorflow::TensorProto, tensor_shape_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::tensorflow::TensorProto, version_number_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::tensorflow::TensorProto, tensor_content_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::tensorflow::TensorProto, half_val_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::tensorflow::TensorProto, float_val_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::tensorflow::TensorProto, double_val_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::tensorflow::TensorProto, int_val_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::tensorflow::TensorProto, string_val_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::tensorflow::TensorProto, scomplex_val_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::tensorflow::TensorProto, int64_val_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::tensorflow::TensorProto, bool_val_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::tensorflow::TensorProto, dcomplex_val_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::tensorflow::TensorProto, resource_handle_val_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::tensorflow::TensorProto, variant_val_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::tensorflow::TensorProto, uint32_val_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::tensorflow::TensorProto, uint64_val_), ~0u, // no _has_bits_ GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::tensorflow::VariantTensorDataProto, _internal_metadata_), ~0u, // no _extensions_ ~0u, // no _oneof_case_ ~0u, // no _weak_field_map_ GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::tensorflow::VariantTensorDataProto, type_name_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::tensorflow::VariantTensorDataProto, metadata_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::tensorflow::VariantTensorDataProto, tensors_), }; static const ::google::protobuf::internal::MigrationSchema schemas[] GOOGLE_PROTOBUF_ATTRIBUTE_SECTION_VARIABLE(protodesc_cold) = { { 0, -1, sizeof(::tensorflow::TensorProto)}, { 22, -1, sizeof(::tensorflow::VariantTensorDataProto)}, }; static ::google::protobuf::Message const * const file_default_instances[] = { reinterpret_cast<const ::google::protobuf::Message*>(&::tensorflow::_TensorProto_default_instance_), reinterpret_cast<const ::google::protobuf::Message*>(&::tensorflow::_VariantTensorDataProto_default_instance_), }; void protobuf_AssignDescriptors() { AddDescriptors(); ::google::protobuf::MessageFactory* factory = NULL; AssignDescriptors( "tensor.proto", schemas, file_default_instances, TableStruct::offsets, factory, file_level_metadata, NULL, NULL); } void protobuf_AssignDescriptorsOnce() { static GOOGLE_PROTOBUF_DECLARE_ONCE(once); ::google::protobuf::GoogleOnceInit(&once, &protobuf_AssignDescriptors); } void protobuf_RegisterTypes(const ::std::string&) GOOGLE_PROTOBUF_ATTRIBUTE_COLD; void protobuf_RegisterTypes(const ::std::string&) { protobuf_AssignDescriptorsOnce(); ::google::protobuf::internal::RegisterAllTypes(file_level_metadata, 2); } void AddDescriptorsImpl() { InitDefaults(); static const char descriptor[] GOOGLE_PROTOBUF_ATTRIBUTE_SECTION_VARIABLE(protodesc_cold) = { "\n\014tensor.proto\022\ntensorflow\032\025resource_han" "dle.proto\032\022tensor_shape.proto\032\013types.pro" "to\"\214\004\n\013TensorProto\022#\n\005dtype\030\001 \001(\0162\024.tens" "orflow.DataType\0222\n\014tensor_shape\030\002 \001(\0132\034." "tensorflow.TensorShapeProto\022\026\n\016version_n" "umber\030\003 \001(\005\022\026\n\016tensor_content\030\004 \001(\014\022\024\n\010h" "alf_val\030\r \003(\005B\002\020\001\022\025\n\tfloat_val\030\005 \003(\002B\002\020\001" "\022\026\n\ndouble_val\030\006 \003(\001B\002\020\001\022\023\n\007int_val\030\007 \003(" "\005B\002\020\001\022\022\n\nstring_val\030\010 \003(\014\022\030\n\014scomplex_va" "l\030\t \003(\002B\002\020\001\022\025\n\tint64_val\030\n \003(\003B\002\020\001\022\024\n\010bo" "ol_val\030\013 \003(\010B\002\020\001\022\030\n\014dcomplex_val\030\014 \003(\001B\002" "\020\001\022<\n\023resource_handle_val\030\016 \003(\0132\037.tensor" "flow.ResourceHandleProto\0227\n\013variant_val\030" "\017 \003(\0132\".tensorflow.VariantTensorDataProt" "o\022\026\n\nuint32_val\030\020 \003(\rB\002\020\001\022\026\n\nuint64_val\030" "\021 \003(\004B\002\020\001\"g\n\026VariantTensorDataProto\022\021\n\tt" "ype_name\030\001 \001(\t\022\020\n\010metadata\030\002 \001(\014\022(\n\007tens" "ors\030\003 \003(\0132\027.tensorflow.TensorProtoBl\n\030or" "g.tensorflow.frameworkB\014TensorProtosP\001Z=" "github.com/tensorflow/tensorflow/tensorf" "low/go/core/framework\370\001\001b\006proto3" }; ::google::protobuf::DescriptorPool::InternalAddGeneratedFile( descriptor, 832); ::google::protobuf::MessageFactory::InternalRegisterGeneratedFile( "tensor.proto", &protobuf_RegisterTypes); ::protobuf_resource_5fhandle_2eproto::AddDescriptors(); ::protobuf_tensor_5fshape_2eproto::AddDescriptors(); ::protobuf_types_2eproto::AddDescriptors(); } void AddDescriptors() { static GOOGLE_PROTOBUF_DECLARE_ONCE(once); ::google::protobuf::GoogleOnceInit(&once, &AddDescriptorsImpl); } // Force AddDescriptors() to be called at dynamic initialization time. struct StaticDescriptorInitializer { StaticDescriptorInitializer() { AddDescriptors(); } } static_descriptor_initializer; } // namespace protobuf_tensor_2eproto namespace tensorflow { // =================================================================== void TensorProto::InitAsDefaultInstance() { ::tensorflow::_TensorProto_default_instance_._instance.get_mutable()->tensor_shape_ = const_cast< ::tensorflow::TensorShapeProto*>( ::tensorflow::TensorShapeProto::internal_default_instance()); } void TensorProto::_slow_mutable_tensor_shape() { tensor_shape_ = ::google::protobuf::Arena::CreateMessage< ::tensorflow::TensorShapeProto >( GetArenaNoVirtual()); } void TensorProto::unsafe_arena_set_allocated_tensor_shape( ::tensorflow::TensorShapeProto* tensor_shape) { if (GetArenaNoVirtual() == NULL) { delete tensor_shape_; } tensor_shape_ = tensor_shape; if (tensor_shape) { } else { } // @@protoc_insertion_point(field_unsafe_arena_set_allocated:tensorflow.TensorProto.tensor_shape) } void TensorProto::clear_tensor_shape() { if (GetArenaNoVirtual() == NULL && tensor_shape_ != NULL) { delete tensor_shape_; } tensor_shape_ = NULL; } void TensorProto::clear_resource_handle_val() { resource_handle_val_.Clear(); } #if !defined(_MSC_VER) || _MSC_VER >= 1900 const int TensorProto::kDtypeFieldNumber; const int TensorProto::kTensorShapeFieldNumber; const int TensorProto::kVersionNumberFieldNumber; const int TensorProto::kTensorContentFieldNumber; const int TensorProto::kHalfValFieldNumber; const int TensorProto::kFloatValFieldNumber; const int TensorProto::kDoubleValFieldNumber; const int TensorProto::kIntValFieldNumber; const int TensorProto::kStringValFieldNumber; const int TensorProto::kScomplexValFieldNumber; const int TensorProto::kInt64ValFieldNumber; const int TensorProto::kBoolValFieldNumber; const int TensorProto::kDcomplexValFieldNumber; const int TensorProto::kResourceHandleValFieldNumber; const int TensorProto::kVariantValFieldNumber; const int TensorProto::kUint32ValFieldNumber; const int TensorProto::kUint64ValFieldNumber; #endif // !defined(_MSC_VER) || _MSC_VER >= 1900 TensorProto::TensorProto() : ::google::protobuf::Message(), _internal_metadata_(NULL) { if (GOOGLE_PREDICT_TRUE(this != internal_default_instance())) { ::protobuf_tensor_2eproto::InitDefaultsTensorProto(); } SharedCtor(); // @@protoc_insertion_point(constructor:tensorflow.TensorProto) } TensorProto::TensorProto(::google::protobuf::Arena* arena) : ::google::protobuf::Message(), _internal_metadata_(arena), float_val_(arena), double_val_(arena), int_val_(arena), string_val_(arena), scomplex_val_(arena), int64_val_(arena), bool_val_(arena), dcomplex_val_(arena), half_val_(arena), resource_handle_val_(arena), variant_val_(arena), uint32_val_(arena), uint64_val_(arena) { ::protobuf_tensor_2eproto::InitDefaultsTensorProto(); SharedCtor(); RegisterArenaDtor(arena); // @@protoc_insertion_point(arena_constructor:tensorflow.TensorProto) } TensorProto::TensorProto(const TensorProto& from) : ::google::protobuf::Message(), _internal_metadata_(NULL), float_val_(from.float_val_), double_val_(from.double_val_), int_val_(from.int_val_), string_val_(from.string_val_), scomplex_val_(from.scomplex_val_), int64_val_(from.int64_val_), bool_val_(from.bool_val_), dcomplex_val_(from.dcomplex_val_), half_val_(from.half_val_), resource_handle_val_(from.resource_handle_val_), variant_val_(from.variant_val_), uint32_val_(from.uint32_val_), uint64_val_(from.uint64_val_), _cached_size_(0) { _internal_metadata_.MergeFrom(from._internal_metadata_); tensor_content_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); if (from.tensor_content().size() > 0) { tensor_content_.Set(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.tensor_content(), GetArenaNoVirtual()); } if (from.has_tensor_shape()) { tensor_shape_ = new ::tensorflow::TensorShapeProto(*from.tensor_shape_); } else { tensor_shape_ = NULL; } ::memcpy(&dtype_, &from.dtype_, static_cast<size_t>(reinterpret_cast<char*>(&version_number_) - reinterpret_cast<char*>(&dtype_)) + sizeof(version_number_)); // @@protoc_insertion_point(copy_constructor:tensorflow.TensorProto) } void TensorProto::SharedCtor() { tensor_content_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); ::memset(&tensor_shape_, 0, static_cast<size_t>( reinterpret_cast<char*>(&version_number_) - reinterpret_cast<char*>(&tensor_shape_)) + sizeof(version_number_)); _cached_size_ = 0; } TensorProto::~TensorProto() { // @@protoc_insertion_point(destructor:tensorflow.TensorProto) SharedDtor(); } void TensorProto::SharedDtor() { GOOGLE_DCHECK(GetArenaNoVirtual() == NULL); tensor_content_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); if (this != internal_default_instance()) delete tensor_shape_; } void TensorProto::ArenaDtor(void* object) { TensorProto* _this = reinterpret_cast< TensorProto* >(object); (void)_this; } void TensorProto::RegisterArenaDtor(::google::protobuf::Arena* arena) { } void TensorProto::SetCachedSize(int size) const { GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN(); _cached_size_ = size; GOOGLE_SAFE_CONCURRENT_WRITES_END(); } const ::google::protobuf::Descriptor* TensorProto::descriptor() { ::protobuf_tensor_2eproto::protobuf_AssignDescriptorsOnce(); return ::protobuf_tensor_2eproto::file_level_metadata[kIndexInFileMessages].descriptor; } const TensorProto& TensorProto::default_instance() { ::protobuf_tensor_2eproto::InitDefaultsTensorProto(); return *internal_default_instance(); } TensorProto* TensorProto::New(::google::protobuf::Arena* arena) const { return ::google::protobuf::Arena::CreateMessage<TensorProto>(arena); } void TensorProto::Clear() { // @@protoc_insertion_point(message_clear_start:tensorflow.TensorProto) ::google::protobuf::uint32 cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; float_val_.Clear(); double_val_.Clear(); int_val_.Clear(); string_val_.Clear(); scomplex_val_.Clear(); int64_val_.Clear(); bool_val_.Clear(); dcomplex_val_.Clear(); half_val_.Clear(); resource_handle_val_.Clear(); variant_val_.Clear(); uint32_val_.Clear(); uint64_val_.Clear(); tensor_content_.ClearToEmpty(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), GetArenaNoVirtual()); if (GetArenaNoVirtual() == NULL && tensor_shape_ != NULL) { delete tensor_shape_; } tensor_shape_ = NULL; ::memset(&dtype_, 0, static_cast<size_t>( reinterpret_cast<char*>(&version_number_) - reinterpret_cast<char*>(&dtype_)) + sizeof(version_number_)); _internal_metadata_.Clear(); } bool TensorProto::MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) { #define DO_(EXPRESSION) if (!GOOGLE_PREDICT_TRUE(EXPRESSION)) goto failure ::google::protobuf::uint32 tag; // @@protoc_insertion_point(parse_start:tensorflow.TensorProto) for (;;) { ::std::pair< ::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(16383u); tag = p.first; if (!p.second) goto handle_unusual; switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { // .tensorflow.DataType dtype = 1; case 1: { if (static_cast< ::google::protobuf::uint8>(tag) == static_cast< ::google::protobuf::uint8>(8u /* 8 & 0xFF */)) { int value; DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive< int, ::google::protobuf::internal::WireFormatLite::TYPE_ENUM>( input, &value))); set_dtype(static_cast< ::tensorflow::DataType >(value)); } else { goto handle_unusual; } break; } // .tensorflow.TensorShapeProto tensor_shape = 2; case 2: { if (static_cast< ::google::protobuf::uint8>(tag) == static_cast< ::google::protobuf::uint8>(18u /* 18 & 0xFF */)) { DO_(::google::protobuf::internal::WireFormatLite::ReadMessage( input, mutable_tensor_shape())); } else { goto handle_unusual; } break; } // int32 version_number = 3; case 3: { if (static_cast< ::google::protobuf::uint8>(tag) == static_cast< ::google::protobuf::uint8>(24u /* 24 & 0xFF */)) { DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive< ::google::protobuf::int32, ::google::protobuf::internal::WireFormatLite::TYPE_INT32>( input, &version_number_))); } else { goto handle_unusual; } break; } // bytes tensor_content = 4; case 4: { if (static_cast< ::google::protobuf::uint8>(tag) == static_cast< ::google::protobuf::uint8>(34u /* 34 & 0xFF */)) { DO_(::google::protobuf::internal::WireFormatLite::ReadBytes( input, this->mutable_tensor_content())); } else { goto handle_unusual; } break; } // repeated float float_val = 5 [packed = true]; case 5: { if (static_cast< ::google::protobuf::uint8>(tag) == static_cast< ::google::protobuf::uint8>(42u /* 42 & 0xFF */)) { DO_((::google::protobuf::internal::WireFormatLite::ReadPackedPrimitive< float, ::google::protobuf::internal::WireFormatLite::TYPE_FLOAT>( input, this->mutable_float_val()))); } else if ( static_cast< ::google::protobuf::uint8>(tag) == static_cast< ::google::protobuf::uint8>(45u /* 45 & 0xFF */)) { DO_((::google::protobuf::internal::WireFormatLite::ReadRepeatedPrimitiveNoInline< float, ::google::protobuf::internal::WireFormatLite::TYPE_FLOAT>( 1, 42u, input, this->mutable_float_val()))); } else { goto handle_unusual; } break; } // repeated double double_val = 6 [packed = true]; case 6: { if (static_cast< ::google::protobuf::uint8>(tag) == static_cast< ::google::protobuf::uint8>(50u /* 50 & 0xFF */)) { DO_((::google::protobuf::internal::WireFormatLite::ReadPackedPrimitive< double, ::google::protobuf::internal::WireFormatLite::TYPE_DOUBLE>( input, this->mutable_double_val()))); } else if ( static_cast< ::google::protobuf::uint8>(tag) == static_cast< ::google::protobuf::uint8>(49u /* 49 & 0xFF */)) { DO_((::google::protobuf::internal::WireFormatLite::ReadRepeatedPrimitiveNoInline< double, ::google::protobuf::internal::WireFormatLite::TYPE_DOUBLE>( 1, 50u, input, this->mutable_double_val()))); } else { goto handle_unusual; } break; } // repeated int32 int_val = 7 [packed = true]; case 7: { if (static_cast< ::google::protobuf::uint8>(tag) == static_cast< ::google::protobuf::uint8>(58u /* 58 & 0xFF */)) { DO_((::google::protobuf::internal::WireFormatLite::ReadPackedPrimitive< ::google::protobuf::int32, ::google::protobuf::internal::WireFormatLite::TYPE_INT32>( input, this->mutable_int_val()))); } else if ( static_cast< ::google::protobuf::uint8>(tag) == static_cast< ::google::protobuf::uint8>(56u /* 56 & 0xFF */)) { DO_((::google::protobuf::internal::WireFormatLite::ReadRepeatedPrimitiveNoInline< ::google::protobuf::int32, ::google::protobuf::internal::WireFormatLite::TYPE_INT32>( 1, 58u, input, this->mutable_int_val()))); } else { goto handle_unusual; } break; } // repeated bytes string_val = 8; case 8: { if (static_cast< ::google::protobuf::uint8>(tag) == static_cast< ::google::protobuf::uint8>(66u /* 66 & 0xFF */)) { DO_(::google::protobuf::internal::WireFormatLite::ReadBytes( input, this->add_string_val())); } else { goto handle_unusual; } break; } // repeated float scomplex_val = 9 [packed = true]; case 9: { if (static_cast< ::google::protobuf::uint8>(tag) == static_cast< ::google::protobuf::uint8>(74u /* 74 & 0xFF */)) { DO_((::google::protobuf::internal::WireFormatLite::ReadPackedPrimitive< float, ::google::protobuf::internal::WireFormatLite::TYPE_FLOAT>( input, this->mutable_scomplex_val()))); } else if ( static_cast< ::google::protobuf::uint8>(tag) == static_cast< ::google::protobuf::uint8>(77u /* 77 & 0xFF */)) { DO_((::google::protobuf::internal::WireFormatLite::ReadRepeatedPrimitiveNoInline< float, ::google::protobuf::internal::WireFormatLite::TYPE_FLOAT>( 1, 74u, input, this->mutable_scomplex_val()))); } else { goto handle_unusual; } break; } // repeated int64 int64_val = 10 [packed = true]; case 10: { if (static_cast< ::google::protobuf::uint8>(tag) == static_cast< ::google::protobuf::uint8>(82u /* 82 & 0xFF */)) { DO_((::google::protobuf::internal::WireFormatLite::ReadPackedPrimitive< ::google::protobuf::int64, ::google::protobuf::internal::WireFormatLite::TYPE_INT64>( input, this->mutable_int64_val()))); } else if ( static_cast< ::google::protobuf::uint8>(tag) == static_cast< ::google::protobuf::uint8>(80u /* 80 & 0xFF */)) { DO_((::google::protobuf::internal::WireFormatLite::ReadRepeatedPrimitiveNoInline< ::google::protobuf::int64, ::google::protobuf::internal::WireFormatLite::TYPE_INT64>( 1, 82u, input, this->mutable_int64_val()))); } else { goto handle_unusual; } break; } // repeated bool bool_val = 11 [packed = true]; case 11: { if (static_cast< ::google::protobuf::uint8>(tag) == static_cast< ::google::protobuf::uint8>(90u /* 90 & 0xFF */)) { DO_((::google::protobuf::internal::WireFormatLite::ReadPackedPrimitive< bool, ::google::protobuf::internal::WireFormatLite::TYPE_BOOL>( input, this->mutable_bool_val()))); } else if ( static_cast< ::google::protobuf::uint8>(tag) == static_cast< ::google::protobuf::uint8>(88u /* 88 & 0xFF */)) { DO_((::google::protobuf::internal::WireFormatLite::ReadRepeatedPrimitiveNoInline< bool, ::google::protobuf::internal::WireFormatLite::TYPE_BOOL>( 1, 90u, input, this->mutable_bool_val()))); } else { goto handle_unusual; } break; } // repeated double dcomplex_val = 12 [packed = true]; case 12: { if (static_cast< ::google::protobuf::uint8>(tag) == static_cast< ::google::protobuf::uint8>(98u /* 98 & 0xFF */)) { DO_((::google::protobuf::internal::WireFormatLite::ReadPackedPrimitive< double, ::google::protobuf::internal::WireFormatLite::TYPE_DOUBLE>( input, this->mutable_dcomplex_val()))); } else if ( static_cast< ::google::protobuf::uint8>(tag) == static_cast< ::google::protobuf::uint8>(97u /* 97 & 0xFF */)) { DO_((::google::protobuf::internal::WireFormatLite::ReadRepeatedPrimitiveNoInline< double, ::google::protobuf::internal::WireFormatLite::TYPE_DOUBLE>( 1, 98u, input, this->mutable_dcomplex_val()))); } else { goto handle_unusual; } break; } // repeated int32 half_val = 13 [packed = true]; case 13: { if (static_cast< ::google::protobuf::uint8>(tag) == static_cast< ::google::protobuf::uint8>(106u /* 106 & 0xFF */)) { DO_((::google::protobuf::internal::WireFormatLite::ReadPackedPrimitive< ::google::protobuf::int32, ::google::protobuf::internal::WireFormatLite::TYPE_INT32>( input, this->mutable_half_val()))); } else if ( static_cast< ::google::protobuf::uint8>(tag) == static_cast< ::google::protobuf::uint8>(104u /* 104 & 0xFF */)) { DO_((::google::protobuf::internal::WireFormatLite::ReadRepeatedPrimitiveNoInline< ::google::protobuf::int32, ::google::protobuf::internal::WireFormatLite::TYPE_INT32>( 1, 106u, input, this->mutable_half_val()))); } else { goto handle_unusual; } break; } // repeated .tensorflow.ResourceHandleProto resource_handle_val = 14; case 14: { if (static_cast< ::google::protobuf::uint8>(tag) == static_cast< ::google::protobuf::uint8>(114u /* 114 & 0xFF */)) { DO_(::google::protobuf::internal::WireFormatLite::ReadMessage(input, add_resource_handle_val())); } else { goto handle_unusual; } break; } // repeated .tensorflow.VariantTensorDataProto variant_val = 15; case 15: { if (static_cast< ::google::protobuf::uint8>(tag) == static_cast< ::google::protobuf::uint8>(122u /* 122 & 0xFF */)) { DO_(::google::protobuf::internal::WireFormatLite::ReadMessage(input, add_variant_val())); } else { goto handle_unusual; } break; } // repeated uint32 uint32_val = 16 [packed = true]; case 16: { if (static_cast< ::google::protobuf::uint8>(tag) == static_cast< ::google::protobuf::uint8>(130u /* 130 & 0xFF */)) { DO_((::google::protobuf::internal::WireFormatLite::ReadPackedPrimitive< ::google::protobuf::uint32, ::google::protobuf::internal::WireFormatLite::TYPE_UINT32>( input, this->mutable_uint32_val()))); } else if ( static_cast< ::google::protobuf::uint8>(tag) == static_cast< ::google::protobuf::uint8>(128u /* 128 & 0xFF */)) { DO_((::google::protobuf::internal::WireFormatLite::ReadRepeatedPrimitiveNoInline< ::google::protobuf::uint32, ::google::protobuf::internal::WireFormatLite::TYPE_UINT32>( 2, 130u, input, this->mutable_uint32_val()))); } else { goto handle_unusual; } break; } // repeated uint64 uint64_val = 17 [packed = true]; case 17: { if (static_cast< ::google::protobuf::uint8>(tag) == static_cast< ::google::protobuf::uint8>(138u /* 138 & 0xFF */)) { DO_((::google::protobuf::internal::WireFormatLite::ReadPackedPrimitive< ::google::protobuf::uint64, ::google::protobuf::internal::WireFormatLite::TYPE_UINT64>( input, this->mutable_uint64_val()))); } else if ( static_cast< ::google::protobuf::uint8>(tag) == static_cast< ::google::protobuf::uint8>(136u /* 136 & 0xFF */)) { DO_((::google::protobuf::internal::WireFormatLite::ReadRepeatedPrimitiveNoInline< ::google::protobuf::uint64, ::google::protobuf::internal::WireFormatLite::TYPE_UINT64>( 2, 138u, input, this->mutable_uint64_val()))); } else { goto handle_unusual; } break; } default: { handle_unusual: if (tag == 0) { goto success; } DO_(::google::protobuf::internal::WireFormat::SkipField( input, tag, _internal_metadata_.mutable_unknown_fields())); break; } } } success: // @@protoc_insertion_point(parse_success:tensorflow.TensorProto) return true; failure: // @@protoc_insertion_point(parse_failure:tensorflow.TensorProto) return false; #undef DO_ } void TensorProto::SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const { // @@protoc_insertion_point(serialize_start:tensorflow.TensorProto) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; // .tensorflow.DataType dtype = 1; if (this->dtype() != 0) { ::google::protobuf::internal::WireFormatLite::WriteEnum( 1, this->dtype(), output); } // .tensorflow.TensorShapeProto tensor_shape = 2; if (this->has_tensor_shape()) { ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( 2, *this->tensor_shape_, output); } // int32 version_number = 3; if (this->version_number() != 0) { ::google::protobuf::internal::WireFormatLite::WriteInt32(3, this->version_number(), output); } // bytes tensor_content = 4; if (this->tensor_content().size() > 0) { ::google::protobuf::internal::WireFormatLite::WriteBytesMaybeAliased( 4, this->tensor_content(), output); } // repeated float float_val = 5 [packed = true]; if (this->float_val_size() > 0) { ::google::protobuf::internal::WireFormatLite::WriteTag(5, ::google::protobuf::internal::WireFormatLite::WIRETYPE_LENGTH_DELIMITED, output); output->WriteVarint32(static_cast< ::google::protobuf::uint32>( _float_val_cached_byte_size_)); ::google::protobuf::internal::WireFormatLite::WriteFloatArray( this->float_val().data(), this->float_val_size(), output); } // repeated double double_val = 6 [packed = true]; if (this->double_val_size() > 0) { ::google::protobuf::internal::WireFormatLite::WriteTag(6, ::google::protobuf::internal::WireFormatLite::WIRETYPE_LENGTH_DELIMITED, output); output->WriteVarint32(static_cast< ::google::protobuf::uint32>( _double_val_cached_byte_size_)); ::google::protobuf::internal::WireFormatLite::WriteDoubleArray( this->double_val().data(), this->double_val_size(), output); } // repeated int32 int_val = 7 [packed = true]; if (this->int_val_size() > 0) { ::google::protobuf::internal::WireFormatLite::WriteTag(7, ::google::protobuf::internal::WireFormatLite::WIRETYPE_LENGTH_DELIMITED, output); output->WriteVarint32(static_cast< ::google::protobuf::uint32>( _int_val_cached_byte_size_)); } for (int i = 0, n = this->int_val_size(); i < n; i++) { ::google::protobuf::internal::WireFormatLite::WriteInt32NoTag( this->int_val(i), output); } // repeated bytes string_val = 8; for (int i = 0, n = this->string_val_size(); i < n; i++) { ::google::protobuf::internal::WireFormatLite::WriteBytes( 8, this->string_val(i), output); } // repeated float scomplex_val = 9 [packed = true]; if (this->scomplex_val_size() > 0) { ::google::protobuf::internal::WireFormatLite::WriteTag(9, ::google::protobuf::internal::WireFormatLite::WIRETYPE_LENGTH_DELIMITED, output); output->WriteVarint32(static_cast< ::google::protobuf::uint32>( _scomplex_val_cached_byte_size_)); ::google::protobuf::internal::WireFormatLite::WriteFloatArray( this->scomplex_val().data(), this->scomplex_val_size(), output); } // repeated int64 int64_val = 10 [packed = true]; if (this->int64_val_size() > 0) { ::google::protobuf::internal::WireFormatLite::WriteTag(10, ::google::protobuf::internal::WireFormatLite::WIRETYPE_LENGTH_DELIMITED, output); output->WriteVarint32(static_cast< ::google::protobuf::uint32>( _int64_val_cached_byte_size_)); } for (int i = 0, n = this->int64_val_size(); i < n; i++) { ::google::protobuf::internal::WireFormatLite::WriteInt64NoTag( this->int64_val(i), output); } // repeated bool bool_val = 11 [packed = true]; if (this->bool_val_size() > 0) { ::google::protobuf::internal::WireFormatLite::WriteTag(11, ::google::protobuf::internal::WireFormatLite::WIRETYPE_LENGTH_DELIMITED, output); output->WriteVarint32(static_cast< ::google::protobuf::uint32>( _bool_val_cached_byte_size_)); ::google::protobuf::internal::WireFormatLite::WriteBoolArray( this->bool_val().data(), this->bool_val_size(), output); } // repeated double dcomplex_val = 12 [packed = true]; if (this->dcomplex_val_size() > 0) { ::google::protobuf::internal::WireFormatLite::WriteTag(12, ::google::protobuf::internal::WireFormatLite::WIRETYPE_LENGTH_DELIMITED, output); output->WriteVarint32(static_cast< ::google::protobuf::uint32>( _dcomplex_val_cached_byte_size_)); ::google::protobuf::internal::WireFormatLite::WriteDoubleArray( this->dcomplex_val().data(), this->dcomplex_val_size(), output); } // repeated int32 half_val = 13 [packed = true]; if (this->half_val_size() > 0) { ::google::protobuf::internal::WireFormatLite::WriteTag(13, ::google::protobuf::internal::WireFormatLite::WIRETYPE_LENGTH_DELIMITED, output); output->WriteVarint32(static_cast< ::google::protobuf::uint32>( _half_val_cached_byte_size_)); } for (int i = 0, n = this->half_val_size(); i < n; i++) { ::google::protobuf::internal::WireFormatLite::WriteInt32NoTag( this->half_val(i), output); } // repeated .tensorflow.ResourceHandleProto resource_handle_val = 14; for (unsigned int i = 0, n = static_cast<unsigned int>(this->resource_handle_val_size()); i < n; i++) { ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( 14, this->resource_handle_val(static_cast<int>(i)), output); } // repeated .tensorflow.VariantTensorDataProto variant_val = 15; for (unsigned int i = 0, n = static_cast<unsigned int>(this->variant_val_size()); i < n; i++) { ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( 15, this->variant_val(static_cast<int>(i)), output); } // repeated uint32 uint32_val = 16 [packed = true]; if (this->uint32_val_size() > 0) { ::google::protobuf::internal::WireFormatLite::WriteTag(16, ::google::protobuf::internal::WireFormatLite::WIRETYPE_LENGTH_DELIMITED, output); output->WriteVarint32(static_cast< ::google::protobuf::uint32>( _uint32_val_cached_byte_size_)); } for (int i = 0, n = this->uint32_val_size(); i < n; i++) { ::google::protobuf::internal::WireFormatLite::WriteUInt32NoTag( this->uint32_val(i), output); } // repeated uint64 uint64_val = 17 [packed = true]; if (this->uint64_val_size() > 0) { ::google::protobuf::internal::WireFormatLite::WriteTag(17, ::google::protobuf::internal::WireFormatLite::WIRETYPE_LENGTH_DELIMITED, output); output->WriteVarint32(static_cast< ::google::protobuf::uint32>( _uint64_val_cached_byte_size_)); } for (int i = 0, n = this->uint64_val_size(); i < n; i++) { ::google::protobuf::internal::WireFormatLite::WriteUInt64NoTag( this->uint64_val(i), output); } if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { ::google::protobuf::internal::WireFormat::SerializeUnknownFields( (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()), output); } // @@protoc_insertion_point(serialize_end:tensorflow.TensorProto) } ::google::protobuf::uint8* TensorProto::InternalSerializeWithCachedSizesToArray( bool deterministic, ::google::protobuf::uint8* target) const { (void)deterministic; // Unused // @@protoc_insertion_point(serialize_to_array_start:tensorflow.TensorProto) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; // .tensorflow.DataType dtype = 1; if (this->dtype() != 0) { target = ::google::protobuf::internal::WireFormatLite::WriteEnumToArray( 1, this->dtype(), target); } // .tensorflow.TensorShapeProto tensor_shape = 2; if (this->has_tensor_shape()) { target = ::google::protobuf::internal::WireFormatLite:: InternalWriteMessageToArray( 2, *this->tensor_shape_, deterministic, target); } // int32 version_number = 3; if (this->version_number() != 0) { target = ::google::protobuf::internal::WireFormatLite::WriteInt32ToArray(3, this->version_number(), target); } // bytes tensor_content = 4; if (this->tensor_content().size() > 0) { target = ::google::protobuf::internal::WireFormatLite::WriteBytesToArray( 4, this->tensor_content(), target); } // repeated float float_val = 5 [packed = true]; if (this->float_val_size() > 0) { target = ::google::protobuf::internal::WireFormatLite::WriteTagToArray( 5, ::google::protobuf::internal::WireFormatLite::WIRETYPE_LENGTH_DELIMITED, target); target = ::google::protobuf::io::CodedOutputStream::WriteVarint32ToArray( static_cast< ::google::protobuf::int32>( _float_val_cached_byte_size_), target); target = ::google::protobuf::internal::WireFormatLite:: WriteFloatNoTagToArray(this->float_val_, target); } // repeated double double_val = 6 [packed = true]; if (this->double_val_size() > 0) { target = ::google::protobuf::internal::WireFormatLite::WriteTagToArray( 6, ::google::protobuf::internal::WireFormatLite::WIRETYPE_LENGTH_DELIMITED, target); target = ::google::protobuf::io::CodedOutputStream::WriteVarint32ToArray( static_cast< ::google::protobuf::int32>( _double_val_cached_byte_size_), target); target = ::google::protobuf::internal::WireFormatLite:: WriteDoubleNoTagToArray(this->double_val_, target); } // repeated int32 int_val = 7 [packed = true]; if (this->int_val_size() > 0) { target = ::google::protobuf::internal::WireFormatLite::WriteTagToArray( 7, ::google::protobuf::internal::WireFormatLite::WIRETYPE_LENGTH_DELIMITED, target); target = ::google::protobuf::io::CodedOutputStream::WriteVarint32ToArray( static_cast< ::google::protobuf::int32>( _int_val_cached_byte_size_), target); target = ::google::protobuf::internal::WireFormatLite:: WriteInt32NoTagToArray(this->int_val_, target); } // repeated bytes string_val = 8; for (int i = 0, n = this->string_val_size(); i < n; i++) { target = ::google::protobuf::internal::WireFormatLite:: WriteBytesToArray(8, this->string_val(i), target); } // repeated float scomplex_val = 9 [packed = true]; if (this->scomplex_val_size() > 0) { target = ::google::protobuf::internal::WireFormatLite::WriteTagToArray( 9, ::google::protobuf::internal::WireFormatLite::WIRETYPE_LENGTH_DELIMITED, target); target = ::google::protobuf::io::CodedOutputStream::WriteVarint32ToArray( static_cast< ::google::protobuf::int32>( _scomplex_val_cached_byte_size_), target); target = ::google::protobuf::internal::WireFormatLite:: WriteFloatNoTagToArray(this->scomplex_val_, target); } // repeated int64 int64_val = 10 [packed = true]; if (this->int64_val_size() > 0) { target = ::google::protobuf::internal::WireFormatLite::WriteTagToArray( 10, ::google::protobuf::internal::WireFormatLite::WIRETYPE_LENGTH_DELIMITED, target); target = ::google::protobuf::io::CodedOutputStream::WriteVarint32ToArray( static_cast< ::google::protobuf::int32>( _int64_val_cached_byte_size_), target); target = ::google::protobuf::internal::WireFormatLite:: WriteInt64NoTagToArray(this->int64_val_, target); } // repeated bool bool_val = 11 [packed = true]; if (this->bool_val_size() > 0) { target = ::google::protobuf::internal::WireFormatLite::WriteTagToArray( 11, ::google::protobuf::internal::WireFormatLite::WIRETYPE_LENGTH_DELIMITED, target); target = ::google::protobuf::io::CodedOutputStream::WriteVarint32ToArray( static_cast< ::google::protobuf::int32>( _bool_val_cached_byte_size_), target); target = ::google::protobuf::internal::WireFormatLite:: WriteBoolNoTagToArray(this->bool_val_, target); } // repeated double dcomplex_val = 12 [packed = true]; if (this->dcomplex_val_size() > 0) { target = ::google::protobuf::internal::WireFormatLite::WriteTagToArray( 12, ::google::protobuf::internal::WireFormatLite::WIRETYPE_LENGTH_DELIMITED, target); target = ::google::protobuf::io::CodedOutputStream::WriteVarint32ToArray( static_cast< ::google::protobuf::int32>( _dcomplex_val_cached_byte_size_), target); target = ::google::protobuf::internal::WireFormatLite:: WriteDoubleNoTagToArray(this->dcomplex_val_, target); } // repeated int32 half_val = 13 [packed = true]; if (this->half_val_size() > 0) { target = ::google::protobuf::internal::WireFormatLite::WriteTagToArray( 13, ::google::protobuf::internal::WireFormatLite::WIRETYPE_LENGTH_DELIMITED, target); target = ::google::protobuf::io::CodedOutputStream::WriteVarint32ToArray( static_cast< ::google::protobuf::int32>( _half_val_cached_byte_size_), target); target = ::google::protobuf::internal::WireFormatLite:: WriteInt32NoTagToArray(this->half_val_, target); } // repeated .tensorflow.ResourceHandleProto resource_handle_val = 14; for (unsigned int i = 0, n = static_cast<unsigned int>(this->resource_handle_val_size()); i < n; i++) { target = ::google::protobuf::internal::WireFormatLite:: InternalWriteMessageToArray( 14, this->resource_handle_val(static_cast<int>(i)), deterministic, target); } // repeated .tensorflow.VariantTensorDataProto variant_val = 15; for (unsigned int i = 0, n = static_cast<unsigned int>(this->variant_val_size()); i < n; i++) { target = ::google::protobuf::internal::WireFormatLite:: InternalWriteMessageToArray( 15, this->variant_val(static_cast<int>(i)), deterministic, target); } // repeated uint32 uint32_val = 16 [packed = true]; if (this->uint32_val_size() > 0) { target = ::google::protobuf::internal::WireFormatLite::WriteTagToArray( 16, ::google::protobuf::internal::WireFormatLite::WIRETYPE_LENGTH_DELIMITED, target); target = ::google::protobuf::io::CodedOutputStream::WriteVarint32ToArray( static_cast< ::google::protobuf::int32>( _uint32_val_cached_byte_size_), target); target = ::google::protobuf::internal::WireFormatLite:: WriteUInt32NoTagToArray(this->uint32_val_, target); } // repeated uint64 uint64_val = 17 [packed = true]; if (this->uint64_val_size() > 0) { target = ::google::protobuf::internal::WireFormatLite::WriteTagToArray( 17, ::google::protobuf::internal::WireFormatLite::WIRETYPE_LENGTH_DELIMITED, target); target = ::google::protobuf::io::CodedOutputStream::WriteVarint32ToArray( static_cast< ::google::protobuf::int32>( _uint64_val_cached_byte_size_), target); target = ::google::protobuf::internal::WireFormatLite:: WriteUInt64NoTagToArray(this->uint64_val_, target); } if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()), target); } // @@protoc_insertion_point(serialize_to_array_end:tensorflow.TensorProto) return target; } size_t TensorProto::ByteSizeLong() const { // @@protoc_insertion_point(message_byte_size_start:tensorflow.TensorProto) size_t total_size = 0; if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { total_size += ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance())); } // repeated float float_val = 5 [packed = true]; { unsigned int count = static_cast<unsigned int>(this->float_val_size()); size_t data_size = 4UL * count; if (data_size > 0) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::Int32Size( static_cast< ::google::protobuf::int32>(data_size)); } int cached_size = ::google::protobuf::internal::ToCachedSize(data_size); GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN(); _float_val_cached_byte_size_ = cached_size; GOOGLE_SAFE_CONCURRENT_WRITES_END(); total_size += data_size; } // repeated double double_val = 6 [packed = true]; { unsigned int count = static_cast<unsigned int>(this->double_val_size()); size_t data_size = 8UL * count; if (data_size > 0) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::Int32Size( static_cast< ::google::protobuf::int32>(data_size)); } int cached_size = ::google::protobuf::internal::ToCachedSize(data_size); GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN(); _double_val_cached_byte_size_ = cached_size; GOOGLE_SAFE_CONCURRENT_WRITES_END(); total_size += data_size; } // repeated int32 int_val = 7 [packed = true]; { size_t data_size = ::google::protobuf::internal::WireFormatLite:: Int32Size(this->int_val_); if (data_size > 0) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::Int32Size( static_cast< ::google::protobuf::int32>(data_size)); } int cached_size = ::google::protobuf::internal::ToCachedSize(data_size); GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN(); _int_val_cached_byte_size_ = cached_size; GOOGLE_SAFE_CONCURRENT_WRITES_END(); total_size += data_size; } // repeated bytes string_val = 8; total_size += 1 * ::google::protobuf::internal::FromIntSize(this->string_val_size()); for (int i = 0, n = this->string_val_size(); i < n; i++) { total_size += ::google::protobuf::internal::WireFormatLite::BytesSize( this->string_val(i)); } // repeated float scomplex_val = 9 [packed = true]; { unsigned int count = static_cast<unsigned int>(this->scomplex_val_size()); size_t data_size = 4UL * count; if (data_size > 0) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::Int32Size( static_cast< ::google::protobuf::int32>(data_size)); } int cached_size = ::google::protobuf::internal::ToCachedSize(data_size); GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN(); _scomplex_val_cached_byte_size_ = cached_size; GOOGLE_SAFE_CONCURRENT_WRITES_END(); total_size += data_size; } // repeated int64 int64_val = 10 [packed = true]; { size_t data_size = ::google::protobuf::internal::WireFormatLite:: Int64Size(this->int64_val_); if (data_size > 0) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::Int32Size( static_cast< ::google::protobuf::int32>(data_size)); } int cached_size = ::google::protobuf::internal::ToCachedSize(data_size); GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN(); _int64_val_cached_byte_size_ = cached_size; GOOGLE_SAFE_CONCURRENT_WRITES_END(); total_size += data_size; } // repeated bool bool_val = 11 [packed = true]; { unsigned int count = static_cast<unsigned int>(this->bool_val_size()); size_t data_size = 1UL * count; if (data_size > 0) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::Int32Size( static_cast< ::google::protobuf::int32>(data_size)); } int cached_size = ::google::protobuf::internal::ToCachedSize(data_size); GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN(); _bool_val_cached_byte_size_ = cached_size; GOOGLE_SAFE_CONCURRENT_WRITES_END(); total_size += data_size; } // repeated double dcomplex_val = 12 [packed = true]; { unsigned int count = static_cast<unsigned int>(this->dcomplex_val_size()); size_t data_size = 8UL * count; if (data_size > 0) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::Int32Size( static_cast< ::google::protobuf::int32>(data_size)); } int cached_size = ::google::protobuf::internal::ToCachedSize(data_size); GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN(); _dcomplex_val_cached_byte_size_ = cached_size; GOOGLE_SAFE_CONCURRENT_WRITES_END(); total_size += data_size; } // repeated int32 half_val = 13 [packed = true]; { size_t data_size = ::google::protobuf::internal::WireFormatLite:: Int32Size(this->half_val_); if (data_size > 0) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::Int32Size( static_cast< ::google::protobuf::int32>(data_size)); } int cached_size = ::google::protobuf::internal::ToCachedSize(data_size); GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN(); _half_val_cached_byte_size_ = cached_size; GOOGLE_SAFE_CONCURRENT_WRITES_END(); total_size += data_size; } // repeated .tensorflow.ResourceHandleProto resource_handle_val = 14; { unsigned int count = static_cast<unsigned int>(this->resource_handle_val_size()); total_size += 1UL * count; for (unsigned int i = 0; i < count; i++) { total_size += ::google::protobuf::internal::WireFormatLite::MessageSize( this->resource_handle_val(static_cast<int>(i))); } } // repeated .tensorflow.VariantTensorDataProto variant_val = 15; { unsigned int count = static_cast<unsigned int>(this->variant_val_size()); total_size += 1UL * count; for (unsigned int i = 0; i < count; i++) { total_size += ::google::protobuf::internal::WireFormatLite::MessageSize( this->variant_val(static_cast<int>(i))); } } // repeated uint32 uint32_val = 16 [packed = true]; { size_t data_size = ::google::protobuf::internal::WireFormatLite:: UInt32Size(this->uint32_val_); if (data_size > 0) { total_size += 2 + ::google::protobuf::internal::WireFormatLite::Int32Size( static_cast< ::google::protobuf::int32>(data_size)); } int cached_size = ::google::protobuf::internal::ToCachedSize(data_size); GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN(); _uint32_val_cached_byte_size_ = cached_size; GOOGLE_SAFE_CONCURRENT_WRITES_END(); total_size += data_size; } // repeated uint64 uint64_val = 17 [packed = true]; { size_t data_size = ::google::protobuf::internal::WireFormatLite:: UInt64Size(this->uint64_val_); if (data_size > 0) { total_size += 2 + ::google::protobuf::internal::WireFormatLite::Int32Size( static_cast< ::google::protobuf::int32>(data_size)); } int cached_size = ::google::protobuf::internal::ToCachedSize(data_size); GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN(); _uint64_val_cached_byte_size_ = cached_size; GOOGLE_SAFE_CONCURRENT_WRITES_END(); total_size += data_size; } // bytes tensor_content = 4; if (this->tensor_content().size() > 0) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( this->tensor_content()); } // .tensorflow.TensorShapeProto tensor_shape = 2; if (this->has_tensor_shape()) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::MessageSize( *this->tensor_shape_); } // .tensorflow.DataType dtype = 1; if (this->dtype() != 0) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::EnumSize(this->dtype()); } // int32 version_number = 3; if (this->version_number() != 0) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::Int32Size( this->version_number()); } int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN(); _cached_size_ = cached_size; GOOGLE_SAFE_CONCURRENT_WRITES_END(); return total_size; } void TensorProto::MergeFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_merge_from_start:tensorflow.TensorProto) GOOGLE_DCHECK_NE(&from, this); const TensorProto* source = ::google::protobuf::internal::DynamicCastToGenerated<const TensorProto>( &from); if (source == NULL) { // @@protoc_insertion_point(generalized_merge_from_cast_fail:tensorflow.TensorProto) ::google::protobuf::internal::ReflectionOps::Merge(from, this); } else { // @@protoc_insertion_point(generalized_merge_from_cast_success:tensorflow.TensorProto) MergeFrom(*source); } } void TensorProto::MergeFrom(const TensorProto& from) { // @@protoc_insertion_point(class_specific_merge_from_start:tensorflow.TensorProto) GOOGLE_DCHECK_NE(&from, this); _internal_metadata_.MergeFrom(from._internal_metadata_); ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; float_val_.MergeFrom(from.float_val_); double_val_.MergeFrom(from.double_val_); int_val_.MergeFrom(from.int_val_); string_val_.MergeFrom(from.string_val_); scomplex_val_.MergeFrom(from.scomplex_val_); int64_val_.MergeFrom(from.int64_val_); bool_val_.MergeFrom(from.bool_val_); dcomplex_val_.MergeFrom(from.dcomplex_val_); half_val_.MergeFrom(from.half_val_); resource_handle_val_.MergeFrom(from.resource_handle_val_); variant_val_.MergeFrom(from.variant_val_); uint32_val_.MergeFrom(from.uint32_val_); uint64_val_.MergeFrom(from.uint64_val_); if (from.tensor_content().size() > 0) { set_tensor_content(from.tensor_content()); } if (from.has_tensor_shape()) { mutable_tensor_shape()->::tensorflow::TensorShapeProto::MergeFrom(from.tensor_shape()); } if (from.dtype() != 0) { set_dtype(from.dtype()); } if (from.version_number() != 0) { set_version_number(from.version_number()); } } void TensorProto::CopyFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_copy_from_start:tensorflow.TensorProto) if (&from == this) return; Clear(); MergeFrom(from); } void TensorProto::CopyFrom(const TensorProto& from) { // @@protoc_insertion_point(class_specific_copy_from_start:tensorflow.TensorProto) if (&from == this) return; Clear(); MergeFrom(from); } bool TensorProto::IsInitialized() const { return true; } void TensorProto::Swap(TensorProto* other) { if (other == this) return; if (GetArenaNoVirtual() == other->GetArenaNoVirtual()) { InternalSwap(other); } else { TensorProto* temp = New(GetArenaNoVirtual()); temp->MergeFrom(*other); other->CopyFrom(*this); InternalSwap(temp); if (GetArenaNoVirtual() == NULL) { delete temp; } } } void TensorProto::UnsafeArenaSwap(TensorProto* other) { if (other == this) return; GOOGLE_DCHECK(GetArenaNoVirtual() == other->GetArenaNoVirtual()); InternalSwap(other); } void TensorProto::InternalSwap(TensorProto* other) { using std::swap; float_val_.InternalSwap(&other->float_val_); double_val_.InternalSwap(&other->double_val_); int_val_.InternalSwap(&other->int_val_); string_val_.InternalSwap(&other->string_val_); scomplex_val_.InternalSwap(&other->scomplex_val_); int64_val_.InternalSwap(&other->int64_val_); bool_val_.InternalSwap(&other->bool_val_); dcomplex_val_.InternalSwap(&other->dcomplex_val_); half_val_.InternalSwap(&other->half_val_); resource_handle_val_.InternalSwap(&other->resource_handle_val_); variant_val_.InternalSwap(&other->variant_val_); uint32_val_.InternalSwap(&other->uint32_val_); uint64_val_.InternalSwap(&other->uint64_val_); tensor_content_.Swap(&other->tensor_content_); swap(tensor_shape_, other->tensor_shape_); swap(dtype_, other->dtype_); swap(version_number_, other->version_number_); _internal_metadata_.Swap(&other->_internal_metadata_); swap(_cached_size_, other->_cached_size_); } ::google::protobuf::Metadata TensorProto::GetMetadata() const { protobuf_tensor_2eproto::protobuf_AssignDescriptorsOnce(); return ::protobuf_tensor_2eproto::file_level_metadata[kIndexInFileMessages]; } // =================================================================== void VariantTensorDataProto::InitAsDefaultInstance() { } #if !defined(_MSC_VER) || _MSC_VER >= 1900 const int VariantTensorDataProto::kTypeNameFieldNumber; const int VariantTensorDataProto::kMetadataFieldNumber; const int VariantTensorDataProto::kTensorsFieldNumber; #endif // !defined(_MSC_VER) || _MSC_VER >= 1900 VariantTensorDataProto::VariantTensorDataProto() : ::google::protobuf::Message(), _internal_metadata_(NULL) { if (GOOGLE_PREDICT_TRUE(this != internal_default_instance())) { ::protobuf_tensor_2eproto::InitDefaultsTensorProto(); } SharedCtor(); // @@protoc_insertion_point(constructor:tensorflow.VariantTensorDataProto) } VariantTensorDataProto::VariantTensorDataProto(::google::protobuf::Arena* arena) : ::google::protobuf::Message(), _internal_metadata_(arena), tensors_(arena) { ::protobuf_tensor_2eproto::InitDefaultsTensorProto(); SharedCtor(); RegisterArenaDtor(arena); // @@protoc_insertion_point(arena_constructor:tensorflow.VariantTensorDataProto) } VariantTensorDataProto::VariantTensorDataProto(const VariantTensorDataProto& from) : ::google::protobuf::Message(), _internal_metadata_(NULL), tensors_(from.tensors_), _cached_size_(0) { _internal_metadata_.MergeFrom(from._internal_metadata_); type_name_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); if (from.type_name().size() > 0) { type_name_.Set(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.type_name(), GetArenaNoVirtual()); } metadata_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); if (from.metadata().size() > 0) { metadata_.Set(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.metadata(), GetArenaNoVirtual()); } // @@protoc_insertion_point(copy_constructor:tensorflow.VariantTensorDataProto) } void VariantTensorDataProto::SharedCtor() { type_name_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); metadata_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); _cached_size_ = 0; } VariantTensorDataProto::~VariantTensorDataProto() { // @@protoc_insertion_point(destructor:tensorflow.VariantTensorDataProto) SharedDtor(); } void VariantTensorDataProto::SharedDtor() { GOOGLE_DCHECK(GetArenaNoVirtual() == NULL); type_name_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); metadata_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } void VariantTensorDataProto::ArenaDtor(void* object) { VariantTensorDataProto* _this = reinterpret_cast< VariantTensorDataProto* >(object); (void)_this; } void VariantTensorDataProto::RegisterArenaDtor(::google::protobuf::Arena* arena) { } void VariantTensorDataProto::SetCachedSize(int size) const { GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN(); _cached_size_ = size; GOOGLE_SAFE_CONCURRENT_WRITES_END(); } const ::google::protobuf::Descriptor* VariantTensorDataProto::descriptor() { ::protobuf_tensor_2eproto::protobuf_AssignDescriptorsOnce(); return ::protobuf_tensor_2eproto::file_level_metadata[kIndexInFileMessages].descriptor; } const VariantTensorDataProto& VariantTensorDataProto::default_instance() { ::protobuf_tensor_2eproto::InitDefaultsTensorProto(); return *internal_default_instance(); } VariantTensorDataProto* VariantTensorDataProto::New(::google::protobuf::Arena* arena) const { return ::google::protobuf::Arena::CreateMessage<VariantTensorDataProto>(arena); } void VariantTensorDataProto::Clear() { // @@protoc_insertion_point(message_clear_start:tensorflow.VariantTensorDataProto) ::google::protobuf::uint32 cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; tensors_.Clear(); type_name_.ClearToEmpty(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), GetArenaNoVirtual()); metadata_.ClearToEmpty(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), GetArenaNoVirtual()); _internal_metadata_.Clear(); } bool VariantTensorDataProto::MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) { #define DO_(EXPRESSION) if (!GOOGLE_PREDICT_TRUE(EXPRESSION)) goto failure ::google::protobuf::uint32 tag; // @@protoc_insertion_point(parse_start:tensorflow.VariantTensorDataProto) for (;;) { ::std::pair< ::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u); tag = p.first; if (!p.second) goto handle_unusual; switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { // string type_name = 1; case 1: { if (static_cast< ::google::protobuf::uint8>(tag) == static_cast< ::google::protobuf::uint8>(10u /* 10 & 0xFF */)) { DO_(::google::protobuf::internal::WireFormatLite::ReadString( input, this->mutable_type_name())); DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->type_name().data(), static_cast<int>(this->type_name().length()), ::google::protobuf::internal::WireFormatLite::PARSE, "tensorflow.VariantTensorDataProto.type_name")); } else { goto handle_unusual; } break; } // bytes metadata = 2; case 2: { if (static_cast< ::google::protobuf::uint8>(tag) == static_cast< ::google::protobuf::uint8>(18u /* 18 & 0xFF */)) { DO_(::google::protobuf::internal::WireFormatLite::ReadBytes( input, this->mutable_metadata())); } else { goto handle_unusual; } break; } // repeated .tensorflow.TensorProto tensors = 3; case 3: { if (static_cast< ::google::protobuf::uint8>(tag) == static_cast< ::google::protobuf::uint8>(26u /* 26 & 0xFF */)) { DO_(::google::protobuf::internal::WireFormatLite::ReadMessage(input, add_tensors())); } else { goto handle_unusual; } break; } default: { handle_unusual: if (tag == 0) { goto success; } DO_(::google::protobuf::internal::WireFormat::SkipField( input, tag, _internal_metadata_.mutable_unknown_fields())); break; } } } success: // @@protoc_insertion_point(parse_success:tensorflow.VariantTensorDataProto) return true; failure: // @@protoc_insertion_point(parse_failure:tensorflow.VariantTensorDataProto) return false; #undef DO_ } void VariantTensorDataProto::SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const { // @@protoc_insertion_point(serialize_start:tensorflow.VariantTensorDataProto) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; // string type_name = 1; if (this->type_name().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->type_name().data(), static_cast<int>(this->type_name().length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "tensorflow.VariantTensorDataProto.type_name"); ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( 1, this->type_name(), output); } // bytes metadata = 2; if (this->metadata().size() > 0) { ::google::protobuf::internal::WireFormatLite::WriteBytesMaybeAliased( 2, this->metadata(), output); } // repeated .tensorflow.TensorProto tensors = 3; for (unsigned int i = 0, n = static_cast<unsigned int>(this->tensors_size()); i < n; i++) { ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( 3, this->tensors(static_cast<int>(i)), output); } if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { ::google::protobuf::internal::WireFormat::SerializeUnknownFields( (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()), output); } // @@protoc_insertion_point(serialize_end:tensorflow.VariantTensorDataProto) } ::google::protobuf::uint8* VariantTensorDataProto::InternalSerializeWithCachedSizesToArray( bool deterministic, ::google::protobuf::uint8* target) const { (void)deterministic; // Unused // @@protoc_insertion_point(serialize_to_array_start:tensorflow.VariantTensorDataProto) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; // string type_name = 1; if (this->type_name().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->type_name().data(), static_cast<int>(this->type_name().length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "tensorflow.VariantTensorDataProto.type_name"); target = ::google::protobuf::internal::WireFormatLite::WriteStringToArray( 1, this->type_name(), target); } // bytes metadata = 2; if (this->metadata().size() > 0) { target = ::google::protobuf::internal::WireFormatLite::WriteBytesToArray( 2, this->metadata(), target); } // repeated .tensorflow.TensorProto tensors = 3; for (unsigned int i = 0, n = static_cast<unsigned int>(this->tensors_size()); i < n; i++) { target = ::google::protobuf::internal::WireFormatLite:: InternalWriteMessageToArray( 3, this->tensors(static_cast<int>(i)), deterministic, target); } if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()), target); } // @@protoc_insertion_point(serialize_to_array_end:tensorflow.VariantTensorDataProto) return target; } size_t VariantTensorDataProto::ByteSizeLong() const { // @@protoc_insertion_point(message_byte_size_start:tensorflow.VariantTensorDataProto) size_t total_size = 0; if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { total_size += ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance())); } // repeated .tensorflow.TensorProto tensors = 3; { unsigned int count = static_cast<unsigned int>(this->tensors_size()); total_size += 1UL * count; for (unsigned int i = 0; i < count; i++) { total_size += ::google::protobuf::internal::WireFormatLite::MessageSize( this->tensors(static_cast<int>(i))); } } // string type_name = 1; if (this->type_name().size() > 0) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( this->type_name()); } // bytes metadata = 2; if (this->metadata().size() > 0) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( this->metadata()); } int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN(); _cached_size_ = cached_size; GOOGLE_SAFE_CONCURRENT_WRITES_END(); return total_size; } void VariantTensorDataProto::MergeFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_merge_from_start:tensorflow.VariantTensorDataProto) GOOGLE_DCHECK_NE(&from, this); const VariantTensorDataProto* source = ::google::protobuf::internal::DynamicCastToGenerated<const VariantTensorDataProto>( &from); if (source == NULL) { // @@protoc_insertion_point(generalized_merge_from_cast_fail:tensorflow.VariantTensorDataProto) ::google::protobuf::internal::ReflectionOps::Merge(from, this); } else { // @@protoc_insertion_point(generalized_merge_from_cast_success:tensorflow.VariantTensorDataProto) MergeFrom(*source); } } void VariantTensorDataProto::MergeFrom(const VariantTensorDataProto& from) { // @@protoc_insertion_point(class_specific_merge_from_start:tensorflow.VariantTensorDataProto) GOOGLE_DCHECK_NE(&from, this); _internal_metadata_.MergeFrom(from._internal_metadata_); ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; tensors_.MergeFrom(from.tensors_); if (from.type_name().size() > 0) { set_type_name(from.type_name()); } if (from.metadata().size() > 0) { set_metadata(from.metadata()); } } void VariantTensorDataProto::CopyFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_copy_from_start:tensorflow.VariantTensorDataProto) if (&from == this) return; Clear(); MergeFrom(from); } void VariantTensorDataProto::CopyFrom(const VariantTensorDataProto& from) { // @@protoc_insertion_point(class_specific_copy_from_start:tensorflow.VariantTensorDataProto) if (&from == this) return; Clear(); MergeFrom(from); } bool VariantTensorDataProto::IsInitialized() const { return true; } void VariantTensorDataProto::Swap(VariantTensorDataProto* other) { if (other == this) return; if (GetArenaNoVirtual() == other->GetArenaNoVirtual()) { InternalSwap(other); } else { VariantTensorDataProto* temp = New(GetArenaNoVirtual()); temp->MergeFrom(*other); other->CopyFrom(*this); InternalSwap(temp); if (GetArenaNoVirtual() == NULL) { delete temp; } } } void VariantTensorDataProto::UnsafeArenaSwap(VariantTensorDataProto* other) { if (other == this) return; GOOGLE_DCHECK(GetArenaNoVirtual() == other->GetArenaNoVirtual()); InternalSwap(other); } void VariantTensorDataProto::InternalSwap(VariantTensorDataProto* other) { using std::swap; tensors_.InternalSwap(&other->tensors_); type_name_.Swap(&other->type_name_); metadata_.Swap(&other->metadata_); _internal_metadata_.Swap(&other->_internal_metadata_); swap(_cached_size_, other->_cached_size_); } ::google::protobuf::Metadata VariantTensorDataProto::GetMetadata() const { protobuf_tensor_2eproto::protobuf_AssignDescriptorsOnce(); return ::protobuf_tensor_2eproto::file_level_metadata[kIndexInFileMessages]; } // @@protoc_insertion_point(namespace_scope) } // namespace tensorflow // @@protoc_insertion_point(global_scope)
29,111
374
<reponame>ericherman/OpenSMTPD /* $OpenBSD: getnetnamadr_async.c,v 1.26 2018/04/28 15:16:49 schwarze Exp $ */ /* * Copyright (c) 2012 <NAME> <<EMAIL>> * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ #include "includes.h" #include <sys/types.h> #include <sys/socket.h> #include <arpa/inet.h> #include <arpa/nameser.h> #include <netdb.h> #include <asr.h> #include "asr_private.h" struct asr_query * getnetbyname_async(const char *name, void *asr) { struct asr_query *as; if ((as = gethostbyname_async(name, asr)) != NULL) as->as_flags |= ASYNC_GETNET; return (as); } DEF_WEAK(getnetbyname_async); struct asr_query * getnetbyaddr_async(in_addr_t net, int family, void *asr) { struct in_addr in; struct asr_query *as; in.s_addr = htonl(net); as = gethostbyaddr_async(&in, sizeof(in), family, asr); if (as != NULL) as->as_flags |= ASYNC_GETNET; return (as); } DEF_WEAK(getnetbyaddr_async);
591
418
<reponame>aequasi/openshop.io-ios<gh_stars>100-1000 // // BFCollectionViewCell.h // OpenShop // // Created by <NAME> // Copyright (c) 2015 Business Factory. All rights reserved. // #import "BFAppAppearance.h" #import "BFProductImageView.h" /** * `BFCollectionViewCell` is a base collection view cell wrapper to be subclassed for further use * if needed. It contains basic collection view cell properties and it manages their appearance * according the requirements. */ @interface BFCollectionViewCell : UICollectionViewCell <BFCustomAppearance> /** * Header text label. */ @property (nonatomic, weak) IBOutlet UILabel *headerlabel; /** * Subheader text label. */ @property (nonatomic, weak) IBOutlet UILabel *subheaderLabel; /** * Image content view. */ @property (nonatomic, weak) IBOutlet BFProductImageView *imageContentView; @end
265
479
/** * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT 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 org.apache.aurora.scheduler; import java.io.File; import java.io.IOException; import java.nio.charset.StandardCharsets; import com.beust.jcommander.Parameter; import com.beust.jcommander.Parameters; import com.google.common.annotations.VisibleForTesting; import com.google.common.base.Strings; import com.google.common.io.Files; import com.google.common.io.Resources; import com.google.inject.AbstractModule; import org.apache.aurora.scheduler.TierManager.TierManagerImpl; import org.apache.aurora.scheduler.TierManager.TierManagerImpl.TierConfig; import org.apache.aurora.scheduler.config.validators.ReadableFile; import org.codehaus.jackson.map.ObjectMapper; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import static java.util.Objects.requireNonNull; import static com.google.common.base.Preconditions.checkArgument; /** * Binding module for tier management. */ public class TierModule extends AbstractModule { private static final Logger LOG = LoggerFactory.getLogger(TierModule.class); @VisibleForTesting static final String TIER_CONFIG_PATH = "org/apache/aurora/scheduler/tiers.json"; @Parameters(separators = "=") public static class Options { @Parameter(names = "-tier_config", validateValueWith = ReadableFile.class, description = "Configuration file defining supported task tiers, task traits and behaviors.") public File tierConfigFile; } private final TierConfig tierConfig; public TierModule(Options options) { this(parseTierConfig(readTierFile(options))); } @VisibleForTesting public TierModule(TierConfig tierConfig) { this.tierConfig = requireNonNull(tierConfig); } @Override protected void configure() { bind(TierManager.class).toInstance(new TierManagerImpl(tierConfig)); } static String readTierFile(Options options) { try { File tierConfig = options.tierConfigFile; return tierConfig == null ? Resources.toString( TierModule.class.getClassLoader().getResource(TIER_CONFIG_PATH), StandardCharsets.UTF_8) : Files.asCharSource(tierConfig, StandardCharsets.UTF_8).read(); } catch (IOException e) { LOG.error("Error loading tier configuration file."); throw new RuntimeException(e); } } @VisibleForTesting static TierConfig parseTierConfig(String config) { checkArgument(!Strings.isNullOrEmpty(config), "configuration cannot be empty"); try { return new ObjectMapper().readValue(config, TierConfig.class); } catch (IOException e) { LOG.error("Error parsing tier configuration file."); throw new RuntimeException(e); } } }
1,042
852
<reponame>malbouis/cmssw import FWCore.ParameterSet.Config as cms #------------------------------------------------ #AlCaReco filtering for HCAL isotrk: #------------------------------------------------ from Calibration.HcalAlCaRecoProducers.alcaHcalIsotrkProducer_cfi import * from Calibration.HcalAlCaRecoProducers.alcaHcalIsotrkFilter_cfi import * seqALCARECOHcalCalIsoTrkProducerFilter = cms.Sequence(alcaHcalIsotrkProducer * alcaHcalIsotrkFilter)
153
666
<reponame>djaen/lite-app- // // QIYIWeakTimer.h // QIYIMiniProgram // // Created by Breakerror on 2018/2/28. // Copyright © 2018年 Breakerror. All rights reserved. // #import <Foundation/Foundation.h> @interface QIYIWeakTimerTarget : NSObject @property (nonatomic, weak, readwrite) id target; @property (nonatomic, assign, readwrite) SEL selector; @property (nonatomic, weak, readwrite) NSTimer* timer; @end typedef void (^WeakTimerHandler)(id userInfo); @interface QIYIWeakTimer : NSObject +(NSTimer*) scheduledTimerWithTimeInterval:(NSTimeInterval)interval target:(id)aTarget selector:(SEL)aSelector userInfo:(id)userInfo repeats:(BOOL)repeats; +(NSTimer*) scheduledTimerWithTimeInterval:(NSTimeInterval)interval block:(WeakTimerHandler)block userInfo:(id)userInfo repeats:(BOOL)repeats; @end
522
337
<reponame>KamilKurde/AmazMod<filename>service/src/main/java/com/amazmod/service/support/NotificationStore.java package com.amazmod.service.support; import android.content.Context; import androidx.collection.ArrayMap; import com.amazmod.service.util.DeviceUtil; import com.huami.watch.notification.data.NotificationKeyData; import org.greenrobot.eventbus.EventBus; import org.tinylog.Logger; import java.util.Set; import amazmod.com.transport.data.NotificationData; public class NotificationStore { private static ArrayMap<String, NotificationData> customNotifications = new ArrayMap<>(); public static ArrayMap<String, String> keyMap = new ArrayMap<>(); public NotificationStore() { customNotifications = new ArrayMap<>(); keyMap = new ArrayMap<>(); } public static NotificationData getCustomNotification(String key) { return customNotifications.get(key); } public static int getCustomNotificationCount() { return customNotifications.size(); } public static void addCustomNotification(String key, NotificationData notificationData) { customNotifications.put(key, notificationData); keyMap.put(key, notificationData.getKey()); } public static void removeCustomNotification(String key, Context context) { NotificationData notificationData = NotificationStore.getCustomNotification(key); // Updates the notification counter only if del action is not send (NotificationData is null) if (notificationData == null) DeviceUtil.notificationCounter(context, -1,"NotificationWearActivity notification is null (del action will not be send)"); else{ // Remove custom notification sendRequestDeleteNotification(key, notificationData); customNotifications.remove(key); keyMap.remove(key); } } /*// Not used public static void removeCustomNotification(String key) { sendRequestDeleteNotification(key); customNotifications.remove(key); keyMap.remove(key); } */ public static String getKey(String key) { NotificationData notificationData = customNotifications.get(key); if (notificationData == null) return null; else return notificationData.getKey(); } public static Boolean getHideReplies(String key) { NotificationData notificationData = customNotifications.get(key); if (notificationData == null) return true; else return notificationData.getHideReplies(); } public static Boolean getForceCustom(String key) { NotificationData notificationData = customNotifications.get(key); if (notificationData == null) return true; else return notificationData.getForceCustom(); } public static int getTimeoutRelock(String key) { NotificationData notificationData = customNotifications.get(key); if (notificationData == null) return 0; else return notificationData.getTimeoutRelock(); } public static String getTitle(String key) { NotificationData notificationData = customNotifications.get(key); if (notificationData == null) return null; else return notificationData.getTitle(); } public static String getTime(String key) { NotificationData notificationData = customNotifications.get(key); if (notificationData == null) return null; else return notificationData.getTime(); } public static int[] getIcon(String key) { NotificationData notificationData = customNotifications.get(key); if (notificationData == null) return null; else return notificationData.getIcon(); } public static Set<String> getKeySet() { if (customNotifications != null) return customNotifications.keySet(); else return null; } public static void clear() { if (!customNotifications.isEmpty()) { for (String key : customNotifications.keySet()) sendRequestDeleteNotification(key); customNotifications.clear(); keyMap.clear(); } } public static void setNotificationCount(Context context) { setNotificationCount(context, getCustomNotificationCount()); } public static void setNotificationCount(Context context, int count) { DeviceUtil.notificationCounterSet(context, count); } private static boolean isEmpty() { return getCustomNotificationCount() == 0; } // Send notification delete private static void sendRequestDeleteNotification(String key) { sendRequestDeleteNotification(key, customNotifications.get(key)); } private static void sendRequestDeleteNotification(String key, NotificationData notificationData) { Logger.debug("NotificationStore sendRequestDeleteNotification key: {} ", key); if (notificationData == null) return; String pkg = key.split("\\|")[1]; // Logger.debug("NotificationStore sendRequestDeleteNotification pkg: {} ", pkg); // NotificationKeyData from(String pkg, int id, String tag, String key, String targetPkg) NotificationKeyData notificationKeyData = NotificationKeyData.from(pkg, notificationData.getId(),null, notificationData.getKey(), null); EventBus.getDefault().post(notificationKeyData); } }
2,025
3,913
<reponame>cksspk/ruoyi-vue-pro package cn.iocoder.yudao.framework.sms.core.client.impl.yunpian; import cn.hutool.core.util.ReflectUtil; import cn.iocoder.yudao.framework.test.core.ut.BaseMockitoUnitTest; import cn.iocoder.yudao.framework.common.core.KeyValue; import cn.iocoder.yudao.framework.common.exception.enums.GlobalErrorCodeConstants; import cn.iocoder.yudao.framework.sms.core.client.SmsCommonResult; import cn.iocoder.yudao.framework.sms.core.client.dto.SmsReceiveRespDTO; import cn.iocoder.yudao.framework.sms.core.client.dto.SmsSendRespDTO; import cn.iocoder.yudao.framework.sms.core.client.dto.SmsTemplateRespDTO; import cn.iocoder.yudao.framework.sms.core.enums.SmsTemplateAuditStatusEnum; import cn.iocoder.yudao.framework.sms.core.property.SmsChannelProperties; import cn.iocoder.yudao.framework.common.util.date.DateUtils; import com.google.common.collect.Lists; import com.yunpian.sdk.YunpianClient; import com.yunpian.sdk.api.SmsApi; import com.yunpian.sdk.api.TplApi; import com.yunpian.sdk.constant.YunpianConstant; import com.yunpian.sdk.model.Result; import com.yunpian.sdk.model.SmsSingleSend; import com.yunpian.sdk.model.Template; import org.junit.jupiter.api.Test; import org.mockito.InjectMocks; import org.mockito.Mock; import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.function.Function; import java.util.function.Supplier; import static cn.iocoder.yudao.framework.test.core.util.RandomUtils.*; import static com.yunpian.sdk.constant.Code.OK; import static org.junit.jupiter.api.Assertions.*; import static org.mockito.Mockito.*; /** * 对 {@link YunpianSmsClient} 的单元测试 * * @author 芋道源码 */ public class YunpianSmsClientTest extends BaseMockitoUnitTest { private final SmsChannelProperties properties = new SmsChannelProperties() .setApiKey(randomString()); // 随机一个 apiKey,避免构建报错 @InjectMocks private final YunpianSmsClient smsClient = new YunpianSmsClient(properties); @Mock private YunpianClient client; @Test public void testDoInit() { // 准备参数 // mock 方法 // 调用 smsClient.doInit(); // 断言 assertNotEquals(client, ReflectUtil.getFieldValue(smsClient, "client")); verify(client, times(1)).close(); } @Test @SuppressWarnings("unchecked") public void testDoSendSms() throws Throwable { // 准备参数 Long sendLogId = randomLongId(); String mobile = randomString(); String apiTemplateId = randomString(); List<KeyValue<String, Object>> templateParams = Lists.newArrayList( new KeyValue<>("code", 1234), new KeyValue<>("op", "login")); // mock sms 方法 SmsApi smsApi = mock(SmsApi.class); when(client.sms()).thenReturn(smsApi); // mock tpl_single_send 方法 Map<String, String> request = new HashMap<>(); request.put(YunpianConstant.MOBILE, mobile); request.put(YunpianConstant.TPL_ID, apiTemplateId); request.put(YunpianConstant.TPL_VALUE, "#code#=1234&#op#=login"); request.put(YunpianConstant.UID, String.valueOf(sendLogId)); request.put(YunpianConstant.CALLBACK_URL, properties.getCallbackUrl()); Result<SmsSingleSend> responseResult = randomPojo(Result.class, SmsSingleSend.class, o -> o.setCode(OK)); // API 发送成功的 code when(smsApi.tpl_single_send(eq(request))).thenReturn(responseResult); // 调用 SmsCommonResult<SmsSendRespDTO> result = smsClient.doSendSms(sendLogId, mobile, apiTemplateId, templateParams); // 断言 assertEquals(String.valueOf(responseResult.getCode()), result.getApiCode()); assertEquals(responseResult.getMsg() + " => " + responseResult.getDetail(), result.getApiMsg()); assertEquals(GlobalErrorCodeConstants.SUCCESS.getCode(), result.getCode()); assertEquals(GlobalErrorCodeConstants.SUCCESS.getMsg(), result.getMsg()); assertNull(result.getApiRequestId()); // 断言结果 assertEquals(String.valueOf(responseResult.getData().getSid()), result.getData().getSerialNo()); } @Test public void testDoParseSmsReceiveStatus() throws Throwable { // 准备参数 String text = "[{\"sid\":9527,\"uid\":1024,\"user_receive_time\":\"2014-03-17 22:55:21\",\"error_msg\":\"\",\"mobile\":\"15205201314\",\"report_status\":\"SUCCESS\"}]"; // mock 方法 // 调用 // 断言 // 调用 List<SmsReceiveRespDTO> statuses = smsClient.doParseSmsReceiveStatus(text); // 断言 assertEquals(1, statuses.size()); assertTrue(statuses.get(0).getSuccess()); assertEquals("", statuses.get(0).getErrorCode()); assertNull(statuses.get(0).getErrorMsg()); assertEquals("15205201314", statuses.get(0).getMobile()); assertEquals(DateUtils.buildTime(2014, 3, 17, 22, 55, 21), statuses.get(0).getReceiveTime()); assertEquals("9527", statuses.get(0).getSerialNo()); assertEquals(1024L, statuses.get(0).getLogId()); } @Test @SuppressWarnings("unchecked") public void testDoGetSmsTemplate() throws Throwable { // 准备参数 String apiTemplateId = randomString(); // mock tpl 方法 TplApi tplApi = mock(TplApi.class); when(client.tpl()).thenReturn(tplApi); // mock get 方法 Map<String, String> request = new HashMap<>(); request.put(YunpianConstant.APIKEY, properties.getApiKey()); request.put(YunpianConstant.TPL_ID, apiTemplateId); Result<List<Template>> responseResult = randomPojo(Result.class, List.class, o -> { o.setCode(OK); // API 发送成功的 code o.setData(randomPojoList(Template.class, t -> t.setCheck_status("SUCCESS"))); }); when(tplApi.get(eq(request))).thenReturn(responseResult); // 调用 SmsCommonResult<SmsTemplateRespDTO> result = smsClient.doGetSmsTemplate(apiTemplateId); // 断言 assertEquals(String.valueOf(responseResult.getCode()), result.getApiCode()); assertEquals(responseResult.getMsg() + " => " + responseResult.getDetail(), result.getApiMsg()); assertEquals(GlobalErrorCodeConstants.SUCCESS.getCode(), result.getCode()); assertEquals(GlobalErrorCodeConstants.SUCCESS.getMsg(), result.getMsg()); assertNull(result.getApiRequestId()); // 断言结果 Template template = responseResult.getData().get(0); assertEquals(template.getTpl_id().toString(), result.getData().getId()); assertEquals(template.getTpl_content(), result.getData().getContent()); assertEquals(SmsTemplateAuditStatusEnum.SUCCESS.getStatus(), result.getData().getAuditStatus()); assertEquals(template.getReason(), result.getData().getAuditReason()); } @Test public void testConvertSmsTemplateAuditStatus() { assertEquals(SmsTemplateAuditStatusEnum.CHECKING.getStatus(), smsClient.convertSmsTemplateAuditStatus("CHECKING")); assertEquals(SmsTemplateAuditStatusEnum.SUCCESS.getStatus(), smsClient.convertSmsTemplateAuditStatus("SUCCESS")); assertEquals(SmsTemplateAuditStatusEnum.FAIL.getStatus(), smsClient.convertSmsTemplateAuditStatus("FAIL")); assertThrows(IllegalArgumentException.class, () -> smsClient.convertSmsTemplateAuditStatus("test"), "未知审核状态(test)"); } @Test public void testInvoke_throwable() { // 准备参数 Supplier<Result<Object>> requestConsumer = () -> new Result<>().setThrowable(new NullPointerException()); // mock 方法 // 调用,并断言异常 assertThrows(NullPointerException.class, () -> smsClient.invoke(requestConsumer, null)); } @Test @SuppressWarnings("unchecked") public void testInvoke_success() throws Throwable { // 准备参数 Result<SmsSingleSend> responseResult = randomPojo(Result.class, SmsSingleSend.class, o -> o.setCode(OK)); Supplier<Result<SmsSingleSend>> requestConsumer = () -> responseResult; Function<SmsSingleSend, SmsSendRespDTO> responseConsumer = smsSingleSend -> new SmsSendRespDTO().setSerialNo(String.valueOf(responseResult.getData().getSid())); // mock 方法 // 调用 SmsCommonResult<SmsSendRespDTO> result = smsClient.invoke(requestConsumer, responseConsumer); // 断言 assertEquals(String.valueOf(responseResult.getCode()), result.getApiCode()); assertEquals(responseResult.getMsg() + " => " + responseResult.getDetail(), result.getApiMsg()); assertEquals(GlobalErrorCodeConstants.SUCCESS.getCode(), result.getCode()); assertEquals(GlobalErrorCodeConstants.SUCCESS.getMsg(), result.getMsg()); assertNull(result.getApiRequestId()); assertEquals(String.valueOf(responseResult.getData().getSid()), result.getData().getSerialNo()); } }
3,960
872
import string def get_str(ea): s = list() while True: b = Byte(ea) if not b: break s.append(b) ea += 1 return s def unrot(ea): dec = '' for b in get_str(ea): if chr(b) in string.uppercase: base_char = ord('A') elif chr(b) in string.lowercase: base_char = ord('a') else: dec += chr(b) continue dec += chr(base_char+((b-base_char)+13)%26) return dec print 'START ----------' for ref in CodeRefsTo(ScreenEA(), 0): pushes = [] for ea in Heads(ref-20, ref): if GetMnem(ea)=='push': pushes.append( (GetMnem(ea), ea) ) # THIS IS THE SAME AS THE PREVIOUS LOOP #mnemonics = [ (GetMnem(ea), ea) for ea in Heads(ref-20, ref) if GetMnem(ea)=='push'] r = DataRefsFrom(pushes[-2][1]) if r: r=r[0] print hex(r), unrot(r) print 'END ----------'
489
988
/* * PROGRAM: JRD Access Method * MODULE: sqz.cpp * DESCRIPTION: Record compression/decompression * * The contents of this file are subject to the Interbase Public * License Version 1.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy * of the License at http://www.Inprise.com/IPL.html * * Software distributed under the License is distributed on an * "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express * or implied. See the License for the specific language governing * rights and limitations under the License. * * The Original Code was created by Inprise Corporation * and its predecessors. Portions created by Inprise Corporation are * Copyright (C) Inprise Corporation. * * All Rights Reserved. * Contributor(s): ______________________________________. */ #include "firebird.h" #include <string.h> #include "../jrd/sqz.h" #include "../jrd/req.h" #include "../jrd/err_proto.h" #include "../yvalve/gds_proto.h" using namespace Jrd; Compressor::Compressor(MemoryPool& pool, FB_SIZE_T length, const UCHAR* data) : m_control(pool), m_length(0) { UCHAR* control = m_control.getBuffer((length + 1) / 2, false); const UCHAR* const end = data + length; FB_SIZE_T count; FB_SIZE_T max; while ( (count = end - data) ) { const UCHAR* start = data; // Find length of non-compressable run if ((max = count - 1) > 1) { do { if (data[0] != data[1] || data[0] != data[2]) { data++; } else { count = data - start; break; } } while (--max > 1); } data = start + count; // Non-compressable runs are limited to 127 bytes while (count) { max = MIN(count, 127U); m_length += 1 + max; count -= max; *control++ = (UCHAR) max; } // Find compressible run. Compressable runs are limited to 128 bytes. if ((max = MIN(128, end - data)) >= 3) { start = data; const UCHAR c = *data; do { if (*data != c) { break; } ++data; } while (--max); *control++ = (UCHAR) (start - data); m_length += 2; } } // set array size to the really used length m_control.shrink(control - m_control.begin()); } FB_SIZE_T Compressor::applyDiff(FB_SIZE_T diffLength, const UCHAR* differences, FB_SIZE_T outLength, UCHAR* const output) { /************************************** * * Apply a differences (delta) to a record. * Return the length. * **************************************/ if (diffLength > MAX_DIFFERENCES) { BUGCHECK(176); // msg 176 bad difference record } const UCHAR* const end = differences + diffLength; UCHAR* p = output; const UCHAR* const p_end = output + outLength; while (differences < end && p < p_end) { const int l = (signed char) *differences++; if (l > 0) { if (p + l > p_end) { BUGCHECK(177); // msg 177 applied differences will not fit in record } if (differences + l > end) { BUGCHECK(176); // msg 176 bad difference record } memcpy(p, differences, l); p += l; differences += l; } else { p += -l; } } const FB_SIZE_T length = p - output; if (length > outLength || differences < end) { BUGCHECK(177); // msg 177 applied differences will not fit in record } return length; } FB_SIZE_T Compressor::pack(const UCHAR* input, FB_SIZE_T outLength, UCHAR* output) const { /************************************** * * Compress a string into an area of known length. * If it doesn't fit, throw BUGCHECK error. * **************************************/ const UCHAR* const start = input; const UCHAR* control = m_control.begin(); const UCHAR* const dcc_end = m_control.end(); int space = (int) outLength; while (control < dcc_end) { if (--space <= 0) { if (space == 0) { *output = 0; } return input - start; } int length = (signed char) *control++; *output++ = (UCHAR) length; if (length < 0) { --space; *output++ = *input; input += (-length) & 255; } else { if ((space -= length) < 0) { length += space; output[-1] = (UCHAR) length; if (length > 0) { memcpy(output, input, length); input += length; } return input - start; } if (length > 0) { memcpy(output, input, length); output += length; input += length; } } } BUGCHECK(178); // msg 178 record length inconsistent return 0; // shut up compiler warning } FB_SIZE_T Compressor::getPartialLength(FB_SIZE_T inLength, const UCHAR* input) const { /************************************** * * Same as pack() without the output. * If it doesn't fit, return the number of bytes that did. * **************************************/ const UCHAR* const start = input; const UCHAR* control = m_control.begin(); const UCHAR* const dcc_end = m_control.end(); int space = (int) inLength; while (control < dcc_end) { if (--space <= 0) { return input - start; } int length = (signed char) *control++; if (length < 0) { --space; input += (-length) & 255; } else { if ((space -= length) < 0) { length += space; input += length; return input - start; } input += length; } } BUGCHECK(178); // msg 178 record length inconsistent return 0; // shut up compiler warning } UCHAR* Compressor::unpack(FB_SIZE_T inLength, const UCHAR* input, FB_SIZE_T outLength, UCHAR* output) { /************************************** * * Decompress a compressed string into a buffer. * Return the address where the output stopped. * **************************************/ const UCHAR* const end = input + inLength; const UCHAR* const output_end = output + outLength; while (input < end) { const int len = (signed char) *input++; if (len < 0) { if (input >= end || (output - len) > output_end) { BUGCHECK(179); // msg 179 decompression overran buffer } const UCHAR c = *input++; memset(output, c, (-1 * len)); output -= len; } else { if ((output + len) > output_end) { BUGCHECK(179); // msg 179 decompression overran buffer } memcpy(output, input, len); output += len; input += len; } } if (output > output_end) { BUGCHECK(179); // msg 179 decompression overran buffer } return output; } FB_SIZE_T Compressor::makeNoDiff(FB_SIZE_T outLength, UCHAR* output) { /************************************** * * Generates differences record marking that there are no differences. * **************************************/ UCHAR* temp = output; int length = (int) outLength; while (length > 127) { *temp++ = -127; length -= 127; } if (length) { *temp++ = (UCHAR) -length; } return temp - output; } FB_SIZE_T Compressor::makeDiff(FB_SIZE_T length1, const UCHAR* rec1, FB_SIZE_T length2, UCHAR* rec2, FB_SIZE_T outLength, UCHAR* output) { /************************************** * * Compute differences between two records. The difference * record, when applied to the first record, produces the * second record. * * difference_record := <control_string>... * * control_string := <positive_integer> <positive_integer data bytes> * := <negative_integer> * * Return the total length of the differences string. * **************************************/ UCHAR *p; #define STUFF(val) if (output < end) *output++ = val; else return MAX_ULONG; /* WHY IS THIS RETURNING MAX_ULONG ??? * It returns a large positive value to indicate to the caller that we ran out * of buffer space in the 'out' argument. Thus we could not create a * successful differences record. Now it is upto the caller to check the * return value of this function and figure out whether the differences record * was created or not. Check prepare_update() (JRD/vio.c) for further * information. Of course, the size for a 'differences' record is not expected * to go near 2^32 in the future. * * This was investigated as a part of solving bug 10206, bsriram - 25-Feb-1999. */ const UCHAR* const start = output; const UCHAR* const end = output + outLength; const UCHAR* const end1 = rec1 + MIN(length1, length2); const UCHAR* const end2 = rec2 + length2; while (end1 - rec1 > 2) { if (rec1[0] != rec2[0] || rec1[1] != rec2[1]) { p = output++; // cast this to LONG to take care of OS/2 pointer arithmetic // when rec1 is at the end of a segment, to avoid wrapping around const UCHAR* yellow = (UCHAR*) MIN((U_IPTR) end1, ((U_IPTR) rec1 + 127)) - 1; while (rec1 <= yellow && (rec1[0] != rec2[0] || (rec1 < yellow && rec1[1] != rec2[1]))) { STUFF(*rec2++); ++rec1; } *p = output - p - 1; continue; } for (p = rec2; rec1 < end1 && *rec1 == *rec2; rec1++, rec2++) ; // no-op // This "l" could be more than 32K since the Old and New records // could be the same for more than 32K characters. // MAX record size is currently 64K. Hence it is defined as "int". int l = p - rec2; while (l < -127) { STUFF(-127); l += 127; } if (l) { STUFF(l); } } while (rec2 < end2) { p = output++; // cast this to LONG to take care of OS/2 pointer arithmetic // when rec1 is at the end of a segment, to avoid wrapping around const UCHAR* yellow = (UCHAR*) MIN((U_IPTR) end2, ((U_IPTR) rec2 + 127)); while (rec2 < yellow) { STUFF(*rec2++); } *p = output - p - 1; } return output - start; #undef STUFF } void Compressor::pack(const UCHAR* input, UCHAR* output) const { /************************************** * * Compress a string into a sufficiently large area. * Don't check nuttin' -- go for speed, man, raw SPEED! * **************************************/ const UCHAR* control = m_control.begin(); const UCHAR* const dcc_end = m_control.end(); while (control < dcc_end) { const int length = (signed char) *control++; *output++ = (UCHAR) length; if (length < 0) { *output++ = *input; input -= length; } else if (length > 0) { memcpy(output, input, length); output += length; input += length; } } }
3,846
584
/* * Copyright 2017-2021 the original author or 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 * * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.springframework.data.history; import static org.assertj.core.api.Assertions.*; import java.sql.Timestamp; import java.time.Instant; import java.time.LocalDateTime; import java.time.ZoneOffset; import java.util.Date; import org.assertj.core.api.SoftAssertions; import org.junit.jupiter.api.Test; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.data.annotation.Reference; /** * Unit tests for {@link AnnotationRevisionMetadata}. * * @author <NAME> * @author <NAME> */ class AnnotationRevisionMetadataUnitTests { SoftAssertions softly = new SoftAssertions(); @Test // DATACMNS-1173 void exposesNoInformationOnEmptyProbe() { Sample sample = new Sample(); RevisionMetadata<Long> metadata = getMetadata(sample); assertThat(metadata.getRevisionNumber()).isEmpty(); assertThatIllegalStateException() // .isThrownBy(metadata::getRequiredRevisionNumber); assertThatIllegalStateException() // .isThrownBy(metadata::getRequiredRevisionInstant); } @Test // DATACMNS-1173 void exposesRevisionNumber() { Sample sample = new Sample(); sample.revisionNumber = 1L; RevisionMetadata<Long> metadata = getMetadata(sample); softly.assertThat(metadata.getRevisionNumber()).hasValue(1L); softly.assertThat(metadata.getRequiredRevisionNumber()).isEqualTo(1L); softly.assertAll(); } @Test // DATACMNS-1173 void exposesRevisionDateAndInstantForLocalDateTime() { Sample sample = new Sample(); sample.revisionDate = LocalDateTime.now(); Instant expectedInstant = sample.revisionDate.atZone(ZoneOffset.systemDefault()).toInstant(); RevisionMetadata<Long> metadata = getMetadata(sample); softly.assertThat(metadata.getRevisionInstant()).hasValue(expectedInstant); softly.assertThat(metadata.getRequiredRevisionInstant()).isEqualTo(expectedInstant); softly.assertAll(); } @Test // DATACMNS-1251 void exposesRevisionDateAndInstantForInstant() { SampleWithInstant sample = new SampleWithInstant(); sample.revisionInstant = Instant.now(); LocalDateTime expectedLocalDateTime = LocalDateTime.ofInstant(sample.revisionInstant, ZoneOffset.systemDefault()); RevisionMetadata<Long> metadata = getMetadata(sample); softly.assertThat(metadata.getRevisionInstant()).hasValue(sample.revisionInstant); softly.assertThat(metadata.getRequiredRevisionInstant()).isEqualTo(sample.revisionInstant); softly.assertAll(); } @Test // DATACMNS-1290 void exposesRevisionDateAndInstantForLong() { SampleWithLong sample = new SampleWithLong(); sample.revisionLong = 4711L; Instant expectedInstant = Instant.ofEpochMilli(sample.revisionLong); LocalDateTime expectedLocalDateTime = LocalDateTime.ofInstant(expectedInstant, ZoneOffset.systemDefault()); RevisionMetadata<Long> metadata = getMetadata(sample); softly.assertThat(metadata.getRevisionInstant()).hasValue(expectedInstant); softly.assertThat(metadata.getRequiredRevisionInstant()).isEqualTo(expectedInstant); softly.assertAll(); } @Test // DATACMNS-1384 void supportsTimestampRevisionInstant() { SampleWithTimestamp sample = new SampleWithTimestamp(); Instant now = Instant.now(); sample.revision = Timestamp.from(now); RevisionMetadata<Long> metadata = getMetadata(sample); assertThat(metadata.getRequiredRevisionInstant()).isEqualTo(now); } @Test // DATACMNS-1384 void supportsDateRevisionInstant() { SampleWithDate sample = new SampleWithDate(); Date date = new Date(); sample.revision = date; RevisionMetadata<Long> metadata = getMetadata(sample); assertThat(metadata.getRequiredRevisionInstant()).isEqualTo(date.toInstant()); } private static RevisionMetadata<Long> getMetadata(Object sample) { return new AnnotationRevisionMetadata<>(sample, Autowired.class, Reference.class); } static class Sample { @Autowired Long revisionNumber; @Reference LocalDateTime revisionDate; } static class SampleWithInstant { @Autowired Long revisionNumber; @Reference Instant revisionInstant; } static class SampleWithLong { @Autowired Long revisionNumber; @Reference long revisionLong; } // DATACMNS-1384 static class SampleWithTimestamp { @Reference Timestamp revision; } static class SampleWithDate { @Reference Date revision; } }
1,517
332
<filename>references/link_to_the_api_documentation/example_python_project/python/example_file.py<gh_stars>100-1000 #!/usr/bin/env python # -*- coding: utf-8 -*- """This is a module docstring. Let's try linking to the USD API documentation's stage class. :usd:`UsdStage`. ^^^ That link should be clickable Also you can alias links. e.g. :usd:`A method of some class <SdfPath::GetParentPath>`. :usd:`ArDefaultResolver`. Method access - :usd:`ArDefaultResolver::GetExtension`. Pointing to a header file - :usd:`defaultResolver.h`. """ # This docstring is an optional style for those using Google Style. def get_prim_path1(prim): """Send Prim variant set information to the terminal. Note: This docstring is written in Google Style. It requires the napoleon plugin to render correctly. Args: prim (:usd:`UsdPrim`): Some USD object. Returns: :usd:`SdfPath`: The namespace where `prim` lives. """ return prim.GetPath() # This docstring doesn't require any external Sphinx extensions to work. def get_prim_path2(prim): """Send Prim variant set information to the terminal. .. note :: This docstring does not require any plugins to render with Sphinx. :param prim: Some USD object. :type prim: :usd:`UsdPrim` :return: The namespace where `prim` lives. :rtype: :usd:`SdfPath` """ return prim.GetPath()
503
980
package org.jcodec.codecs.h264.decode; import static org.jcodec.codecs.h264.H264Const.BLK8x8_BLOCKS; import static org.jcodec.codecs.h264.H264Const.BLK_4x4_MB_OFF_LUMA; import static org.jcodec.codecs.h264.H264Const.BLK_8x8_IND; import static org.jcodec.codecs.h264.H264Const.BLK_8x8_MB_OFF_LUMA; import static org.jcodec.codecs.h264.H264Const.BLK_DISP_MAP; import static org.jcodec.codecs.h264.H264Const.COMP_BLOCK_4x4_LUT; import static org.jcodec.codecs.h264.H264Const.COMP_BLOCK_8x8_LUT; import static org.jcodec.codecs.h264.H264Const.COMP_POS_4x4_LUT; import static org.jcodec.codecs.h264.H264Const.COMP_POS_8x8_LUT; import static org.jcodec.codecs.h264.H264Const.identityMapping4; import static org.jcodec.codecs.h264.H264Const.PartPred.Bi; import static org.jcodec.codecs.h264.H264Const.PartPred.L0; import static org.jcodec.codecs.h264.H264Const.PartPred.L1; import static org.jcodec.codecs.h264.H264Utils.Mv.mvRef; import static org.jcodec.codecs.h264.H264Utils.Mv.mvX; import static org.jcodec.codecs.h264.H264Utils.Mv.mvY; import static org.jcodec.codecs.h264.H264Utils.Mv.packMv; import static org.jcodec.codecs.h264.decode.MBlockDecoderUtils.calcMVPredictionMedian; import static org.jcodec.codecs.h264.decode.MBlockDecoderUtils.collectPredictors; import static org.jcodec.codecs.h264.decode.MBlockDecoderUtils.debugPrint; import static org.jcodec.codecs.h264.decode.MBlockDecoderUtils.mergeResidual; import static org.jcodec.codecs.h264.decode.MBlockDecoderUtils.saveMvs; import static org.jcodec.codecs.h264.decode.MBlockDecoderUtils.savePrediction8x8; import static org.jcodec.codecs.h264.decode.PredictionMerger.mergePrediction; import static org.jcodec.common.tools.MathUtil.abs; import static org.jcodec.common.tools.MathUtil.clip; import org.jcodec.codecs.h264.H264Const; import org.jcodec.codecs.h264.H264Const.PartPred; import org.jcodec.codecs.h264.H264Utils.MvList; import org.jcodec.codecs.h264.decode.aso.Mapper; import org.jcodec.codecs.h264.io.model.Frame; import org.jcodec.codecs.h264.io.model.SliceHeader; import org.jcodec.common.logging.Logger; import org.jcodec.common.model.Picture; import org.jcodec.common.tools.MathUtil; /** * A decoder for B direct macroblocks * * @author The JCodec project */ public class MBlockDecoderBDirect extends MBlockDecoderBase { private Mapper mapper; public MBlockDecoderBDirect(Mapper mapper, SliceHeader sh, DeblockerInput di, int poc, DecoderState decoderState) { super(sh, di, poc, decoderState); this.mapper = mapper; } public void decode(MBlock mBlock, Picture mb, Frame[][] references) { int mbX = mapper.getMbX(mBlock.mbIdx); int mbY = mapper.getMbY(mBlock.mbIdx); boolean lAvb = mapper.leftAvailable(mBlock.mbIdx); boolean tAvb = mapper.topAvailable(mBlock.mbIdx); int mbAddr = mapper.getAddress(mBlock.mbIdx); boolean tlAvb = mapper.topLeftAvailable(mBlock.mbIdx); boolean trAvb = mapper.topRightAvailable(mBlock.mbIdx); predictBDirect(references, mbX, mbY, lAvb, tAvb, tlAvb, trAvb, mBlock.x, mBlock.partPreds, mb, identityMapping4); predictChromaInter(references, mBlock.x, mbX << 3, mbY << 3, 1, mb, mBlock.partPreds); predictChromaInter(references, mBlock.x, mbX << 3, mbY << 3, 2, mb, mBlock.partPreds); if (mBlock.cbpLuma() > 0 || mBlock.cbpChroma() > 0) { s.qp = (s.qp + mBlock.mbQPDelta + 52) % 52; } di.mbQps[0][mbAddr] = s.qp; residualLuma(mBlock, lAvb, tAvb, mbX, mbY); savePrediction8x8(s, mbX, mBlock.x); saveMvs(di, mBlock.x, mbX, mbY); int qp1 = calcQpChroma(s.qp, s.chromaQpOffset[0]); int qp2 = calcQpChroma(s.qp, s.chromaQpOffset[1]); decodeChromaResidual(mBlock, lAvb, tAvb, mbX, mbY, qp1, qp2); di.mbQps[1][mbAddr] = qp1; di.mbQps[2][mbAddr] = qp2; mergeResidual(mb, mBlock.ac, mBlock.transform8x8Used ? COMP_BLOCK_8x8_LUT : COMP_BLOCK_4x4_LUT, mBlock.transform8x8Used ? COMP_POS_8x8_LUT : COMP_POS_4x4_LUT); collectPredictors(s, mb, mbX); di.mbTypes[mbAddr] = mBlock.curMbType; di.tr8x8Used[mbAddr] = mBlock.transform8x8Used; } public void predictBDirect(Frame[][] refs, int mbX, int mbY, boolean lAvb, boolean tAvb, boolean tlAvb, boolean trAvb, MvList x, PartPred[] pp, Picture mb, int[] blocks) { if (sh.directSpatialMvPredFlag) predictBSpatialDirect(refs, mbX, mbY, lAvb, tAvb, tlAvb, trAvb, x, pp, mb, blocks); else predictBTemporalDirect(refs, mbX, mbY, lAvb, tAvb, tlAvb, trAvb, x, pp, mb, blocks); } private void predictBTemporalDirect(Frame[][] refs, int mbX, int mbY, boolean lAvb, boolean tAvb, boolean tlAvb, boolean trAvb, MvList x, PartPred[] pp, Picture mb, int[] blocks8x8) { for (int i = 0; i < blocks8x8.length; i++) { int blk8x8 = blocks8x8[i]; int blk4x4_0 = H264Const.BLK8x8_BLOCKS[blk8x8][0]; pp[blk8x8] = Bi; if (!sh.sps.direct8x8InferenceFlag) { int[] js = BLK8x8_BLOCKS[blk8x8]; for (int j = 0; j < js.length; j++) { int blk4x4 = js[j]; predTemp4x4(refs, mbX, mbY, x, blk4x4); int blkIndX = blk4x4 & 3; int blkIndY = blk4x4 >> 2; debugPrint("DIRECT_4x4 [%d, %d]: (%d,%d,%d), (%d,%d,%d)", blkIndY, blkIndX, x.mv0X(blk4x4), x.mv0Y(blk4x4), x.mv0R(blk4x4), x.mv1X(blk4x4), x.mv1Y(blk4x4), x.mv1R(blk4x4)); int blkPredX = (mbX << 6) + (blkIndX << 4); int blkPredY = (mbY << 6) + (blkIndY << 4); interpolator.getBlockLuma(refs[0][x.mv0R(blk4x4)], mbb[0], BLK_4x4_MB_OFF_LUMA[blk4x4], blkPredX + x.mv0X(blk4x4), blkPredY + x.mv0Y(blk4x4), 4, 4); interpolator.getBlockLuma(refs[1][0], mbb[1], BLK_4x4_MB_OFF_LUMA[blk4x4], blkPredX + x.mv1X(blk4x4), blkPredY + x.mv1Y(blk4x4), 4, 4); } } else { int blk4x4Pred = BLK_DISP_MAP[blk8x8 * 5]; predTemp4x4(refs, mbX, mbY, x, blk4x4Pred); propagatePred(x, blk8x8, blk4x4Pred); int blkIndX = blk4x4_0 & 3; int blkIndY = blk4x4_0 >> 2; debugPrint("DIRECT_8x8 [%d, %d]: (%d,%d,%d), (%d,%d)", blkIndY, blkIndX, x.mv0X(blk4x4_0), x.mv0Y(blk4x4_0), x.mv0R(blk4x4_0), x.mv1X(blk4x4_0), x.mv1Y(blk4x4_0), x.mv1R(blk4x4_0)); int blkPredX = (mbX << 6) + (blkIndX << 4); int blkPredY = (mbY << 6) + (blkIndY << 4); interpolator.getBlockLuma(refs[0][x.mv0R(blk4x4_0)], mbb[0], BLK_4x4_MB_OFF_LUMA[blk4x4_0], blkPredX + x.mv0X(blk4x4_0), blkPredY + x.mv0Y(blk4x4_0), 8, 8); interpolator.getBlockLuma(refs[1][0], mbb[1], BLK_4x4_MB_OFF_LUMA[blk4x4_0], blkPredX + x.mv1X(blk4x4_0), blkPredY + x.mv1Y(blk4x4_0), 8, 8); } mergePrediction(sh, x.mv0R(blk4x4_0), x.mv1R(blk4x4_0), Bi, 0, mbb[0].getPlaneData(0), mbb[1].getPlaneData(0), BLK_4x4_MB_OFF_LUMA[blk4x4_0], 16, 8, 8, mb.getPlaneData(0), refs, poc); } } private void predTemp4x4(Frame[][] refs, int mbX, int mbY, MvList x, int blk4x4) { int mbWidth = sh.sps.picWidthInMbsMinus1 + 1; Frame picCol = refs[1][0]; int blkIndX = blk4x4 & 3; int blkIndY = blk4x4 >> 2; int blkPosX = (mbX << 2) + blkIndX; int blkPosY = (mbY << 2) + blkIndY; int mvCol = picCol.getMvs().getMv(blkPosX, blkPosY, 0); Frame refL0; int refIdxL0; if (mvRef(mvCol) == -1) { mvCol = picCol.getMvs().getMv(blkPosX, blkPosY, 1); if (mvRef(mvCol) == -1) { refIdxL0 = 0; refL0 = refs[0][0]; } else { refL0 = picCol.getRefsUsed()[mbY * mbWidth + mbX][1][mvRef(mvCol)]; refIdxL0 = findPic(refs[0], refL0); } } else { refL0 = picCol.getRefsUsed()[mbY * mbWidth + mbX][0][mvRef(mvCol)]; refIdxL0 = findPic(refs[0], refL0); } int td = MathUtil.clip(picCol.getPOC() - refL0.getPOC(), -128, 127); if (!refL0.isShortTerm() || td == 0) { x.setPair(blk4x4, packMv(mvX(mvCol), mvY(mvCol), refIdxL0), 0); } else { int tb = MathUtil.clip(poc - refL0.getPOC(), -128, 127); int tx = (16384 + Math.abs(td / 2)) / td; int dsf = clip((tb * tx + 32) >> 6, -1024, 1023); x.setPair(blk4x4, packMv((dsf * mvX(mvCol) + 128) >> 8, (dsf * mvY(mvCol) + 128) >> 8, refIdxL0), packMv((x.mv0X(blk4x4) - mvX(mvCol)), (x.mv0Y(blk4x4) - mvY(mvCol)), 0)); } } private int findPic(Frame[] frames, Frame refL0) { for (int i = 0; i < frames.length; i++) if (frames[i] == refL0) return i; Logger.error("RefPicList0 shall contain refPicCol"); return 0; } private void predictBSpatialDirect(Frame[][] refs, int mbX, int mbY, boolean lAvb, boolean tAvb, boolean tlAvb, boolean trAvb, MvList x, PartPred[] pp, Picture mb, int[] blocks8x8) { int a0 = s.mvLeft.getMv(0, 0), a1 = s.mvLeft.getMv(0, 1); int b0 = s.mvTop.getMv(mbX << 2, 0), b1 = s.mvTop.getMv(mbX << 2, 1); int c0 = s.mvTop.getMv((mbX << 2) + 4, 0), c1 = s.mvTop.getMv((mbX << 2) + 4, 1); int d0 = s.mvTopLeft.getMv(0, 0); int d1 = s.mvTopLeft.getMv(0, 1); int refIdxL0 = calcRef(a0, b0, c0, d0, lAvb, tAvb, tlAvb, trAvb, mbX); int refIdxL1 = calcRef(a1, b1, c1, d1, lAvb, tAvb, tlAvb, trAvb, mbX); if (refIdxL0 < 0 && refIdxL1 < 0) { for (int i = 0; i < blocks8x8.length; i++) { int blk8x8 = blocks8x8[i]; int[] js = BLK8x8_BLOCKS[blk8x8]; for (int j = 0; j < js.length; j++) { int blk4x4 = js[j]; x.setPair(blk4x4, 0, 0); } pp[blk8x8] = Bi; int blkOffX = (blk8x8 & 1) << 5; int blkOffY = (blk8x8 >> 1) << 5; interpolator.getBlockLuma(refs[0][0], mbb[0], BLK_8x8_MB_OFF_LUMA[blk8x8], (mbX << 6) + blkOffX, (mbY << 6) + blkOffY, 8, 8); interpolator.getBlockLuma(refs[1][0], mbb[1], BLK_8x8_MB_OFF_LUMA[blk8x8], (mbX << 6) + blkOffX, (mbY << 6) + blkOffY, 8, 8); PredictionMerger.mergePrediction(sh, 0, 0, PartPred.Bi, 0, mbb[0].getPlaneData(0), mbb[1].getPlaneData(0), BLK_8x8_MB_OFF_LUMA[blk8x8], 16, 8, 8, mb.getPlaneData(0), refs, poc); debugPrint("DIRECT_8x8 [%d, %d]: (0,0,0), (0,0,0)", (blk8x8 & 2), ((blk8x8 << 1) & 2)); } return; } int mvX0 = calcMVPredictionMedian(a0, b0, c0, d0, lAvb, tAvb, trAvb, tlAvb, refIdxL0, 0); int mvY0 = calcMVPredictionMedian(a0, b0, c0, d0, lAvb, tAvb, trAvb, tlAvb, refIdxL0, 1); int mvX1 = calcMVPredictionMedian(a1, b1, c1, d1, lAvb, tAvb, trAvb, tlAvb, refIdxL1, 0); int mvY1 = calcMVPredictionMedian(a1, b1, c1, d1, lAvb, tAvb, trAvb, tlAvb, refIdxL1, 1); Frame col = refs[1][0]; PartPred partPred = refIdxL0 >= 0 && refIdxL1 >= 0 ? Bi : (refIdxL0 >= 0 ? L0 : L1); for (int i = 0; i < blocks8x8.length; i++) { int blk8x8 = blocks8x8[i]; int blk4x4_0 = H264Const.BLK8x8_BLOCKS[blk8x8][0]; if (!sh.sps.direct8x8InferenceFlag) { int[] js = BLK8x8_BLOCKS[blk8x8]; for (int j = 0; j < js.length; j++) { int blk4x4 = js[j]; pred4x4(mbX, mbY, x, pp, refIdxL0, refIdxL1, mvX0, mvY0, mvX1, mvY1, col, partPred, blk4x4); int blkIndX = blk4x4 & 3; int blkIndY = blk4x4 >> 2; debugPrint("DIRECT_4x4 [%d, %d]: (%d,%d,%d), (%d,%d," + refIdxL1 + ")", blkIndY, blkIndX, x.mv0X(blk4x4), x.mv0Y(blk4x4), refIdxL0, x.mv1X(blk4x4), x.mv1Y(blk4x4)); int blkPredX = (mbX << 6) + (blkIndX << 4); int blkPredY = (mbY << 6) + (blkIndY << 4); if (refIdxL0 >= 0) interpolator.getBlockLuma(refs[0][refIdxL0], mbb[0], BLK_4x4_MB_OFF_LUMA[blk4x4], blkPredX + x.mv0X(blk4x4), blkPredY + x.mv0Y(blk4x4), 4, 4); if (refIdxL1 >= 0) interpolator.getBlockLuma(refs[1][refIdxL1], mbb[1], BLK_4x4_MB_OFF_LUMA[blk4x4], blkPredX + x.mv1X(blk4x4), blkPredY + x.mv1Y(blk4x4), 4, 4); } } else { int blk4x4Pred = BLK_DISP_MAP[blk8x8 * 5]; pred4x4(mbX, mbY, x, pp, refIdxL0, refIdxL1, mvX0, mvY0, mvX1, mvY1, col, partPred, blk4x4Pred); propagatePred(x, blk8x8, blk4x4Pred); int blkIndX = blk4x4_0 & 3; int blkIndY = blk4x4_0 >> 2; debugPrint("DIRECT_8x8 [%d, %d]: (%d,%d,%d), (%d,%d,%d)", blkIndY, blkIndX, x.mv0X(blk4x4_0), x.mv0Y(blk4x4_0), refIdxL0, x.mv1X(blk4x4_0), x.mv1Y(blk4x4_0), refIdxL1); int blkPredX = (mbX << 6) + (blkIndX << 4); int blkPredY = (mbY << 6) + (blkIndY << 4); if (refIdxL0 >= 0) interpolator.getBlockLuma(refs[0][refIdxL0], mbb[0], BLK_4x4_MB_OFF_LUMA[blk4x4_0], blkPredX + x.mv0X(blk4x4_0), blkPredY + x.mv0Y(blk4x4_0), 8, 8); if (refIdxL1 >= 0) interpolator.getBlockLuma(refs[1][refIdxL1], mbb[1], BLK_4x4_MB_OFF_LUMA[blk4x4_0], blkPredX + x.mv1X(blk4x4_0), blkPredY + x.mv1Y(blk4x4_0), 8, 8); } PredictionMerger.mergePrediction(sh, x.mv0R(blk4x4_0), x.mv1R(blk4x4_0), refIdxL0 >= 0 ? (refIdxL1 >= 0 ? Bi : L0) : L1, 0, mbb[0].getPlaneData(0), mbb[1].getPlaneData(0), BLK_4x4_MB_OFF_LUMA[blk4x4_0], 16, 8, 8, mb.getPlaneData(0), refs, poc); } } private int calcRef(int a0, int b0, int c0, int d0, boolean lAvb, boolean tAvb, boolean tlAvb, boolean trAvb, int mbX) { return minPos(minPos(lAvb ? mvRef(a0) : -1, tAvb ? mvRef(b0) : -1), trAvb ? mvRef(c0) : (tlAvb ? mvRef(d0) : -1)); } private void propagatePred(MvList x, int blk8x8, int blk4x4Pred) { int b0 = BLK8x8_BLOCKS[blk8x8][0]; int b1 = BLK8x8_BLOCKS[blk8x8][1]; int b2 = BLK8x8_BLOCKS[blk8x8][2]; int b3 = BLK8x8_BLOCKS[blk8x8][3]; x.copyPair(b0, x, blk4x4Pred); x.copyPair(b1, x, blk4x4Pred); x.copyPair(b2, x, blk4x4Pred); x.copyPair(b3, x, blk4x4Pred); } private void pred4x4(int mbX, int mbY, MvList x, PartPred[] pp, int refL0, int refL1, int mvX0, int mvY0, int mvX1, int mvY1, Frame col, PartPred partPred, int blk4x4) { int blkIndX = blk4x4 & 3; int blkIndY = blk4x4 >> 2; int blkPosX = (mbX << 2) + blkIndX; int blkPosY = (mbY << 2) + blkIndY; int mvCol = col.getMvs().getMv(blkPosX, blkPosY, 0); if (mvRef(mvCol) == -1) mvCol = col.getMvs().getMv(blkPosX, blkPosY, 1); boolean colZero = col.isShortTerm() && mvRef(mvCol) == 0 && (abs(mvX(mvCol)) >> 1) == 0 && (abs(mvY(mvCol)) >> 1) == 0; int x0 = packMv(0, 0, refL0), x1 = packMv(0, 0, refL1); if (refL0 > 0 || !colZero) { x0 = packMv(mvX0, mvY0, refL0); } if (refL1 > 0 || !colZero) { x1 = packMv(mvX1, mvY1, refL1); } x.setPair(blk4x4, x0, x1); pp[BLK_8x8_IND[blk4x4]] = partPred; } private int minPos(int a, int b) { return a >= 0 && b >= 0 ? Math.min(a, b) : Math.max(a, b); } }
9,658
304
<reponame>apolovyi/warnings-ng-plugin package io.jenkins.plugins.analysis.core.util; /** * Handles references to issues in the console log. * * @author <NAME> */ public final class ConsoleLogHandler { /** ID that indicates that an issue references a line in the console log of a build. */ public static final String JENKINS_CONSOLE_LOG_FILE_NAME_ID = "jenkins-console.log"; /** * Returns whether the specified issue refers to a line in the console log. * * @param fileName * the affected file * * @return {@code true} if the issue refers to a line in the console log, {@code false} if the issue refers to a * source code file in the workspace */ public static boolean isInConsoleLog(final String fileName) { return JENKINS_CONSOLE_LOG_FILE_NAME_ID.equals(fileName); } private ConsoleLogHandler() { // prevents instantiation } }
332
419
<filename>Hypodermic/InstanceFactory.h #pragma once #include <functional> #include <memory> namespace Hypodermic { class IRegistration; class IResolutionContext; typedef std::function< std::shared_ptr< void >(const IRegistration&, IResolutionContext&) > InstanceFactory; } // namespace Hypodermic
103
852
<reponame>ckamtsikis/cmssw // -*- C++ -*- // // Package: SimDataFormats/Associations // Class : MuonToTrackingParticleAssociatorBaseImpl // // Implementation: // [Notes on implementation] // // Original Author: <NAME> // Created: Wed, 07 Jan 2015 21:15:26 GMT // // system include files // user include files #include "SimDataFormats/Associations/interface/MuonToTrackingParticleAssociatorBaseImpl.h" // // constants, enums and typedefs // // // static data member definitions // // // constructors and destructor // reco::MuonToTrackingParticleAssociatorBaseImpl::MuonToTrackingParticleAssociatorBaseImpl() {} reco::MuonToTrackingParticleAssociatorBaseImpl::~MuonToTrackingParticleAssociatorBaseImpl() {}
262
1,102
#include "internal/barray.h" #include <string.h> void * bit_array_create(size_t size) { size_t bsize = ((size + 7) >> 3) + sizeof(size_t); void * ret = calloc(1, bsize); if (ret) *(size_t *)ret = size; return ret; } void bit_array_destroy(void * array) { if (array) free(array); } void * bit_array_dup(void * array) { if (array) { size_t * size = (size_t *) array; size_t bsize = ((*size + 7) >> 3) + sizeof(*size); void * ret = malloc(bsize); if (ret) memcpy(ret, array, bsize); return ret; } return NULL; } void bit_array_reset(void * array) { if (array) { size_t * size = (size_t *) array; size_t bsize = (*size + 7) >> 3; memset(size + 1, 0, bsize); } } void bit_array_set(void * array, size_t bit) { if (array) { size_t * size = (size_t *) array; if (bit < *size) { unsigned char * ptr = (unsigned char *)(size + 1); ptr[bit >> 3] |= (1U << (bit & 7)); } } } void bit_array_set_range(void * array, size_t bit, size_t count) { if (array && count) { size_t * size = (size_t *) array; if (bit < *size) { unsigned char * ptr = (unsigned char *)(size + 1); size_t i; for (i = bit; i < *size && i < bit + count; ++i) ptr[i >> 3] |= (1U << (i & 7)); } } } int bit_array_test(void * array, size_t bit) { if (array) { size_t * size = (size_t *) array; if (bit < *size) { unsigned char * ptr = (unsigned char *)(size + 1); if (ptr[bit >> 3] & (1U << (bit & 7))) { return 1; } } } return 0; } int bit_array_test_range(void * array, size_t bit, size_t count) { if (array) { size_t * size = (size_t *) array; if (bit < *size) { unsigned char * ptr = (unsigned char *)(size + 1); if ((bit & 7) && (count > 8)) { while ((bit < *size) && count && (bit & 7)) { if (ptr[bit >> 3] & (1U << (bit & 7))) return 1; bit++; count--; } } if (!(bit & 7)) { while (((*size - bit) >= 8) && (count >= 8)) { if (ptr[bit >> 3]) return 1; bit += 8; count -= 8; } } while ((bit < *size) && count) { if (ptr[bit >> 3] & (1U << (bit & 7))) return 1; bit++; count--; } } } return 0; } void bit_array_clear(void * array, size_t bit) { if (array) { size_t * size = (size_t *) array; if (bit < *size) { unsigned char * ptr = (unsigned char *)(size + 1); ptr[bit >> 3] &= ~(1U << (bit & 7)); } } } void bit_array_clear_range(void * array, size_t bit, size_t count) { if (array && count) { size_t * size = (size_t *) array; if (bit < *size) { unsigned char * ptr = (unsigned char *)(size + 1); size_t i; for (i = bit; i < *size && i < bit + count; ++i) ptr[i >> 3] &= ~(1U << (i & 7)); } } } void bit_array_merge(void * dest, void * source, size_t offset) { if (dest && source) { size_t * dsize = (size_t *) dest; size_t * ssize = (size_t *) source; size_t soffset = 0; while (offset < *dsize && soffset < *ssize) { if (bit_array_test(source, soffset)) { bit_array_set(dest, offset); } soffset++; offset++; } } } void bit_array_mask(void * dest, void * source, size_t offset) { if (dest && source) { size_t * dsize = (size_t *) dest; size_t * ssize = (size_t *) source; size_t soffset = 0; while (offset < *dsize && soffset < *ssize) { if (bit_array_test(source, soffset)) { bit_array_clear(dest, offset); } soffset++; offset++; } } }
1,970
743
package pl.allegro.tech.hermes.consumers.consumer.oauth; import com.google.common.util.concurrent.ThreadFactoryBuilder; import org.eclipse.jetty.http.HttpStatus; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import pl.allegro.tech.hermes.api.Subscription; import pl.allegro.tech.hermes.api.SubscriptionName; import pl.allegro.tech.hermes.consumers.consumer.sender.MessageSendingResult; import java.util.concurrent.Executors; import java.util.concurrent.ScheduledExecutorService; import java.util.concurrent.ThreadFactory; import java.util.concurrent.TimeUnit; public class OAuthSubscriptionHandler { private static final Logger logger = LoggerFactory.getLogger(OAuthSubscriptionHandler.class); private final SubscriptionName subscriptionName; private final String providerName; private final OAuthAccessTokens accessTokens; private final OAuthTokenRequestRateLimiter rateLimiter; private final ScheduledExecutorService executorService; public OAuthSubscriptionHandler(SubscriptionName subscriptionName, String providerName, OAuthAccessTokens accessTokens, OAuthTokenRequestRateLimiter rateLimiter) { this.subscriptionName = subscriptionName; this.providerName = providerName; this.accessTokens = accessTokens; this.rateLimiter = rateLimiter; ThreadFactory threadFactory = new ThreadFactoryBuilder().setNameFormat(subscriptionName.getQualifiedName() + "-oauth-handler-%d").build(); this.executorService = Executors.newScheduledThreadPool(1, threadFactory); } public void initialize() { rateLimiter.tryAcquire(); accessTokens.loadToken(subscriptionName); } public String getProviderName() { return providerName; } public void handleSuccess() { rateLimiter.resetRate(); } public void handleFailed(Subscription subscription, MessageSendingResult result) { SubscriptionName subscriptionName = subscription.getQualifiedName(); if (shouldTryRefreshingToken(subscriptionName, result)) { if (rateLimiter.tryAcquire()) { logger.info("Refreshing token for subscription {}", subscriptionName); rateLimiter.reduceRate(); executorService.schedule(() -> accessTokens.refreshToken(subscriptionName), 0, TimeUnit.MILLISECONDS); } } } private boolean shouldTryRefreshingToken(SubscriptionName subscriptionName, MessageSendingResult result) { return result.getStatusCode() == HttpStatus.UNAUTHORIZED_401 || !accessTokens.tokenExists(subscriptionName); } }
921
417
<filename>vtorcs-RL-color/scr-client-java/mr_racer/src/de/delbrueg/experiment/Experiment.java /* * To change this template, choose Tools | Templates * and open the template in the editor. */ package de.delbrueg.experiment; import de.delbrueg.steering.behaviour.CircleSteeringSettings; /** * * @author Tim */ public class Experiment { public Plans plan; public String getContentHeadLine(String seperator){ String content = ""; content += plan.getContentHeadLine(seperator); content += seperator; content += CircleSteeringSettings.getContentHeadLine(seperator); return content; } public String getContentAsLine(String seperator){ String content = ""; content += plan.getContentAsLine(seperator); content += seperator; content += CircleSteeringSettings.getContentAsLine(seperator); return content; } }
336
437
<reponame>anurag-lambdatest/screen_capture_lite #include <glad/gl.h> #define GLFW_INCLUDE_NONE #include "ScreenCapture.h" #include <GLFW/glfw3.h> #include <iostream> using namespace std::chrono_literals; void CheckStatus(GLuint obj, bool isShader) { GLint status = GL_FALSE, log[1 << 11] = {0}; (isShader ? glGetShaderiv : glGetProgramiv)(obj, isShader ? GL_COMPILE_STATUS : GL_LINK_STATUS, &status); if (status == GL_TRUE) return; (isShader ? glGetShaderInfoLog : glGetProgramInfoLog)(obj, sizeof(log), NULL, (GLchar *)log); std::cerr << (GLchar *)log << "\n"; std::exit(EXIT_FAILURE); } void AttachShader(GLuint program, GLenum type, const char *src) { GLuint shader = glCreateShader(type); glShaderSource(shader, 1, &src, NULL); glCompileShader(shader); CheckStatus(shader, true); glAttachShader(program, shader); glDeleteShader(shader); } const char *vert = R"GLSL( #version 330 core layout(location = 0) in vec3 aPos; layout(location = 1) in vec3 aColor; layout(location = 2) in vec2 aTexCoord; out vec3 ourColor; out vec2 TexCoord; void main() { gl_Position = vec4(aPos, 1.0); ourColor = aColor; TexCoord = aTexCoord; } )GLSL"; const char *frag = R"GLSL( #version 330 core out vec4 FragColor; in vec3 ourColor; in vec2 TexCoord; uniform sampler2D ourTexture; void main() { FragColor = texture(ourTexture, TexCoord); } )GLSL"; void ExtractAndConvertToRGBA(const SL::Screen_Capture::Image &img, unsigned char *dst, size_t dst_size) { assert(dst_size >= static_cast<size_t>(SL::Screen_Capture::Width(img) * SL::Screen_Capture::Height(img) * sizeof(SL::Screen_Capture::ImageBGRA))); auto imgsrc = StartSrc(img); auto imgdist = dst; if (img.isContiguous) { memcpy(imgdist, imgsrc, dst_size); } else { for (auto h = 0; h < Height(img); h++) { auto startimgsrc = imgsrc; for (auto w = 0; w < Width(img); w++) { *imgdist++ = imgsrc->R; *imgdist++ = imgsrc->G; *imgdist++ = imgsrc->B; *imgdist++ = 0; // alpha should be zero imgsrc++; } imgsrc = SL::Screen_Capture::GotoNextRow(img, startimgsrc); } } } int main(int, char **) { glfwSetErrorCallback([](int, const char *desc) { std::cerr << desc << "\n"; std::exit(EXIT_FAILURE); }); glfwInit(); glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 3); glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 3); glfwWindowHint(GLFW_OPENGL_FORWARD_COMPAT, GLFW_TRUE); glfwWindowHint(GLFW_OPENGL_PROFILE, GLFW_OPENGL_CORE_PROFILE); GLFWwindow *window = glfwCreateWindow(640, 480, "GLFW", NULL, NULL); glfwMakeContextCurrent(window); gladLoadGL(glfwGetProcAddress); GLuint prog = glCreateProgram(); AttachShader(prog, GL_VERTEX_SHADER, vert); AttachShader(prog, GL_FRAGMENT_SHADER, frag); glLinkProgram(prog); CheckStatus(prog, false); float vertices[] = {-0.5f, -0.5f, 0.0f, 1.0f, 1.0f, 0.0f, 0.0f, 0.0f, 0.5f, -0.5f, 0.0f, 0.0f, 1.0f, 0.0f, 1.0f, 0.0f, 0.5f, 0.5f, 0.0f, 1.0f, 0.0f, 0.0f, 1.0f, 1.0f, -0.5f, 0.5f, 0.0f, 1.0f, 1.0f, 0.0f, 0.0f, 1.0f}; unsigned int indices[] = {0, 1, 2, 2, 3, 0}; unsigned int VBO, VAO, EBO; glGenVertexArrays(1, &VAO); glGenBuffers(1, &VBO); glGenBuffers(1, &EBO); glBindVertexArray(VAO); glBindBuffer(GL_ARRAY_BUFFER, VBO); glBufferData(GL_ARRAY_BUFFER, sizeof(vertices), vertices, GL_STATIC_DRAW); glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, EBO); glBufferData(GL_ELEMENT_ARRAY_BUFFER, sizeof(indices), indices, GL_STATIC_DRAW); glVertexAttribPointer(0, 3, GL_FLOAT, GL_FALSE, 8 * sizeof(float), (void *)0); glEnableVertexAttribArray(0); glVertexAttribPointer(1, 3, GL_FLOAT, GL_FALSE, 8 * sizeof(float), (void *)(3 * sizeof(float))); glEnableVertexAttribArray(1); glVertexAttribPointer(2, 2, GL_FLOAT, GL_FALSE, 8 * sizeof(float), (void *)(6 * sizeof(float))); glEnableVertexAttribArray(2); unsigned int texture; glGenTextures(1, &texture); glBindTexture(GL_TEXTURE_2D, texture); // Set texture wrap parameters glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT); // Set texture filtering paremeters glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR); // Load image, create texture auto onNewFramestart = std::chrono::high_resolution_clock::now(); std::atomic<int> onNewFramecounter = 0; auto mons = SL::Screen_Capture::GetMonitors(); mons.resize(1); auto monitor = mons[0]; std::atomic<int> imgbuffersize = monitor.Width * monitor.Height * sizeof(SL::Screen_Capture::ImageBGRA); std::unique_ptr<unsigned char[]> imgbuffer(std::make_unique<unsigned char[]>(imgbuffersize)); memset(imgbuffer.get(), 0, imgbuffersize); // create a black image to start with std::atomic<bool> imgbufferchanged = false; glPixelStorei(GL_UNPACK_ALIGNMENT, 1); glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, monitor.Width, monitor.Height, 0, GL_RGBA, GL_UNSIGNED_BYTE, imgbuffer.get()); glBindTexture(GL_TEXTURE_2D, 0); auto framgrabber = SL::Screen_Capture::CreateCaptureConfiguration([&]() { return mons; }) ->onNewFrame([&](const SL::Screen_Capture::Image &img, const SL::Screen_Capture::Monitor &monitor) { imgbufferchanged = true; ExtractAndConvertToRGBA(img, imgbuffer.get(), imgbuffersize); if (std::chrono::duration_cast<std::chrono::milliseconds>(std::chrono::high_resolution_clock::now() - onNewFramestart).count() >= 1000) { std::cout << "onNewFrame fps" << onNewFramecounter << std::endl; onNewFramecounter = 0; onNewFramestart = std::chrono::high_resolution_clock::now(); } onNewFramecounter += 1; }) ->start_capturing(); framgrabber->setFrameChangeInterval(std::chrono::milliseconds(100)); while (!glfwWindowShouldClose(window)) { glClearColor(0.2f, 0.3f, 0.3f, 1.0f); glClear(GL_COLOR_BUFFER_BIT); if (imgbufferchanged) { glTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, monitor.Width, monitor.Height, GL_RGBA, GL_UNSIGNED_BYTE, imgbuffer.get()); imgbufferchanged = false; } // Render stuff glUseProgram(prog); unsigned int texture_unit = 0; glActiveTexture(GL_TEXTURE0 + texture_unit); glUniform1i(glGetUniformLocation(prog, "ourTexture"), texture_unit); glBindTexture(GL_TEXTURE_2D, texture); glBindVertexArray(VAO); glDrawElements(GL_TRIANGLES, 6, GL_UNSIGNED_INT, 0); glBindVertexArray(0); glfwSwapBuffers(window); glfwPollEvents(); } }
3,193
14,668
// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_ZOOM_ZOOM_OBSERVER_H_ #define COMPONENTS_ZOOM_ZOOM_OBSERVER_H_ #include "components/zoom/zoom_controller.h" namespace zoom { // Interface for objects that wish to be notified of changes in ZoomController. class ZoomObserver { public: // Notification that the zoom percentage has changed. virtual void OnZoomChanged(const ZoomController::ZoomChangedEventData& data) { } protected: virtual ~ZoomObserver() {} }; } // namespace zoom #endif // COMPONENTS_ZOOM_ZOOM_OBSERVER_H_
224
5,169
{ "name": "TDAppMonitorKit", "version": "0.0.2", "summary": "性能监测", "homepage": "https://github.com/BeckWang0912/TDAppMonitorKit", "license": { "type": "MIT", "file": "LICENSE" }, "description": "TDAppMonitorKit 是一个性能监测工具,集成了UI、CPU、Memory检测分析", "authors": { "IMAC-AF9B8D": "<EMAIL>" }, "platforms": { "ios": "8.0" }, "source": { "git": "https://github.com/BeckWang0912/TDAppMonitorKit.git", "tag": "v0.0.2" }, "source_files": [ "TDAppMonitorKit/Fluency/", "TDAppMonitorKit/FPS/", "TDAppMonitorKit/Resource/", "TDAppMonitorKit/Tools/**/*.{h,m}" ], "requires_arc": true }
330
755
<filename>python/neuroglancer/coordinate_space.py<gh_stars>100-1000 # coding=utf-8 # @license # Copyright 2019-2020 Google Inc. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. """Wrappers for representing a Neuroglancer coordinate space.""" import collections import numpy as np __all__ = [] def export(obj): __all__.append(obj.__name__) return obj si_prefixes = { 'Y': 24, 'Z': 21, 'E': 18, 'P': 15, 'T': 12, 'G': 9, 'M': 6, 'k': 3, 'h': 2, '': 0, 'c': -2, 'm': -3, 'u': -6, 'µ': -6, 'n': -9, 'p': -12, 'f': -15, 'a': -18, 'z': -21, 'y': -24, } si_units = ['m', 's', 'rad/s', 'Hz'] si_units_with_prefixes = { '%s%s' % (prefix, unit): (unit, exponent) for (prefix, exponent) in si_prefixes.items() for unit in si_units } si_units_with_prefixes[''] = ('', 0) def parse_unit(scale, unit): unit, exponent = si_units_with_prefixes[unit] if exponent >= 0: return (scale * 10**exponent, unit) else: return (scale / 10**(-exponent), unit) @export class CoordinateArray: __slots__ = ('_data') def __init__(self, json_data=None, labels=None, coordinates=None, mappings=None): if mappings is None: mappings = dict() else: mappings = dict(mappings) if labels is not None: if coordinates is None: coordinates = range(len(labels)) for coordinate, label in zip(coordinates, labels): mappings[coordinate] = label if json_data is not None: if not isinstance(json_data, dict) or 'coordinates' not in json_data or 'labels' not in json_data: raise ValueError('Expected object with "coordinates" and "labels" properties') coordinates = json_data['coordinates'] labels = json_data['labels'] for coordinate, label in zip(coordinates, labels): mappings[coordinate] = label self._data = mappings def __len__(self): return len(self._data) def __iter__(self): return iter(self._data) def __repr__(self): return repr(self._data) def __str__(self): return str(self._data) def __eq__(self, other): if not isinstance(other, CoordinateArray): return False return self._data == other._data def __getitem__(self, k): if isinstance(k, str): for other_k, other_v in self._data.items(): if other_k == k: return other_v raise KeyError('label not found: %r' % (k, )) return self._data[k] def to_json(self): return dict(coordinates=list(self._data.keys()), labels=list(self._data.values())) @export class DimensionScale(collections.namedtuple('DimensionScale', ['scale', 'unit', 'coordinate_array'])): __slots__ = () def __new__(cls, scale=1, unit='', coordinate_array=None): return super(DimensionScale, cls).__new__(cls, scale, unit, coordinate_array) @staticmethod def from_json(json): if isinstance(json, DimensionScale): return json if isinstance(json, list): if len(json) != 2: raise ValueError('Expected [scale, unit], but received: %r' % (json, )) scale = json[0] unit = json[1] coordinate_array = None else: scale = None unit = None coordinate_array = CoordinateArray(json_data=json) return DimensionScale(scale=scale, unit=unit, coordinate_array=coordinate_array) @export class CoordinateSpace(object): __slots__ = ('names', 'scales', 'units', 'coordinate_arrays') def __init__(self, json=None, names=None, scales=None, units=None, coordinate_arrays=None): if json is None: if names is not None: self.names = tuple(names) scales = np.array(scales, dtype=np.float64) if isinstance(units, str): units = tuple(units for _ in names) scales_and_units = tuple( parse_unit(scale, unit) for scale, unit in zip(scales, units)) scales = np.array([s[0] for s in scales_and_units], dtype=np.float64) units = tuple(s[1] for s in scales_and_units) if coordinate_arrays is None: coordinate_arrays = tuple(None for x in units) else: coordinate_arrays = tuple(coordinate_arrays) self.units = units self.scales = scales self.coordinate_arrays = coordinate_arrays else: self.names = () self.scales = np.zeros(0, dtype=np.float64) self.units = () self.coordinate_arrays = () else: if not isinstance(json, dict): raise TypeError self.names = tuple(json.keys()) values = tuple(DimensionScale.from_json(v) for v in json.values()) self.scales = np.array([v.scale for v in values], dtype=np.float64) self.units = tuple(v.unit for v in values) self.coordinate_arrays = tuple(v.coordinate_array for v in values) self.scales.setflags(write=False) @property def rank(self): return len(self.names) def __getitem__(self, i): if isinstance(i, str): idx = self.names.index(i) return DimensionScale(scale=self.scales[idx], unit=self.units[idx], coordinate_array=self.coordinate_arrays[idx]) if isinstance(i, slice): idxs = range(self.rank)[i] return [ DimensionScale(scale=self.scales[j], unit=self.units[j], coordinate_array=self.coordinate_arrays[j]) for j in idxs ] return DimensionScale(scale=self.scales[i], unit=self.units[i], coordinate_array=self.coordinate_arrays[i]) def __repr__(self): return 'CoordinateSpace(%r)' % (self.to_json(), ) def to_json(self): d = collections.OrderedDict() for name, scale, unit, coordinate_array in zip(self.names, self.scales, self.units, self.coordinate_arrays): if coordinate_array is None: d[name] = [scale, unit] else: d[name] = coordinate_array.to_json() return d
3,421
324
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT 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 org.jclouds.azurecompute.arm.domain; import static org.jclouds.azurecompute.arm.domain.IdReference.extractName; import static org.jclouds.azurecompute.arm.domain.IdReference.extractResourceGroup; import static org.testng.Assert.assertEquals; import org.testng.annotations.Test; @Test(groups = "unit", testName = "IdReferenceTest") public class IdReferenceTest { @Test public void testExtractResourceGroup() { assertEquals(extractResourceGroup(null), null); assertEquals(extractResourceGroup(""), null); assertEquals( extractResourceGroup("/subscriptions/subscription/resourceGroups/jclouds-northeurope/providers/Microsoft.Compute/virtualMachines/resources-8c5"), "jclouds-northeurope"); assertEquals(extractResourceGroup("/subscriptions/subscription/resourceGroups/jclouds-west"), "jclouds-west"); assertEquals(extractResourceGroup("/resourceGroups/jclouds-west2"), "jclouds-west2"); assertEquals( extractResourceGroup("/resourceGroups/jclouds-northeurope2/providers/Microsoft.Compute/virtualMachines/resources-8c5"), "jclouds-northeurope2"); assertEquals(extractResourceGroup("resourceGroups/jclouds-west2"), null); assertEquals( extractResourceGroup("resourceGroups/jclouds-northeurope2/providers/Microsoft.Compute/virtualMachines/resources-8c5"), null); assertEquals( extractResourceGroup("/subscriptions/subscription/providers/Microsoft.Compute/virtualMachines/resources-8c5"), null); assertEquals( extractResourceGroup("/subscriptions/subscription/resourceGroups//jclouds-northeurope/providers/Microsoft.Compute/virtualMachines/resources-8c5"), null); } @Test public void testExtractName() { assertEquals(extractName(null), null); assertEquals(extractName(""), ""); assertEquals(extractName("foo"), "foo"); assertEquals(extractName("/foo/bar"), "bar"); assertEquals(extractName("/foo/bar/"), "bar"); assertEquals(extractName("/foo/bar////"), "bar"); assertEquals(extractName("/foo///bar////"), "bar"); assertEquals(extractName("////bar"), "bar"); } }
1,054
1,144
/****************************************************************************** ** ** FILE NAME : ifxmips_deu_dma.h ** DESCRIPTION : Data Encryption Unit Driver ** COPYRIGHT : Copyright (c) 2009 ** Infineon Technologies AG ** Am Campeon 1-12, 85579 Neubiberg, Germany ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Foundation; either version 2 of the License, or ** (at your option) any later version. ** ** HISTORY ** $Date $Author $Comment ** 08,Sept 2009 <NAME> Initial UEIP release *******************************************************************************/ /*! \addtogroup IFX_DEU IFX_DEU_DRIVERS \ingroup API \brief ifx deu driver module */ /*! \file ifxmips_deu_dma.h \ingroup IFX_DEU \brief DMA deu driver header file */ #ifndef IFXMIPS_DEU_DMA_H #define IFXMIPS_DEU_DMA_H #include <linux/init.h> #include <linux/module.h> #include <linux/mm.h> #include <linux/crypto.h> #include <linux/scatterlist.h> #include <asm/byteorder.h> #include <linux/skbuff.h> #include <linux/netdevice.h> // must match the size of memory block allocated for g_dma_block and g_dma_block2 #define DEU_MAX_PACKET_SIZE (PAGE_SIZE >> 1) typedef struct ifx_deu_device { struct dma_device_info *dma_device; u8 *dst; u8 *src; int len; int dst_count; int src_count; int recv_count; int packet_size; int packet_num; wait_queue_t wait; } _ifx_deu_device; extern _ifx_deu_device ifx_deu[1]; extern int deu_dma_intr_handler (struct dma_device_info *, int); extern u8 *deu_dma_buffer_alloc (int, int *, void **); extern int deu_dma_buffer_free (u8 *, void *); extern void deu_dma_inactivate_poll(struct dma_device_info* dma_dev); extern void deu_dma_activate_poll (struct dma_device_info* dma_dev); extern struct dma_device_info* deu_dma_reserve(struct dma_device_info** dma_device); extern int deu_dma_release(struct dma_device_info** dma_device); #endif /* IFMIPS_DEU_DMA_H */
851
794
<gh_stars>100-1000 // // CAGifView.h // CrossApp // // Created by qiaoxin on 15-06-01. // Copyright (c) 2014 http://www.9miao.com All rights reserved. // #ifndef __CAGIF_VIEW_H__ #define __CAGIF_VIEW_H__ #include "CAView.h" #include "images/CAGif.h" NS_CC_BEGIN class CC_DLL CAGifView : public CAView { public: CAGifView(); ~CAGifView(); public: static CAGifView* createWithFrame(const DRect& rect); static CAGifView* createWithCenter(const DRect& rect); static CAGifView* createWithLayout(const DLayout& layout); static CAGifView* createWithGif(CAGif* gif); virtual bool init(); virtual bool initWithGif(CAGif* gif); void setGif(CAGif* gif); CAGif* getGif() { return m_pGif; } void setTimes(float times); void setRepeatForever(bool repeatForever); bool isRepeatForever() { return m_bIsRepeatForever; } virtual void onEnter(); virtual void onExit(); protected: virtual void updateImageRect(); virtual void update(float delta); virtual void setContentSize(const DSize& contentSize); void updateGifSize(); private: CAGif* m_pGif; bool m_bIsRepeatForever; int m_iGifIndex; float m_fDurTime; float m_fTimes; float m_fLeft; float m_fRight; float m_fTop; float m_fBottom; }; NS_CC_END #endif //__CAGIFVIEW_H__
689
903
<reponame>TsSaltan/jphp package org.develnext.jphp.ext.zip.classes; import org.develnext.jphp.ext.zip.ZipExtension; import php.runtime.annotation.Reflection; import php.runtime.env.Environment; import php.runtime.ext.java.JavaException; import php.runtime.reflection.ClassEntity; @Reflection.Name("ZipException") @Reflection.Namespace(ZipExtension.NS) public class PZipException extends JavaException { public PZipException(Environment env, Throwable throwable) { super(env, throwable); } public PZipException(Environment env, ClassEntity clazz) { super(env, clazz); } }
209
1,305
/* * Copyright (c) 2000, 2007, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package javax.management.openmbean; /** * This runtime exception is thrown to indicate that the <i>open type</i> of an <i>open data</i> value * is not the one expected. * * * @since 1.5 */ public class InvalidOpenTypeException extends IllegalArgumentException { private static final long serialVersionUID = -2837312755412327534L; /** An InvalidOpenTypeException with no detail message. */ public InvalidOpenTypeException() { super(); } /** * An InvalidOpenTypeException with a detail message. * * @param msg the detail message. */ public InvalidOpenTypeException(String msg) { super(msg); } }
314
488
void foobar() { if ( ({ union { int i; } u; u.i = 42; }) == 0); // if ( ({ struct { int i; } u; u.i = 42; }) == 0); }
63
319
<reponame>Celebrate-future/openimaj<filename>core/core/src/main/java/org/openimaj/util/stream/combine/StreamCombiner.java /** * Copyright (c) 2011, The University of Southampton and the individual contributors. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * * Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * * Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * * Neither the name of the University of Southampton nor the names of its * contributors may be used to endorse or promote products derived from this * software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ package org.openimaj.util.stream.combine; import java.util.concurrent.Callable; import java.util.concurrent.Future; import java.util.concurrent.ThreadPoolExecutor; import org.openimaj.util.pair.IndependentPair; import org.openimaj.util.parallel.GlobalExecutorPool; import org.openimaj.util.stream.AbstractStream; import org.openimaj.util.stream.Stream; /** * A stream combiner takes two streams and produces a new stream of synchronised * pairs of the stream values. The two streams are consumed in two threads which * the {@link #next()} method waits to complete before returning * * @author <NAME> (<EMAIL>) * * @param <A> * Type of payload in first stream * @param <B> * Type of payload in second stream */ public class StreamCombiner<A, B> extends AbstractStream<IndependentPair<A, B>> { private Stream<B> b; private Stream<A> a; private Starter<B> bstart; private Starter<A> astart; private ThreadPoolExecutor service; class Starter<T> implements Callable<T> { private Stream<T> stream; public Starter(Stream<T> a) { stream = a; } @Override public T call() throws Exception { return stream.next(); } } /** * @param a * @param b */ public StreamCombiner(Stream<A> a, Stream<B> b) { this.a = a; this.b = b; this.astart = new Starter<A>(this.a); this.bstart = new Starter<B>(this.b); this.service = GlobalExecutorPool.getPool(); } @Override public boolean hasNext() { return a.hasNext() && b.hasNext(); } @Override public IndependentPair<A, B> next() { final Future<A> futurea = this.service.submit(astart); final Future<B> futureb = this.service.submit(bstart); try { final A a = futurea.get(); final B b = futureb.get(); return IndependentPair.pair(a, b); } catch (final Exception e) { e.printStackTrace(); } return null; } /** * Create a new {@link StreamCombiner} from the given streams * * @param a * first stream * @param b * second stream * @return the combined stream */ public static <A, B> StreamCombiner<A, B> combine(Stream<A> a, Stream<B> b) { return new StreamCombiner<A, B>(a, b); } }
1,295
511
/* * Copyright 2011-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. */ package org.intellij.grammar.editor; import com.intellij.codeInsight.editorActions.BraceMatcherBasedSelectioner; import com.intellij.openapi.editor.Editor; import com.intellij.openapi.util.TextRange; import com.intellij.psi.PsiElement; import com.intellij.psi.impl.source.tree.LeafPsiElement; import org.intellij.grammar.psi.BnfComposite; import org.intellij.grammar.psi.BnfTypes; import org.jetbrains.annotations.NotNull; import java.util.List; /** * @author gregsh */ public class BnfWordSelectioner extends BraceMatcherBasedSelectioner{ @Override public boolean canSelect(@NotNull PsiElement e) { return e instanceof BnfComposite || e instanceof LeafPsiElement && ((LeafPsiElement)e).getElementType() == BnfTypes.BNF_STRING; } @Override public List<TextRange> select(@NotNull PsiElement e, @NotNull CharSequence editorText, int cursorOffset, @NotNull Editor editor) { List<TextRange> list = super.select(e, editorText, cursorOffset, editor); if (list == null) return null; if (e instanceof LeafPsiElement && ((LeafPsiElement)e).getElementType() == BnfTypes.BNF_STRING) { TextRange range = e.getTextRange(); list.add(TextRange.from(range.getStartOffset() + 1, range.getLength() - 2)); } return list; } }
515
1,306
package io.github.biezhi.java8.growing.jdk8; import javax.script.ScriptEngine; import javax.script.ScriptEngineManager; import javax.script.ScriptException; /** * Nashorn JavaScript引擎 * * @author biezhi * @date 2018/2/8 */ public class NashornDemo { public static void main(String[] args) throws ScriptException { ScriptEngineManager manager = new ScriptEngineManager(); ScriptEngine engine = manager.getEngineByName("JavaScript"); System.out.println(engine.getClass().getName()); System.out.println("Result:" + engine.eval("function f() { return 1; }; f() + 1;")); } }
226
1,256
<gh_stars>1000+ #include <plugin.hpp> #include <PluginSettings.hpp> #include <DlgBuilder.hpp> #include "Lang.hpp" #include "version.hpp" #include <rpc.h> #include "guid.hpp" #include <initguid.h> #include "guid.hpp" wchar_t *GetEditorFileName(); const wchar_t *FindTopic(bool ForwardDirect=false, bool RestorePos=true); BOOL IsHlf(); void RestorePosition(EditorInfo *ei); bool ShowHelp(const wchar_t *fullfilename,const wchar_t *topic, bool CmdLine=false, bool ShowError=true); const wchar_t *GetMsg(int MsgId); bool ShowCurrentHelpTopic(); static void ShowHelpFromTempFile(); void GetPluginConfig(); static bool inputrecord_compare(const INPUT_RECORD &r1,const INPUT_RECORD &r2); bool FindPluginHelp(const wchar_t* Name,wchar_t* DestPath); static struct Options { int ProcessEditorInput; int CheckMaskFile; wchar_t MaskFile[MAX_PATH]; wchar_t AssignKeyName[64]; INPUT_RECORD RecKey; int Style; } Opt; static PluginStartupInfo PsInfo; static FarStandardFunctions FSF; static INPUT_RECORD _DefKey={KEY_EVENT,{{TRUE,1,VK_F1,0x3B,{0},0}}}; static bool FileExists(const wchar_t* Name) { return GetFileAttributes(Name) != INVALID_FILE_ATTRIBUTES; } static bool StrToGuid(const wchar_t* Value,GUID* Guid) { return UuidFromString(reinterpret_cast<unsigned short*>(const_cast<wchar_t*>(Value)), Guid) == RPC_S_OK; } static bool CheckExtension(const wchar_t *ptrName) { return !(Opt.CheckMaskFile && *Opt.MaskFile) || FSF.ProcessName(Opt.MaskFile, const_cast<wchar_t*>(ptrName), 0, PN_CMPNAMELIST | PN_SKIPPATH); } bool ShowHelp(const wchar_t *fullfilename,const wchar_t *topic, bool CmdLine, bool ShowError) { if (fullfilename && (CmdLine || CheckExtension(fullfilename))) { const wchar_t *Topic=topic; if (!Topic) Topic=GetMsg(MDefaultTopic); return PsInfo.ShowHelp(fullfilename,Topic,FHELP_CUSTOMFILE|(ShowError?0:FHELP_NOSHOWERROR))?true:false; } return false; } const wchar_t *GetMsg(int MsgId) { return PsInfo.GetMsg(&MainGuid,MsgId); } void WINAPI GetGlobalInfoW(GlobalInfo *Info) { Info->StructSize=sizeof(GlobalInfo); Info->MinFarVersion=FARMANAGERVERSION; Info->Version=PLUGIN_VERSION; Info->Guid=MainGuid; Info->Title=PLUGIN_NAME; Info->Description=PLUGIN_DESC; Info->Author=PLUGIN_AUTHOR; } void WINAPI SetStartupInfoW(const PluginStartupInfo *Info) { PsInfo=*Info; FSF=*PsInfo.FSF; PsInfo.FSF=&FSF; GetPluginConfig(); } HANDLE WINAPI OpenW(const OpenInfo *Info) { if (Info->OpenFrom == OPEN_EDITOR || Info->OpenFrom==OPEN_FROMMACRO) { HANDLE MacroResult=nullptr; // в редакторе проверяем файл на принадлежность к системе помощи Far Manager if (IsHlf()) { if (ShowCurrentHelpTopic()) MacroResult=INVALID_HANDLE_VALUE; } else if (Info->OpenFrom!=OPEN_FROMMACRO) { const wchar_t *Items[] = { GetMsg(MTitle), GetMsg(MNotAnHLF), GetMsg(MOk) }; PsInfo.Message(&MainGuid, nullptr, 0, {}, Items, ARRAYSIZE(Items), 1); } return (Info->OpenFrom==OPEN_FROMMACRO)?MacroResult:nullptr; } if (Info->OpenFrom==OPEN_COMMANDLINE) { static wchar_t cmdbuf[1024], FileName[MAX_PATH], *ptrTopic, *ptrName; // разбор "параметров ком.строки" lstrcpyn(cmdbuf,((OpenCommandLineInfo*)Info->Data)->CommandLine,ARRAYSIZE(cmdbuf)); if (cmdbuf[0]) { FSF.Trim(cmdbuf); ptrName=ptrTopic=cmdbuf; if (*cmdbuf==L'\"') { ptrName++; ptrTopic++; while (*ptrTopic!=L'\"' && *ptrTopic) ptrTopic++; } else { while (*ptrTopic!=L' ' && *ptrTopic) ptrTopic++; } int hasTopic = (*ptrTopic == L' '); *ptrTopic=0; if (hasTopic) { ptrTopic++; if (*ptrTopic == L'@') ptrTopic++; if (lstrlen(ptrTopic)) FSF.Trim(ptrTopic); else ptrTopic={}; } else { if (*ptrName == L'@') { ptrTopic=ptrName+1; FSF.Trim(ptrTopic); ptrName={}; } else ptrTopic = {}; } wchar_t *ptrCurDir={}; // Здесь: ptrName - тмя файла/GUID, ptrTopic - имя темы // показ темы помощи по GUID`у GUID FindGuid; bool guidMode=StrToGuid(ptrName,&FindGuid); if (!guidMode && *ptrName == L'{') { ptrName++; wchar_t *ptrNameEnd=ptrName+lstrlen(ptrName)-1; if (*ptrNameEnd == L'}') *ptrNameEnd=0; guidMode=StrToGuid(ptrName,&FindGuid); } if (guidMode) PsInfo.ShowHelp((const wchar_t*)&FindGuid,ptrTopic,FHELP_GUID); // по GUID`у не найдено, пробуем имя файла if (!guidMode) { wchar_t TempFileName[MAX_PATH*2]; wchar_t ExpFileName[MAX_PATH*2]; lstrcpyn(TempFileName,ptrName,ARRAYSIZE(TempFileName)); // Если имя файла без пути... if (FSF.PointToName(ptrName) == ptrName) { // ...смотрим в текущем каталоге size_t Size=FSF.GetCurrentDirectory(0,{}); if (Size) { ptrCurDir=new WCHAR[Size+lstrlen(ptrName)+8]; FSF.GetCurrentDirectory(Size,ptrCurDir); lstrcat(ptrCurDir,L"\\"); lstrcat(ptrCurDir,ptrName); if (FileExists(ptrCurDir)) ptrName=(wchar_t *)ptrCurDir; } // ...в текущем нет... if (FSF.PointToName(ptrName) == ptrName) { // ...смотрим в %FARHOME% ExpandEnvironmentStrings(L"%FARHOME%",ExpFileName,ARRAYSIZE(ExpFileName)); FSF.AddEndSlash(ExpFileName); lstrcat(ExpFileName,ptrName); if (!FileExists(ExpFileName)) { // ...в %FARHOME% нет, поищем по путям плагинов. if (FindPluginHelp(ptrName,ExpFileName)) ptrName=ExpFileName; } else ptrName=ExpFileName; } } else { // ptrName указан с путём. ExpandEnvironmentStrings(ptrName,ExpFileName,ARRAYSIZE(ExpFileName)); ptrName=ExpFileName; } GetFullPathName(ptrName,MAX_PATH,FileName,&ptrName); if (ptrCurDir) delete[] ptrCurDir; if (!ShowHelp(FileName,ptrTopic,true,(!ptrTopic || !*ptrTopic?false:true))) { // синтаксис hlf:topic_из_ФАР_хелпа ==> TempFileName PsInfo.ShowHelp(nullptr,TempFileName,FHELP_FARHELP); } } } else { // параметры не указаны, выводим подсказку по использованию плагина. PsInfo.ShowHelp(PsInfo.ModuleName,L"cmd",FHELP_SELFHELP); } } return nullptr; } void WINAPI GetPluginInfoW(PluginInfo *Info) { Info->StructSize=sizeof(*Info); Info->Flags=PF_EDITOR|PF_DISABLEPANELS; static const wchar_t *PluginConfigStrings[1]; PluginConfigStrings[0]=GetMsg(MTitle); Info->PluginConfig.Guids=&MenuGuid; Info->PluginConfig.Strings=PluginConfigStrings; Info->PluginConfig.Count=ARRAYSIZE(PluginConfigStrings); if (!Opt.ProcessEditorInput) { static const wchar_t *PluginMenuStrings[1]; PluginMenuStrings[0]=GetMsg(MShowHelpTopic); Info->PluginMenu.Guids=&MenuGuid; Info->PluginMenu.Strings=PluginMenuStrings; Info->PluginMenu.Count=ARRAYSIZE(PluginMenuStrings); } Info->CommandPrefix=L"HLF"; } intptr_t WINAPI ProcessEditorInputW(const ProcessEditorInputInfo *InputInfo) { BOOL Result=FALSE; if (Opt.ProcessEditorInput) { if (InputInfo->Rec.EventType==KEY_EVENT && InputInfo->Rec.Event.KeyEvent.bKeyDown && inputrecord_compare(InputInfo->Rec,Opt.RecKey)) { EditorInfo ei = { sizeof(EditorInfo) }; PsInfo.EditorControl(-1,ECTL_GETINFO,0,&ei); wchar_t *FileName=GetEditorFileName(); if (IsHlf() || (Opt.CheckMaskFile && CheckExtension(FileName))) { if (ShowCurrentHelpTopic()) Result=TRUE; } if (FileName) delete[] FileName; } } return Result; } wchar_t *GetEditorFileName() { wchar_t *FileName=nullptr; size_t FileNameSize=PsInfo.EditorControl(-1,ECTL_GETFILENAME,0,{}); if (FileNameSize) { FileName=new wchar_t[FileNameSize]; if (FileName) { PsInfo.EditorControl(-1,ECTL_GETFILENAME,FileNameSize,FileName); } } return FileName; } bool ShowCurrentHelpTopic() { bool Result=true; wchar_t *FileName=GetEditorFileName(); EditorInfo ei = { sizeof(EditorInfo) }; PsInfo.EditorControl(-1,ECTL_GETINFO,0,&ei); switch (Opt.Style) { case 1: if (!(ei.CurState&ECSTATE_SAVED)) ShowHelpFromTempFile(); else { const wchar_t *Topic=FindTopic(false); if (!Topic) Topic=FindTopic(true); if (Topic && *Topic) ShowHelp(FileName,Topic,false); else Result=false; } break; case 2: if (!(ei.CurState&ECSTATE_SAVED)) PsInfo.EditorControl(-1,ECTL_SAVEFILE, 0, {}); [[fallthrough]]; default: ShowHelp(FileName,FindTopic(),false); break; } if (FileName) delete[] FileName; return Result; } static void ShowHelpFromTempFile() { EditorSaveFile esf={sizeof(EditorSaveFile)}; wchar_t fname[MAX_PATH]; esf.FileName = fname; if (FSF.MkTemp(fname, ARRAYSIZE(fname)-4,L"HLF")>1) { lstrcat(fname,L".hlf"); /* esf.FileEOL={}; PsInfo.EditorControl(ECTL_SAVEFILE, &esf); ShowHelp(esf.FileName, FindTopic()); DeleteFile(esf.FileName); */ EditorGetString egs={sizeof(EditorGetString)}; EditorInfo ei={sizeof(EditorInfo)}; DWORD Count; HANDLE Handle=CreateFile(esf.FileName, GENERIC_WRITE, FILE_SHARE_READ, {}, CREATE_NEW, 0, {}); if (Handle != INVALID_HANDLE_VALUE) { PsInfo.EditorControl(-1,ECTL_GETINFO,0,&ei); #define SIGN_UNICODE 0xFEFF WORD sign=SIGN_UNICODE; WriteFile(Handle, &sign, 2, &Count, {}); for (egs.StringNumber=0; egs.StringNumber<ei.TotalLines; egs.StringNumber++) { PsInfo.EditorControl(-1,ECTL_GETSTRING,0,&egs); WriteFile(Handle, egs.StringText, (DWORD)(egs.StringLength*sizeof(wchar_t)), &Count, {}); WriteFile(Handle, L"\r\n", 2*sizeof(wchar_t), &Count, {}); } CloseHandle(Handle); ShowHelp(esf.FileName, FindTopic()); DeleteFile(esf.FileName); } } } void RestorePosition(EditorInfo *ei) { EditorSetPosition esp={sizeof(EditorSetPosition)}; esp.CurLine=ei->CurLine; esp.CurPos=ei->CurPos; esp.TopScreenLine=ei->TopScreenLine; esp.LeftPos=ei->LeftPos; esp.CurTabPos=-1; esp.Overtype=-1; PsInfo.EditorControl(-1,ECTL_SETPOSITION,0,&esp); } // это HLF-файл? // первая строка hlf всегда начинается с ".Language=" BOOL IsHlf() { BOOL ret=FALSE; EditorInfo ei={sizeof(EditorInfo)}; PsInfo.EditorControl(-1,ECTL_GETINFO,0,&ei); bool CheckedHlf=true; if (Opt.CheckMaskFile) { wchar_t *FileName=GetEditorFileName(); if (FileName) { if (!CheckExtension(FileName)) CheckedHlf=false; delete[] FileName; } } if (CheckedHlf) { EditorSetPosition esp = { sizeof(EditorSetPosition) }; EditorGetString egs = { sizeof(EditorGetString) }; egs.StringNumber=-1; intptr_t total=(ei.TotalLines<3)?ei.TotalLines:3; if (total>2) { for (esp.CurLine=0; esp.CurLine<total; esp.CurLine++) { PsInfo.EditorControl(-1,ECTL_SETPOSITION,0,&esp); PsInfo.EditorControl(-1,ECTL_GETSTRING,0,&egs); if (!FSF.LStrnicmp(L".Language=",egs.StringText,10)) { // доп.проверка if (FindTopic(true,false)) ret=TRUE; break; } } RestorePosition(&ei); } } return ret; } // для "этой темы" ищем её имя (от позиции курсора вверх/вниз по файлу) const wchar_t *FindTopic(bool ForwardDirect, bool RestorePos) { const wchar_t*ret{}; EditorInfo ei={sizeof(EditorInfo)}; PsInfo.EditorControl(-1,ECTL_GETINFO,0,&ei); EditorSetPosition esp = { sizeof(EditorSetPosition) }; EditorGetString egs = { sizeof(EditorGetString) }; egs.StringNumber=-1; intptr_t Direct=ForwardDirect?1:-1; for (esp.CurLine=ei.CurLine; (ForwardDirect?esp.CurLine<ei.TotalLines:esp.CurLine>=0); esp.CurLine+=Direct) { PsInfo.EditorControl(-1,ECTL_SETPOSITION,0,&esp); PsInfo.EditorControl(-1,ECTL_GETSTRING,0,&egs); auto tmp=egs.StringText; // "Тема": начинается '@', дальше букво-цифры, не содержит '=' if (lstrlen(tmp)>1 && *tmp==L'@' && *(tmp+1)!=L'-' && *(tmp+1)!=L'+' && !wcschr(tmp,L'=')) { ret=tmp+1; break; } } if (RestorePos) RestorePosition(&ei); return ret; } static bool inputrecord_compare(const INPUT_RECORD &r1,const INPUT_RECORD &r2) { if (r1.EventType == r2.EventType) { switch(r1.EventType) { case KEY_EVENT: // Event contains key event record #define RMASK (RIGHT_ALT_PRESSED|LEFT_ALT_PRESSED|RIGHT_CTRL_PRESSED|LEFT_CTRL_PRESSED|SHIFT_PRESSED) return r1.Event.KeyEvent.wVirtualKeyCode == r2.Event.KeyEvent.wVirtualKeyCode && (r1.Event.KeyEvent.dwControlKeyState&RMASK) == (r2.Event.KeyEvent.dwControlKeyState&RMASK); case MOUSE_EVENT: // Event contains mouse event record return r1.Event.MouseEvent.dwButtonState == r2.Event.MouseEvent.dwButtonState && r1.Event.MouseEvent.dwControlKeyState == r2.Event.MouseEvent.dwControlKeyState && r1.Event.MouseEvent.dwEventFlags == r2.Event.MouseEvent.dwEventFlags; } return false; } return false; } // поиск hlf-файла Name в каталогах плагинов (первый найденный!) // в DestPath возвращает полный путь к найденному hlf-файлу static int WINAPI frsuserfunc(const PluginPanelItem *FData,const wchar_t *FullName,void *Param) { lstrcpy((wchar_t*)Param,FullName); return FALSE; } bool FindPluginHelp(const wchar_t* Name,wchar_t* DestPath) { bool Result=false; DestPath[0]=0; // 1. Получить количество плагинов в "этом сеансе" Far Manager int CountPlugin = (int)PsInfo.PluginsControl(INVALID_HANDLE_VALUE,PCTL_GETPLUGINS,0,{}); if (CountPlugin > 0) { HANDLE *hPlugins=new HANDLE[CountPlugin]; if (hPlugins) { // 2. Получить хэндлы плагинов PsInfo.PluginsControl(INVALID_HANDLE_VALUE,PCTL_GETPLUGINS,CountPlugin,hPlugins); // 3. Посмотреть на эти плагины for (int I=0; I < CountPlugin; ++I) { // 4. Для очередного плагина получить размер необходимой памяти по информационные структуры int SizeMemory=(int)PsInfo.PluginsControl(hPlugins[I],PCTL_GETPLUGININFORMATION,0,{}); if (SizeMemory > 0) { const auto fgpi=reinterpret_cast<FarGetPluginInformation*>(new BYTE[SizeMemory]); if (fgpi) { wchar_t FoundPath[MAX_PATH]; // 5. Для очередного плагина получить информационные структуры PsInfo.PluginsControl(hPlugins[I],PCTL_GETPLUGININFORMATION,SizeMemory,fgpi); // 6. Путь к плагину wchar_t *ModuleName=new wchar_t[lstrlen(fgpi->ModuleName)+1]; lstrcpy(ModuleName,fgpi->ModuleName); const auto ptrModuleName=const_cast<wchar_t*>(FSF.PointToName(ModuleName)); if (ptrModuleName) *ptrModuleName=0; // 7. Поиск hlf-файла в "этом каталоге" FoundPath[0]=0; FSF.FarRecursiveSearch(ModuleName,Name,(FRSUSERFUNC)frsuserfunc,FRS_RETUPDIR|FRS_RECUR|FRS_SCANSYMLINK,FoundPath); if (*FoundPath) { // НАЙДЕНО! lstrcpy(DestPath,FoundPath); Result=true; } delete[] ModuleName; delete[] fgpi; if (Result) break; } } } delete[] hPlugins; } } return Result; } intptr_t WINAPI ConfigureW(const ConfigureInfo* CfgInfo) { GetPluginConfig(); PluginDialogBuilder Builder(PsInfo, MainGuid, DialogGuid, MConfig, L"Config"); Builder.StartColumns(); Builder.AddCheckbox(MProcessEditorInput, &Opt.ProcessEditorInput); Builder.AddCheckbox(MCheckMaskFile, &Opt.CheckMaskFile); Builder.ColumnBreak(); FarDialogItem *ItemAssignKeyName=Builder.AddEditField(Opt.AssignKeyName, ARRAYSIZE(Opt.AssignKeyName), 20); Builder.AddEditField(Opt.MaskFile, ARRAYSIZE(Opt.MaskFile), 20); Builder.EndColumns(); Builder.AddSeparator(); Builder.AddText(MStyle); const int StyleIDs[] = {MStr1, MStr2, MStr3}; Builder.AddRadioButtons((int*)&Opt.Style, ARRAYSIZE(StyleIDs), StyleIDs); Builder.AddOKCancel(MOk, MCancel); if (Builder.ShowDialog()) { lstrcpyn(Opt.AssignKeyName,ItemAssignKeyName->Data,ARRAYSIZE(Opt.AssignKeyName)); if (!FSF.FarNameToInputRecord(Opt.AssignKeyName,&Opt.RecKey)) { lstrcpyn(Opt.AssignKeyName,L"F1",ARRAYSIZE(Opt.AssignKeyName)); Opt.RecKey=_DefKey; } PluginSettings settings(MainGuid, PsInfo.SettingsControl); settings.Set(0,L"ProcessEditorInput",Opt.ProcessEditorInput); settings.Set(0,L"Style",Opt.Style); settings.Set(0,L"EditorKey",Opt.AssignKeyName); settings.Set(0,L"CheckMaskFile",Opt.CheckMaskFile); settings.Set(0,L"MaskFile",Opt.MaskFile); return TRUE; } return FALSE; } void GetPluginConfig() { PluginSettings settings(MainGuid, PsInfo.SettingsControl); settings.Get(0,L"EditorKey",Opt.AssignKeyName,ARRAYSIZE(Opt.AssignKeyName),L"F1"); if (!FSF.FarNameToInputRecord(Opt.AssignKeyName,&Opt.RecKey)) { lstrcpyn(Opt.AssignKeyName,L"F1",ARRAYSIZE(Opt.AssignKeyName)); Opt.RecKey=_DefKey; } Opt.ProcessEditorInput=settings.Get(0,L"ProcessEditorInput",1); Opt.Style=settings.Get(0,L"Style",0); Opt.CheckMaskFile=settings.Get(0,L"CheckMaskFile",1); settings.Get(0,L"MaskFile",Opt.MaskFile,ARRAYSIZE(Opt.MaskFile),L"*.hlf"); }
8,045
416
// // AEAssessmentConfiguration.h // AutomaticAssessmentConfiguration // // Copyright © 2020 Apple Inc. All rights reserved. // #import <Foundation/Foundation.h> NS_ASSUME_NONNULL_BEGIN API_AVAILABLE(ios(13.4), macos(10.15.4), macCatalyst(14.0)) @interface AEAssessmentConfiguration: NSObject <NSCopying> API_AVAILABLE(ios(14.0)) API_UNAVAILABLE(macos, macCatalyst) typedef NS_OPTIONS(NSUInteger, AEAutocorrectMode) { AEAutocorrectModeNone = 0, AEAutocorrectModeSpelling = 1 << 0, AEAutocorrectModePunctuation = 1 << 1, } NS_SWIFT_NAME(AEAssessmentConfiguration.AutocorrectMode); @property (nonatomic, assign) AEAutocorrectMode autocorrectMode API_AVAILABLE(ios(14.0)) API_UNAVAILABLE(macos, macCatalyst); @property (nonatomic, assign) BOOL allowsSpellCheck API_AVAILABLE(ios(14.0)) API_UNAVAILABLE(macos, macCatalyst); @property (nonatomic, assign) BOOL allowsPredictiveKeyboard API_AVAILABLE(ios(14.0)) API_UNAVAILABLE(macos, macCatalyst); @property (nonatomic, assign) BOOL allowsKeyboardShortcuts API_AVAILABLE(ios(14.0)) API_UNAVAILABLE(macos, macCatalyst); @property (nonatomic, assign) BOOL allowsActivityContinuation API_AVAILABLE(ios(14.0)) API_UNAVAILABLE(macos, macCatalyst); @property (nonatomic, assign) BOOL allowsDictation API_AVAILABLE(ios(14.0)) API_UNAVAILABLE(macos, macCatalyst); @property (nonatomic, assign) BOOL allowsAccessibilitySpeech API_AVAILABLE(ios(14.0)) API_UNAVAILABLE(macos, macCatalyst); @property (nonatomic, assign) BOOL allowsPasswordAutoFill API_AVAILABLE(ios(14.0)) API_UNAVAILABLE(macos, macCatalyst); @property (nonatomic, assign) BOOL allowsContinuousPathKeyboard API_AVAILABLE(ios(14.0)) API_UNAVAILABLE(macos, macCatalyst); @end NS_ASSUME_NONNULL_END
663
2,542
<filename>src/prod/src/ServiceModel/endpointcertificatedescription.h // ------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License (MIT). See License.txt in the repo root for license information. // ------------------------------------------------------------ #pragma once namespace ServiceModel { // <ApplicationInstance> element. struct DigestedCertificatesDescription; struct ApplicationManifestDescription; struct EndpointCertificateDescription : public Serialization::FabricSerializable { EndpointCertificateDescription(); EndpointCertificateDescription(EndpointCertificateDescription const & other); EndpointCertificateDescription(EndpointCertificateDescription && other); EndpointCertificateDescription const & operator = (EndpointCertificateDescription const & other); EndpointCertificateDescription const & operator = (EndpointCertificateDescription && other); bool operator == (EndpointCertificateDescription const & other) const; bool operator != (EndpointCertificateDescription const & other) const; void WriteTo(__in Common::TextWriter & w, Common::FormatOptions const &) const; void clear(); FABRIC_FIELDS_03(X509FindValue, X509StoreName, X509FindType); public: std::wstring X509StoreName; Common::X509FindType::Enum X509FindType; std::wstring X509FindValue; std::wstring Name; private: friend struct DigestedCertificatesDescription; friend struct ApplicationManifestDescription; friend struct DigestedResourcesDescription; void ReadFromXml(Common::XmlReaderUPtr const &); Common::ErrorCode WriteToXml(Common::XmlWriterUPtr const &); }; }
579
14,668
<gh_stars>1000+ // Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef NET_DNS_DNS_CONFIG_SERVICE_WIN_H_ #define NET_DNS_DNS_CONFIG_SERVICE_WIN_H_ // The sole purpose of dns_config_service_win.h is for unittests so we just // include these headers here. #include <winsock2.h> #include <iphlpapi.h> #include <iptypes.h> #include <memory> #include <string> #include <vector> #include "base/memory/free_deleter.h" #include "base/strings/string_piece_forward.h" #include "net/base/net_export.h" #include "net/dns/dns_config_service.h" #include "net/dns/public/win_dns_system_settings.h" // The general effort of DnsConfigServiceWin is to configure |nameservers| and // |search| in DnsConfig. The settings are stored in the Windows registry, but // to simplify the task we use the IP Helper API wherever possible. That API // yields the complete and ordered |nameservers|, but to determine |search| we // need to use the registry. On Windows 7, WMI does return the correct |search| // but on earlier versions it is insufficient. // // Experimental evaluation of Windows behavior suggests that domain parsing is // naive. Domain suffixes in |search| are not validated until they are appended // to the resolved name. We attempt to replicate this behavior. namespace net { namespace internal { // Converts a UTF-16 domain name to ASCII, possibly using punycode. // Returns empty string on failure. std::string NET_EXPORT_PRIVATE ParseDomainASCII(base::WStringPiece widestr); // Parses |value| as search list (comma-delimited list of domain names) from // a registry key and stores it in |out|. Returns empty vector on failure. Empty // entries (e.g., "chromium.org,,org") terminate the list. Non-ascii hostnames // are converted to punycode. std::vector<std::string> NET_EXPORT_PRIVATE ParseSearchList(base::WStringPiece value); // Fills in |dns_config| from |settings|. Exposed for tests. Returns nullopt if // a valid config could not be determined. absl::optional<DnsConfig> NET_EXPORT_PRIVATE ConvertSettingsToDnsConfig(const WinDnsSystemSettings& settings); // Service for reading and watching Windows system DNS settings. This object is // not thread-safe and methods may perform blocking I/O so methods must be // called on a sequence that allows blocking (i.e. base::MayBlock). It may be // constructed on a different sequence than which it's later called on. // WatchConfig() must be called prior to ReadConfig(). // Use DnsConfigService::CreateSystemService to use it outside of tests. class NET_EXPORT_PRIVATE DnsConfigServiceWin : public DnsConfigService { public: DnsConfigServiceWin(); DnsConfigServiceWin(const DnsConfigServiceWin&) = delete; DnsConfigServiceWin& operator=(const DnsConfigServiceWin&) = delete; ~DnsConfigServiceWin() override; private: class Watcher; class ConfigReader; class HostsReader; // DnsConfigService: void ReadConfigNow() override; void ReadHostsNow() override; bool StartWatching() override; std::unique_ptr<Watcher> watcher_; std::unique_ptr<ConfigReader> config_reader_; std::unique_ptr<HostsReader> hosts_reader_; }; } // namespace internal } // namespace net #endif // NET_DNS_DNS_CONFIG_SERVICE_WIN_H_
1,004
2,328
// Copyright 2004-present Facebook. All Rights Reserved. #include "DecryptStream.h" namespace facebook { namespace conceal { inline bool DecryptBuffer::checkEof(bool eofFound) { if (eofFound && tagState_ == NOT_CHECKED) { bool ok = decrypt_.end(tailBuffer_.tail()); tagState_ = ok ? VALID_TAG : INVALID_TAG; } return eofFound; } DecryptBuffer::DecryptBuffer(std::streambuf* source, Decrypt&& decrypt, CryptoConfig config): TransformBuffer(&tailBuffer_), tailBuffer_(source, config.tagLength), decrypt_(std::move(decrypt)), headerSize_(2 + config.ivLength), tagState_(NOT_CHECKED), pos_(0), skipBuffer_(nullptr) { } bool DecryptBuffer::start() { if (!tailBuffer_.start()) { return false; } Buffer header(headerSize_); std::streamsize count = tailBuffer_.sgetn(reinterpret_cast<char*>(&header[0]), header.length()); if (count < 0 || (unsigned) count != header.length()) { return false; } decrypt_.start(header); return true; } void DecryptBuffer::transform(char* data, int n) { Slice slice(reinterpret_cast<uint8_t*>(data), n); decrypt_.read(slice, slice); } bool DecryptBuffer::validTag() { return tagState_ == VALID_TAG; } DecryptBuffer::int_type DecryptBuffer::underflow() { // pos_ does not change int_type result = TransformBuffer::underflow(); checkEof(result == traits_type::eof()); return result; } DecryptBuffer::int_type DecryptBuffer::uflow() { // pos_ does change int_type result = TransformBuffer::uflow(); if (!checkEof(result == traits_type::eof())) { pos_++; } return result; } std::streamsize DecryptBuffer::xsgetn(char* data, std::streamsize n) { std::streamsize result = TransformBuffer::xsgetn(data, n); if (!checkEof(result != n)) { pos_ += result; } return result; } std::streampos DecryptBuffer::seekpos(std::streampos sp, std::ios_base::openmode which) { // we always assume ios_base::in, and possitive sp (doesn't make sense a negative one) // if we're not at EOF and requested position is forward... use relative seek. if (pos_ >= 0 && pos_ <= sp) { return seekoff(sp - pos_, std::ios_base::cur); } // otherwise default behavior (just EOF) return TransformBuffer::seekpos(sp, which); } std::streampos DecryptBuffer::seekoff( std::streamoff off, std::ios_base::seekdir way, std::ios_base::openmode which) { if (off < 0) { // cannot handle negative seek, go to default behavior return TransformBuffer::seekoff(off, way, which); } switch(way) { case std::ios_base::beg: // relative to beginning is the same as absolute seek return seekpos(off, which); case std::ios_base::cur: // relative to current position, do it by decrypting skip(off); return pos_; default: // from end or undefined return TransformBuffer::seekoff(off, way, which); } } constexpr int SKIP_BUFFER_SIZE = 1024; void DecryptBuffer::skip(std::streamoff off) { if (skipBuffer_ == nullptr) { skipBuffer_ = std::make_unique<char[]>(SKIP_BUFFER_SIZE); } while (off > 0) { std::streamsize chunkSize = std::min(off, std::streamoff(SKIP_BUFFER_SIZE)); std::streamsize skipped = this->xsgetn(skipBuffer_.get(), off); if (checkEof(skipped != chunkSize)) { break; } off -= skipped; } } BaseDecryptStream::BaseDecryptStream( std::streambuf* source, Decrypt&& decrypt, CryptoConfig config) : stream_(nullptr), buffer_(source, std::move(decrypt), config) {} BaseDecryptStream::BaseDecryptStream( std::unique_ptr<std::istream> source, Decrypt&& decrypt, CryptoConfig config) : stream_(std::move(source)), buffer_(stream_->rdbuf(), std::move(decrypt), config) {} DecryptStream::DecryptStream(std::streambuf* source, Decrypt&& decrypt, CryptoConfig config): BaseDecryptStream(source, std::move(decrypt), config), std::istream(&buffer_) {} DecryptStream::DecryptStream( std::unique_ptr<std::istream> source, Decrypt&& decrypt, CryptoConfig config) : BaseDecryptStream(std::move(source), std::move(decrypt), config), std::istream(&buffer_) {} bool DecryptStream::start() { return buffer_.start(); } bool DecryptStream::validTag() { return buffer_.validTag(); } }}
1,516
565
<reponame>ningyixue/AIPI530_Final_Project<gh_stars>100-1000 # pylint: disable=unidiomatic-typecheck from typing import Optional, Union from .gpu import Device from .models.encoders import EncoderFactory, create_encoder_factory from .models.q_functions import QFunctionFactory, create_q_func_factory from .preprocessing.action_scalers import ActionScaler, create_action_scaler from .preprocessing.reward_scalers import RewardScaler, create_reward_scaler from .preprocessing.scalers import Scaler, create_scaler EncoderArg = Union[EncoderFactory, str] QFuncArg = Union[QFunctionFactory, str] ScalerArg = Optional[Union[Scaler, str]] ActionScalerArg = Optional[Union[ActionScaler, str]] RewardScalerArg = Optional[Union[RewardScaler, str]] UseGPUArg = Optional[Union[bool, int, Device]] def check_encoder(value: EncoderArg) -> EncoderFactory: """Checks value and returns EncoderFactory object. Returns: d3rlpy.encoders.EncoderFactory: encoder factory object. """ if isinstance(value, EncoderFactory): return value if isinstance(value, str): return create_encoder_factory(value) raise ValueError("This argument must be str or EncoderFactory object.") def check_q_func(value: QFuncArg) -> QFunctionFactory: """Checks value and returns QFunctionFactory object. Returns: d3rlpy.q_functions.QFunctionFactory: Q function factory object. """ if isinstance(value, QFunctionFactory): return value if isinstance(value, str): return create_q_func_factory(value) raise ValueError("This argument must be str or QFunctionFactory object.") def check_scaler(value: ScalerArg) -> Optional[Scaler]: """Checks value and returns Scaler object. Returns: scaler object. """ if isinstance(value, Scaler): return value if isinstance(value, str): return create_scaler(value) if value is None: return None raise ValueError("This argument must be str or Scaler object.") def check_action_scaler(value: ActionScalerArg) -> Optional[ActionScaler]: """Checks value and returns Scaler object. Returns: action scaler object. """ if isinstance(value, ActionScaler): return value if isinstance(value, str): return create_action_scaler(value) if value is None: return None raise ValueError("This argument must be str or ActionScaler object.") def check_reward_scaler(value: RewardScalerArg) -> Optional[RewardScaler]: """Checks value and returns Scaler object. Returns: reward scaler object. """ if isinstance(value, RewardScaler): return value if isinstance(value, str): return create_reward_scaler(value) if value is None: return None raise ValueError("This argument must be str or RewardScaler object.") def check_use_gpu(value: UseGPUArg) -> Optional[Device]: """Checks value and returns Device object. Returns: d3rlpy.gpu.Device: device object. """ # isinstance cannot tell difference between bool and int if type(value) == bool: if value: return Device(0) return None if type(value) == int: return Device(value) if isinstance(value, Device): return value if value is None: return None raise ValueError("This argument must be bool, int or Device.")
1,211
892
<reponame>westonsteimel/advisory-database-github { "schema_version": "1.2.0", "id": "GHSA-2hff-p384-25wq", "modified": "2022-04-30T18:11:37Z", "published": "2022-04-30T18:11:37Z", "aliases": [ "CVE-1999-0997" ], "details": "wu-ftp with FTP conversion enabled allows an attacker to execute commands via a malformed file name that is interpreted as an argument to the program that does the conversion, e.g. tar or uncompress.", "severity": [ ], "affected": [ ], "references": [ { "type": "ADVISORY", "url": "https://nvd.nist.gov/vuln/detail/CVE-1999-0997" }, { "type": "WEB", "url": "http://www.debian.org/security/2003/dsa-377" } ], "database_specific": { "cwe_ids": [ ], "severity": "HIGH", "github_reviewed": false } }
352
417
<reponame>LaudateCorpus1/quantum-1 /* ** Copyright 2018 Bloomberg Finance L.P. ** ** Licensed under the Apache License, Version 2.0 (the "License"); ** you may not use this file except in compliance with the License. ** You may obtain a copy of the License at ** ** http://www.apache.org/licenses/LICENSE-2.0 ** ** Unless required by applicable law or agreed to in writing, software ** distributed under the License is distributed on an "AS IS" BASIS, ** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ** See the License for the specific language governing permissions and ** limitations under the License. */ //NOTE: DO NOT INCLUDE DIRECTLY //############################################################################################## //#################################### IMPLEMENTATIONS ######################################### //############################################################################################## #include <type_traits> #include <algorithm> #include <cassert> #include <algorithm> #include <cstring> #if defined(_WIN32) && !defined(__CYGWIN__) //TODO: Windows headers for memory mapping and page protection #else #include <sys/mman.h> #endif #if defined(BOOST_USE_VALGRIND) #include <valgrind/valgrind.h> #endif namespace Bloomberg { namespace quantum { template <typename STACK_TRAITS> CoroutinePoolAllocator<STACK_TRAITS>::CoroutinePoolAllocator(index_type size) : _size(size), _blocks(nullptr), _freeBlocks(nullptr), _freeBlockIndex(size-1), //point to the last element _numHeapAllocatedBlocks(0), _stackSize(std::min(std::max(traits::default_size(), traits::minimum_size()), traits::maximum_size())) { if ((_size == 0) || (_stackSize == 0)) { throw std::invalid_argument("Invalid coroutine allocator size of zero"); } //Make sure the stack is a multiple of the system page size size_t remainder = _stackSize % traits::page_size(); if (remainder > 0) { //extend to the next page _stackSize += (traits::page_size()-remainder); } _freeBlocks = new index_type[size]; if (!_freeBlocks) { throw std::bad_alloc(); } _blocks = new uint8_t*[size]; if (!_blocks) { delete[] _freeBlocks; throw std::bad_alloc(); } //pre-allocate all the coroutine stack blocks and protect the last stack page to //track coroutine stack overflows. for (size_t i = 0; i < size; ++i) { _blocks[i] = allocateCoroutine(ProtectMemPage::On); if (!_blocks[i]) { deallocateBlocks(i); throw std::bad_alloc(); } //set the block position header(_blocks[i])->_pos = i; } //initialize the free block list std::iota(_freeBlocks, _freeBlocks + size, 0); } template <typename STACK_TRAITS> CoroutinePoolAllocator<STACK_TRAITS>::CoroutinePoolAllocator(CoroutinePoolAllocator<STACK_TRAITS>&& other) noexcept { *this = other; } template <typename STACK_TRAITS> CoroutinePoolAllocator<STACK_TRAITS>& CoroutinePoolAllocator<STACK_TRAITS>::operator=(CoroutinePoolAllocator<STACK_TRAITS>&& other) { _size = other._size; _blocks = other._blocks; _freeBlocks = other._freeBlocks; _freeBlockIndex = other._freeBlockIndex; _numHeapAllocatedBlocks = other._numHeapAllocatedBlocks; // Reset other other._blocks = nullptr; other._freeBlocks = nullptr; other._freeBlockIndex = -1; other._numHeapAllocatedBlocks = 0; } template <typename STACK_TRAITS> CoroutinePoolAllocator<STACK_TRAITS>::~CoroutinePoolAllocator() { deallocateBlocks(_size); } template <typename STACK_TRAITS> void CoroutinePoolAllocator<STACK_TRAITS>::deallocateBlocks(size_t pos) { for (size_t j = 0; j < pos; ++j) { deallocateCoroutine(_blocks[j]); } delete[] _blocks; delete[] _freeBlocks; } template <typename STACK_TRAITS> uint8_t* CoroutinePoolAllocator<STACK_TRAITS>::allocateCoroutine(ProtectMemPage protect) const { #if defined(_WIN32) && !defined(__CYGWIN__) return new uint8_t[_stackSize]; #else uint8_t* block = (uint8_t*)mmap(nullptr, _stackSize, PROT_WRITE | PROT_READ | PROT_EXEC, MAP_ANONYMOUS | MAP_PRIVATE, -1, //invalid fd 0); //no offset if (block == MAP_FAILED) { return nullptr; } //Add protection to the lowest page if ((protect == ProtectMemPage::On) && mprotect(block, traits::page_size(), PROT_NONE) != 0) { munmap(block, _stackSize); //free region return nullptr; } return block; #endif } template <typename STACK_TRAITS> int CoroutinePoolAllocator<STACK_TRAITS>::deallocateCoroutine(uint8_t* block) const { assert(block); #if defined(_WIN32) && !defined(__CYGWIN__) delete[] block; return 0; #else return munmap(block, _stackSize); #endif } template <typename STACK_TRAITS> boost::context::stack_context CoroutinePoolAllocator<STACK_TRAITS>::allocate() { uint8_t* block = nullptr; { SpinLock::Guard lock(_spinlock); if (!isEmpty()) { block = _blocks[_freeBlocks[_freeBlockIndex--]]; } } if (!block) { //Do not protect last memory page for performance reasons block = allocateCoroutine(ProtectMemPage::Off); if (!block) { throw std::bad_alloc(); } header(block)->_pos = -1; //mark position as non-managed SpinLock::Guard lock(_spinlock); ++_numHeapAllocatedBlocks; } //populate stack context boost::context::stack_context ctx; ctx.size = _stackSize - sizeof(Header); ctx.sp = block + ctx.size; #if defined(BOOST_USE_VALGRIND) ctx.valgrind_stack_id = VALGRIND_STACK_REGISTER(ctx.sp, block); #endif return ctx; } template <typename STACK_TRAITS> void CoroutinePoolAllocator<STACK_TRAITS>::deallocate(const boost::context::stack_context& ctx) { if (!ctx.sp) { return; } #if defined(BOOST_USE_VALGRIND) VALGRIND_STACK_DEREGISTER(ctx.valgrind_stack_id); #endif int bi = blockIndex(ctx); assert(bi >= -1 && bi < _size); //guard against coroutine stack overflow or corruption if (isManaged(ctx)) { //find index of the block SpinLock::Guard lock(_spinlock); _freeBlocks[++_freeBlockIndex] = bi; } else { //Unlink coroutine stack { SpinLock::Guard lock(_spinlock); --_numHeapAllocatedBlocks; assert(_numHeapAllocatedBlocks >= 0); } if (deallocateCoroutine(stackEnd(ctx)) != 0) { throw std::runtime_error("Bad de-allocation"); } } } template <typename STACK_TRAITS> size_t CoroutinePoolAllocator<STACK_TRAITS>::allocatedBlocks() const { return _size - _freeBlockIndex - 1; } template <typename STACK_TRAITS> size_t CoroutinePoolAllocator<STACK_TRAITS>::allocatedHeapBlocks() const { return _numHeapAllocatedBlocks; } template <typename STACK_TRAITS> bool CoroutinePoolAllocator<STACK_TRAITS>::isFull() const { return _freeBlockIndex == _size-1; } template <typename STACK_TRAITS> bool CoroutinePoolAllocator<STACK_TRAITS>::isEmpty() const { return _freeBlockIndex == -1; } template <typename STACK_TRAITS> typename CoroutinePoolAllocator<STACK_TRAITS>::Header* CoroutinePoolAllocator<STACK_TRAITS>::header(const boost::context::stack_context& ctx) const { return reinterpret_cast<Header*>(ctx.sp); } template <typename STACK_TRAITS> typename CoroutinePoolAllocator<STACK_TRAITS>::Header* CoroutinePoolAllocator<STACK_TRAITS>::header(uint8_t* block) const { return reinterpret_cast<Header*>(block + _stackSize - sizeof(Header)); } template <typename STACK_TRAITS> uint8_t* CoroutinePoolAllocator<STACK_TRAITS>::stackEnd(const boost::context::stack_context& ctx) const { return static_cast<uint8_t*>(ctx.sp) - ctx.size; } template <typename STACK_TRAITS> bool CoroutinePoolAllocator<STACK_TRAITS>::isManaged(const boost::context::stack_context& ctx) const { return blockIndex(ctx) != -1; } template <typename STACK_TRAITS> int CoroutinePoolAllocator<STACK_TRAITS>::blockIndex(const boost::context::stack_context& ctx) const { return header(ctx)->_pos; } }}
3,505
1,524
class dotdict(dict): """dot.notation access to dictionary attributes""" def __getattr__(self, attr): return self.get(attr) __setattr__ = dict.__setitem__ __delattr__ = dict.__delitem__
80
10,002
<filename>src/CalcViewModel/Common/ExpressionCommandDeserializer.h // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #pragma once #include "CalcManager/ExpressionCommand.h" namespace CalculatorApp::ViewModel { namespace Common { class CommandDeserializer { public: CommandDeserializer(_In_ Windows::Storage::Streams::DataReader ^ dataReader); std::shared_ptr<IExpressionCommand> Deserialize(_In_ CalculationManager::CommandType cmdType); private: Windows::Storage::Streams::DataReader ^ m_dataReader; COpndCommand DeserializeOperand(); CParentheses DeserializeParentheses(); CUnaryCommand DeserializeUnary(); CBinaryCommand DeserializeBinary(); }; } }
327
766
/* generated */ #include "class.h" static const struct range ranges[] = { { 0x10B00UL, 0x10B35UL }, { 0x10B39UL, 0x10B3FUL } }; const struct class utf8_Avestan = { ranges, sizeof ranges / sizeof *ranges };
90
3,055
/* Fontname: -Efont-Fixed-Medium-R-Normal--12-120-75-75-C-120-ISO10646-1 Copyright: (c) Copyright 2000-2003 /efont/ The Electronic Font Open Laboratory. Glyphs: 2129/21527 BBX Build Mode: 0 */ #ifdef U8G2_USE_LARGE_FONTS const uint8_t u8g2_font_f12_t_japanese2[61584] U8G2_FONT_SECTION("u8g2_font_f12_t_japanese2") = "Q\0\3\2\4\4\4\4\5\14\14\0\376\0\0\0\0\0\0\0\0\0\30\134\26\314h\34\71\232\243\71" "\232\243\71\232\243\71\232\243\71\232\243\71\32\0\0\0T\60\255\7\350N;\7\353P\221\13\201R\331\13" "nU\232\13\31Y\203\13\62\134e\13=_\223\13bb\221\13\363e\271\14)h\134\13um>\13" "\326ri\13\362w\254\13\243|\230\13\333\200\251\14\70\210[\13\237\214a\14\25\220J\14\24\226x\14" "\177\377\377\60A\21wz\134\351\20&\331 MJ\226d\11\0\60B\30\271y|\71\22\17k\216\14" "a\224DR\244\324$M\312\42\23\0\60C\15V\212<i\224\204J\224\204\0\60D\23\211\211<\71" "\22Fq\22'\71 \205I\61\212\1\60E\15uz<\251\264da\26I\0\60F\21\267z\134\71" "\240\203\223\226\3q\65\324D\0\60G\16wy\134\71\20\16j(F\265\1\60H\25\271y|\71\244" "\23\6\35\311\201\34\310\1\71\12\263\352\0\60I\17wz\134\341\220d\245MJJM\0\60J\32\272" "y|\71\224CS\62\244Y\232\15\251V\11\223(L\242,\223\64\0\60K\30\252y\134\71\24F\203" "V\252EYTK\262\64\13\223(\7T\0\60L\30\252y\134a\22\205\311\260\225jQ\26\325\222," "\315\302$\312\1\25\60M\24\267z|\361\62\344\300A\7\262\245\266\3\71\60$\0\60N\26\270z|" "Im\31t\344\240#\341\22eJ\216\344\310\20\1\60O\12\244{|\245\266\260-\60P\22\247z|" "\261\22%\255q\16\344@\16\304\31\0\60Q\31\272y\374@\226f\351\22\15Q\34\305Q\34%a\226" "\346H\16\210\0\60R\30\273y\334Ic\322:EC\26gq\26gIX\315\241\34Q\1\60S\17" "\230\212<\71\62\350\134s N\206\5\60T\21\231\211<a\22\15J\316K\216\304\321\60\1\60U\26" "\270z|\71\220#\311\60\310\71\222\15IQ\311\21\35\231\0\60V\31\271y|Q\222EI\230(\303" "\16\344P\70$Q(\345\220\16m\0\60W\14\247{\34q\277&\221\246\1\60X\17\247{\34q\226" "h\211\334\65\211\64\15\60Y\24\271y\274\71\222\15\327x\215\322(\336\221\34\210U\0\60Z\30\272y" "\274I\65I\206C\234\3s\24G\71\260C\71\222\3\62\0\60[\25\252y\334i\226f\303A\315\322" ",\215\342\34\313\261!\2\60\134\30\253x\334I)KJ\331\64\14q\26gq\224\3\71\230\203C\6" "\60]\26\251y\134\203\16\344@\16D\303\35\310\201\34\311\241\34\222\0\60^\27\252y\134\303\222&\305" "\34\211\226aGr$\207r,\307\64\0\60_\27\271y|\71\222\16k\216\204R\244\345H\216Da" "\26\206C\0\60`\31\272y|\71\224%\303\220\224r(\324\42\61\207r\250\232\245\341\220\0\60a\24" "\270y\134\71\220\16C\226\3q\244M\325\34H\265\15\60b\27\271y\134\71\222%\303\240D\71\222\3" "\221\70ei\216\304\342\10\60c\13Vz\134\213\226\206\231\4\60d\21z\230\234C\64\204\71\226C\71" "\222\3\262\10\60e\24\213\230\374HmH\222!\314\301\34\313\241\34\321\1\31\60f\23\231\211\334\303\35" "\311\201\34\310\221\34\311\241\34Z\0\60g\24\232\210\334\313\260CI\61J\262\34\312\241\34\313\261\11\60" "h\23\250z\134\71\220\3\71\22i\243\32\347H\216\14\3\60i\26\251z\134Y\22eI\224C\221\270" "\312\71\220C\71\64,\0\60j\32\272y|\71\224\3\203\224\205I\24fi\226F\331\220fb\226\204" "\33\0\60k\27\251y<\71\22J\221\226#\71\222#Y\230\205I\64$\71\0\60l\27\252y\274\265" "\64\31\64\251\255\242\204JQ\212\24)\211\42m\1\60m\32\272y\134\71\224C\71\60$c\222eb" "\226Fj\244-\245H\312$\0\60n\27\232\211|C\232DY\224%Y\250\205R*\205\221\230\3\32" "\0\60o\30\252y<i\226.\311 \305Q\34\305Q\66D\65%\321\222\322\6\60p\33\273y\374H" "\253R\15\223a\212\263\70\213\263l\310\242LJ\264$\212F\0\60q\34\273y\374\210\224FI:%" "\203\26gq\26g\331\220E\231\224hI\24\215\0\60r\23\251z\234\351\16d\305,T\322D\215\322" "\254:\2\60s\27\253y\234Y\222\214I\224\245a\32ji\22\245aZ\313\201\31\60t\30\273y\374" "\210\230EC\252U\303\64\324\322$J\303\264\226\3\63\0\60u\25\252y|\71\266\323r\250\30\325\242" ",\11#%\213G\0\60v\26\252y|\225pHrB\16\25\243Z\224%a\244d\361\10\60w\30" "\253y|\241:D\71\242\346X\224F\305(\213\302(\251\345\300\12\60x\17j\231|:\20\205b\216" "\345X\216\5\60y\24\212\231\374@\222\3I\246\3Q(\346X\216\345X\0\60z\23\213\230\374\210\216" "D\241$Fq\230\311\71\230\203\1\60{\32\252y<\311\60$i\226F\331\240\304Q\34eCTS" "\22-)m\0\60|\33\273y\374H\313\260T\303\64\313\6)\316\342,\33\262(\223\22-\211\242\21" "\60}\35\273y\374\210\224\14R\222Ni\226\15R\234\305Y\66dQ&%Z\22E#\0\60~\27" "\270z\234\71\220\15\203\230\3\313\240\3\341\220eK\26%#\0\60\177\30\252y<C\16\345P\71\12" "\207-\311\224(K\224\60\13s$\4\60\200\27\272y|\71\24\17\222\230&s\24Gq\222Fj\226" "\206\203\4\60\201\24\252y\274\245\61i\223:*E)\225\302H\314\1\15\60\202\25\270y|\71\220\16" "j\234%\303\230\3a\24fQ*\1\60\203\21xz\134I\232\34\222R\230%b\16\204\0\60\204\30" "\273x\274\71\20\345@\266&R\266dKZ\222s,\7s,\5\60\205\16w{|\245%\221\226H" "\32\323\20\60\206\32\272y\274\71\24fCT\211\222R\266eK)\311\206(\314\221\34\211\1\60\207\15" "wz|\361\30\207CT\61\2\60\210\27\271y\234\71\222#\71\62\244\71\222#\351\20fS\26)+" "\0\60\211\21\267z\134\71\240CqeHD\65\16\245\15\60\212\21\266{\234Q\226d\242K\224di" "\230I\0\60\213\26\251y\134\203\16\344@\16\14\241\26\305:\220IY\244n\0\60\214\27\272y\134\71" "\224C\221\232D\321\220\205\335\304L\214\222T\312\1\60\215\26\251y\134\203\16\344@\16\14\241\26\305:" "\220\3\71\220n\0\60\216\17xz\134\361\234lZ\42*Y)\2\60\217\27\272y\134\71\224C\71\244" "LK\226\251Q\234\310J\232eb\16\60\220\30\252y\134C\16\345P\16\14b\222EE)\225\22)" "Q\42y\2\60\221\27\252y\134\303\16\344\300 \246Q$\205\221\254S\22I\11\245\0\60\222\26\271y" "\234\71\222\16k\16\204\312T\223\223\64JshP\0\60\223\26\252y\234\71\224#\71\224#\71\64g" "i\226\211Q\222J\0\60\224\31\272j\134Y\22JI\16$\322\252\345P\16\345H\16\345H\216\304\0" "\60\233\12D\350\134I\224\64\1\60\234\11C\330<\25\245\2\60\235\13V\233\34\262\34N\31\0\60\236" "\17\207\232\274a\24F:\240\3\351\26\2\60\241\14fz\34\247\322\226\206!\0\60\242\24\232x\34\17" "\71\24fi\24\357@\16\345H\216\344\0\60\243\14uz\234\265LQ\302\12\0\60\244\14\247z\334\325" "\342$\305\235\0\60\245\16vz\134i\66\14\241\26f\32\0\60\246\25\271y\234\71\222#\341p\310\1" "\35\220s$\7bU\5\60\247\13G\212<\203\30g\303\20\60\250\21z\211<\303\240\346P\16\345P" "\16\245\303!\60\251\17wz\234q\64\14\231\230DR*\1\60\252\26\271z\274\71\222#\331p\324\1" "\71I\243L\313\221\34\320\0\60\253\23\270z|\71\220\3\341\60h}\12\243\60IE\5\60\254\30\271" "z|Q\222EI\226\16\203\230\205Y\230\25\263\60J\223P\2\60\255\27\271y\234\71\222#C\62\350" "H\216\14\7\35\311\221\34\311\221\14\60\256\32\272y\234Q\22FI\70D\203\16\345\320\240\14;\224C" "\71\224C!\0\60\257\22\250z|\71\60h\245\60\11\223\64\256\212\62\0\60\260\30\272z\374@\222U" "\262A\315\302Z\230\245\71\222#\71 \353\10\0\60\261\26\252y\134\71\224C\303 ea-\315\241\34" "\311\221\34\220\1\60\262\27\253y\134i\22\245I\64\14a\226\206\325\34\313\241\34\312\21\35\60\263\21\210" "\212\34\7\35\310\201\34\310\201\34x\7\2\60\264\27\252y\374@\222\3\311p\207r(\207r(\207\242" "a\320\241\10\60\265\25\252y|\325,\315\242\341\220U\263\64\313\221\34\311\1\25\60\266\30\253y\134Y" "R\312\222R\26\16\307,\316\342,\207r(Gt\0\60\267\23\251y<:\224\303s\24\346H\16\344" "@,\316\0\60\270\25\252y<b\222UrL\316\322\34\311\221\34\311\1u\7\60\271\24\232y<\303" "\220C\71\224#\71\224#\345,Sw \60\272\27\252y\374@\222\14C\222\3\71\224#\71\224#\345" ",Sw \60\273\25\252x|\71\224C\331!\32\304Z\32\305\71\224c\203\2\60\274\32\253x|a" "\222\205I\226\215C\224\14a\232\305Q\16\344X\16\16\22\0\60\275\20\230z\34q\222&i\234\3q" "U\224\1\60\276\24\251z\334\211\232T\243\64\7r$\7r Vu\0\60\277\24\251y\234\71\62h" "a\224NJ\16\350@\16\304\252\14\60\300\30\253y\234Y\22\16J\26V#K\16\351P\16\345\210\16" "\350\10\0\60\301\25\252y\334\332\240C\71\24\16\207\64\207r(Gr@\6\60\302\27\253y\334K\62" "HI\232c\351p\210s,\307r(Gt\0\60\303\17wz\134aT)%Y\34j\42\0\60\304" "\25\251y|iV\211\262$\312\222\64Gr \7bU\6\60\305\30\272y\374@\222U\264\70\312\242" "Z\224\346P\216\344H\16\310:\0\60\306\22\232y\134\303\316\62\34\322\34\312\221\34\311\1\35\60\307\25" "\252y\374@\22\15KN\36\16i\16\345H\216\344\200\16\60\310\15\266{\34i\353\26)\241\332\12\60" "\311\21\267{\34q\226h\211<FR\230\304\315\0\60\312\27\272y\274\71\224C\341pHs(\207r" "$\207r$\7t\0\60\313\13j\231\134\303\316\207\207\0\60\314\24\232y\134\303\220C\71\222J\71\240" "#\345,Sw\4\60\315\27\272y\234\71\24\17C\16\345H\16\310\213$eb\16\345P\12\60\316\16" "\210\212\374@\16\304\71\20WE\31\60\317\23\212y|Q\234\245Y\230fi\26'\71\240#\1\60\320" "\30\253y\374H\35\251E\71\220\305YZL\303\70\312\201$G\22\0\60\321\30\253y\374\210\216DY" "\224\210Y\234\245\305\64\214\243\34Hr$\1\60\322\24\230\212\34\71\220\3\71\20*\203\226\3\71\220#" "\303\20\60\323\25\231\212\34i\242&:\222MC\232#\71\222C\303\220\0\60\324\25\231\212\34\251\22F" "\252\222MC\232#\71\222C\303\220\0\60\325\22\231y\34\357H\216\344@\216\344@\16\304\252\14\60\326" "\25\271y\334I\234\14w$Gr Gr \7bU\7\60\327\30\272y\374\200\16D\303!Gr" "(Gr(Gr$\7d\35\1\60\330\17j\231|:\20\245a\26\347X\216\5\60\331\24\212\231\374" "@\222\3I\246\3Q\32fq\216\345X\0\60\332\23\212\231\374\200\16D\231\244Ei\230\305\71\226c" "\1\60\333\26\271y\234\71\222#\341p\214\223b\22\265%Q\246\345\200\10\60\334\32\272x\234\71T\11" "\243d\70\244\71\220T\223(\213\262\250\226d\71\242\2\60\335\32\273x\234\71\226\251Q\64\14\212\232#" "\315I\24FY)\213\262\34\222\1\60\336\22\211\211\34\357H\16\344@&\305:\224C\21\0\60\337\21" "\247z<;\240\3\71\262\3\71\264\3: \60\340\25\251y\234\71\222#\71\220#\325,,EC\62" "\204\71\22\60\341\24\251z\374@\216\344H\246\245;\222\3I\232E\252\16\60\342\24\212\211<\303\220\346" "P<\34\262\34\312\241\34\33\24\0\60\343\21xz\134\71\220\3\311\60Ha\222\346@\10\60\344\30\253" "x|\71\226c\331\220\15Q\262dq\224\3\71\230c\71\226\2\60\345\13G\212<C\134\32\206\0\60" "\346\22z\211<\303\220C\71\224#\71\224C\331p\10\60\347\14fz\34\327dP\323a\10\60\350\24" "\231y\34\357H\216$\303\240#\71\222#\303!G\2\60\351\23\251y<\303\220S\207;\222\3\71\222" "\3\261\270\2\60\352\14\246{\34\241\217\325\60\323\0\60\353\26\252y\274q\24Gq\24GYT\213\272" "%Y\246\345\20\0\60\354\16\247z\34q\257b\222E\211\246\2\60\355\13\210\212\34\317\236\207C\34\60" "\356\13fz\34\207Pl\323\0\60\357\15\230z\34\317\346:\20\247\242\12\60\360\26\272y\334\71\224C" "\331p\253fi\226\15\207\70\207r(\3\60\361\22\211\211<\303\220#i\22\353@\216\344H\70\34\60" "\362\22\230z\34\7\35\310\201d\30\342\34\210Sm\5\60\363\23\231y\34:\224\346H\16\344H\16\344" "@,\316\0\60\364\31\272y\234Q\22FI\230\16\227\34Hr Gr(Gr@\226\1\60\365\15" "vz\134i\66L]\62I\1\60\366\16wz\134q<\14Q\234\206\42\0\60\367\27\253y\374@R" "[*S\322\30gq\226C\71\226C\71\224\3\60\370\32\272j\234I\71)\16\311\240\244Y\34\305\311" "\20\15I\24\347P\16\205\0\60\371\30\233\211\374@\222CI:$\311\220\305Q\216\344X\216\15\312\60" "\6\60\372\27\253y\374@R[*SR\316\221u\312\261\34\312\241\34\321\1\60\373\10\42\275\34C\0" "\60\374\10\30\312\34\7\1\60\375\10F\232\34\262\134\60\376\17w\232\274a\24F:\240\3\71\220\0N" "\0\10\32\311\34\17\1N\1\27\273h\34\17j\216\345X\216\345X\216\345X\216\345X\16\251\0N\3" "\32\313h|\71\226c\71\226c\331p\320\201\34\313\261\34K\303\64\35\26\0N\7\27\273h\34\17b" "\216\345\330 gq\26gi\230\206\325,\324\0N\10\32\313h\274\71\226c\351pPs,\7\242\34" "\251C:\224\304\232\244\3\2N\11\17\253x<\303\235\227a\310\371\70\34\4N\12\30\313h\274\71\226" "c\71\226c\71\66\310\71\226c\71\226c\351p\20N\13\30\273h\34\17j\216\345\330\216D\71\220\305" "\71\226c\71\226c)\0N\15\30\273h<\303!\316\241\34\323\21\243\222%Z\230\346X\216\345X\12" "N\16\32\313h|\71\226c\303\20\346\330\240\206\71\226\15\7\35\310\261\34\313\21\21N\24\21\272i\134" "\303\330q\30;\16c\237\206C\0N\26\33\313h\134\215Q\61*F\245\341 \65F\305\250\30\15a" "\216\345\330\60(\0N\30\30\273h\374\200\70\310\71\226c\303\240\205i\230\206i\230\206\331p\20N\31" "\33\274h\34_s\60\7\36\242L\213z\11\223HM\242\34\211r$\312\1\5N!\33\273h\34\17" "j\216\245\303c\250D\25%\252(QE\31\206D\311\1\35\21N&\34\273x\134i-\216\302\341 " "&i\224DYR\312\222\306$\321\201$\34\16\2N-\30\311i\234\71\22\16\207,\323\62-\33\16" "a\216\344H\216\344H\10N\70\34\313h|\71\226c\71p\220\263\70\13\223,\325b)\215\222(\311" "\222H\7\6N\71\32\273h\134\303\20\246a\222\205Q\61*\15\7)\15\323,\316\342(\226\0N;" "\30\313h\234\71\30\17\347\34\313\261\34\70\344@\216\345X\216\245\303ANE\32\313h\234\71\226cC" "\234\305Y\232\245a\16\345P\222\3YZ\322\1\1NO\32\313h\334C\64\350X\216\305\303\35\312\241" "\60S\23\35\320\221H\16\207\1NW\32\313h\334\343\240C\351p\220\332\206[T\32\16\342\254$\222" "\226\251)\0NY\31\272i<\303\220C\71\222#\71\222#\71\222#\71\222#:\222\14\7N]\31" "\312i|\71\224C\361\60\304Q\34\305Q\34\245Y\232EI\30\311\3Nq\36\313h\274I\16D\341" "\26gq\226\15\203\234\305Y\70(a\226DI\226D\311 \15Ns\36\313h\234J\66$\265()" "&R\216\205\203\222\3Q\234e\303\22gQV\212\304\1N~\36\313h\134Y\70(q\66\34\324," "\31\222AL\262\322 \245Y\70\214Q\61\312\6\1N\206\26\271i\34\357@\16\304:\220#\71\222#" "\71\222#\71 \2N\210\31\273h\134\303\220C\261\222C\351pP\263\70\312\201\34\313\261\34R\1N" "\211\34\313h\234\71\66\244Z\16\305\303\220\3Q\64\34\324(\34\206\34\310\261\34R\1N\213\34\313h" "\274\351p\220\32\207!\7\342a\320\201(\32\16j\224\15\203\16\344\220\12N\214\14\213\210<\303\235\177" "\34\16\2N\222\30\273h<\303\61\307rl\220\263\64L\303p\330\261\34\13\207\203\0N\224\30\272i" "<\303\240\346P\16\305\303\20Gq\224fi\226f\321p\10N\225\30\312i|\325,\315\242\341\220U" "\263\64\213\206CV\315\302Z\32\1N\234\36\272i\34\17Y\24G\341\60HI\224DI\224DI\224" "D\303 Fq\224\15\207\0N\241\30\273x\274\71\226c\351p\220r,\307r,\307r,\7\207!" "\1N\244\32\313h\274\71\226\16\7\255\34\266DI\226\3I\16\345P\22k\222\16\10N\253\33\313h" "\274\351p\220\206!L\303a\310)\303\220#\341pPs,\207T\0N\254\33\313h\274\351p\320\341" "a\10\323\60\15\207!\7r *FY\224UU\0N\255\31\313h\274\351p\320\341a\10\323hx" "\207\222\341\234c\71\226C*\0N\272\32\313h\274\71\226c\71\226c\71\226CI\216\324\201,\255\345" "@\222C\1N\301\33\313h|\71\226C\321\240\345\220\216\324\261\34\313\261\34\313\261d\30\242\34\1N" "\312\33\313h\274\71\226CI\16d\351\60D:\240\303\303\220C\71\224c\71\224\2N\313\31\313h\274" "\71\226CI\16diI\311\22\255\234\305Y\32\246a\65\3N\317\36\313h|Q\16D\71\20\305Y" "\234\245Z\230D\305(+e\225h\210\6-\312\201\0N\325\33\314h|u \313\201,\16\343\341\220" "\210\225\60\16\343\60\16\343d\30s\10N\326\37\313h|\345\244\32%i\224L\322R\31\222Z\224\324" "\242\244\26%b\24F\305(\33\4N\330\33\313h|a\32\246ae\30\242\64S\262(\211\212Q\61" "\15\323\60\15C\11N\331\35\313h|\345,\316\322$j\211*J\24)\245\226\250%j\211Z\206!" "J\322\0N\343\33\313h|Q\222F\305(\316\6iP\305,\11\323\60-\246I\24K\71\20N\344" "\34\313h\274\71\226CI\16d\351\60D: \15\203\234\305Y\234\350@\216\245\0N\345\33\314h\134" "q\30\207IX\312\302(\13\263(\214\303$\14mqR\325B\31N\356\37\313h|\71\226\14[\222" "\3Q\16D\203dJJI-J\304$\13\223H\224j\211\30N\360\36\313h\134\231\232\350@\22\15" "I\324\22\225\246\226\250%j\211\22)INi\230f\0N\362\35\313h|\345,\36\6)\211Z\242" "\212\22EJ\62\14Q\230\206i\230\206i\230\1N\366\32\313h|\345\244\234T\223aK\242p\253\14" "\247\60\15\323\60\15\323\60\3N\373\33\314h|\241:\350@\26\207q\230\16/a\34\306a\34\306\311" "\60d\71\4O\1\35\313h\274\71\226CI\16diT\322\62\65\7\242!\214r \312\201(\35\16" "\2O\17\35\313h|Q\16DI\32\325\312\303E\13\223,\216\222\64J\322$\13\325,\7\2O\20" "\35\313h|Q\222F\305(\316\206lP\265$J\262$\254fjT\211F)\7\2O\21\34\314h" "|u \313\201,\36na\252mI\266FI\61\211jZ)\214\303\20O\32\34\313h\274\71\226C" "I\16d\351\60D:\240\243\303\65\311\201H\34\244\34\213\0O\35\36\313h|\71\226\14b\16\345X" "\62\14\211\26&Y\234%a\224\225\222-\331\242\34\10O/\34\313h|\345,\315\342hX\244P\211" "\302(\32\246bT\214\212Q\61\212\206\1O\64\34\313h\134Y,\325\222RK-\31\206DL\303\64" "\31\6%L\303\64L\303\20O\70\35\313h|\345,\36\6)\211Z\206!Q\242H)\265\14C\24" "\246a\32\246a\6O:\37\313h|\71\66\14Z\34%\203\22\345@\242\14\221Rj\211Z\206\250\16" "D\71\20\305\2O<!\314h\134q\230\204\225\60\213\222(\213*\221\24fQ\230Ea\26%\211\26" "II\264U\302\24OF \314h|\71\230\14j\222\205Q\26F\203&eQ\22ea\224\205\321 " "\346`\16&\303 OM\32\313h|\345,\316\322d\30\242\70R\302\244\224\225\262R\61*V\207\3" "ON \313h|\241\70\310R\232Di\62\14\211\22eI)M\262\60YB\61\211b)\31\224\0" "OO\35\313h|Q\16d\361\60Ha\32\206b\226D\203\26\246a\32\246a\232\14C\0OP\35" "\313h\134Y\234\305Y\232\14\203\22\206Z\234\15KTL\262\60\15\243aHr\10OS\36\314h|" "u \313\201,\36na\252mI\266FI\61\211j\312\240Da\34\206\0OU!\314h|\71\70" "\334\322\60\16\223!\311\224(\211\222R\22&Q\22&C\22\306a\34\246\22\0OY\32\313h\274\71" "\226CI\254I\312\240\250\361p\316\201\250\30eQVU\1O\134\36\313h|Q\16D\71\20\15R" "%\215\222P\211\6%L\303\64\34\242\60\15\323\60\3Os\35\313h\134Y\234\305\303 \205i\30*" "\303\240\204i\230&\303\20\205i\230\16\207\0Ou\36\314h|b\232daTM\206!\222jIT" "\35\16QkTM\262\64\311R\61\3O\177\37\313h|\345a\320\252\311\60DITQ\242HI\206" "!J\242\64J\322L\215\212\243\0O\213\42\313h\134\71\20\15C\22%YR\312\222\312\220$K\224" "\264(-R\245\26%\245\64)'\262\0O\215\34\313h|Q\16\34\302(\316\342\341\242F\311pJ" "\262\60*\246a\32\206\22\0O\233 \314h|Q\65\252F\305d\30\262R\246E\225,\12\207C\224" "\203Y\24Fa\226\244\11\0O\235\33\313h|\345,\36\6)L\263\212\224t\61*\325\250\30\25\243" "%K\304\0O\241 \313h|\71\66\14Z\224\204Y\22&\303\220(-JOI\247\244S\322)\31" "\206(\211\1O\256#\313h\134I\216$\303\20%\71\220$\203\224t\321\222R\62\14JT\211Z\242" "d\30\224j\224J\0O\257\36\313h|\71\226\14b\232%\303\20\225\245aHJ\251\226&\303\20e" "I\30e\331\32O\265\36\314h|\311\240\266\14b\34\16\207d\7\24eP\242\70\214\224\64\214\263$" "M\64\5O\277\35\313h|\71\66\14Z\65\31\206(\211*\312\60(\245\226a\210*i\246F\305Q" "O\302\36\313h|\241\70\310Q-\221\302L\324\242\244\62(Q\230FI-J\242J\324\230\1O\303" "\36\313h\134\71\226\14[\22F\305(\32\26\65\214\212Q\64$Q\61R\302$\22\325\1O\312\36\313" "h|\345\250\70,Q\226\204YR\221\242!i\316\206,\222\262$\22#E[\3O\327!\314h|" "Q\22G\325\244\224%Q\255\22JY\224T\63eP\242Z\30ea\224\205\321 \1O\335\36\313h" "\134\71\226\14[\22F\305(\32\26\61\35\16I\66FI-\211JZ%\14\1O\341\35\313h|\321" "\232c\303 \345X\64H:R\32\264\34\213\6-\312JYiP\0O\356\42\314h\134u$\32\266" "D\253DI\230d\226!\312\222,R*J\230dQ%\221\262T\214V\0O\363\42\313h\134\225\64" "J\322!\31\222,\11\263$S\16I\226\204Y\22\16\312\220D\305\250\230d\31\0O\365!\314h\134" "a\234\14C\26\246\321\60Di\250\14\227\60\316\222\250\244\324\222R\230-Y$&\0O\370\37\314h" "\134a\234\14C\26\246\331\240\205I\246\14\227,\251%\303\242\244\245a\210\322F\0P\11\36\313h\274" "\71\224\304\232\64\34\244\64\34\206\60\15\207!\314\261a\220\222\64\211\206!\1P\13!\313h\134\71\66" "\234\244,)eI\62\34\222(K*C\322)\351\224\264\14Is\222\14\203\0P\15\33\313h|\345" ",\36\6\251\326\222\15\7%\307\242A\213\262RV\312J\203\2P\22\37\313h\134\71\20\15S\227R" "\322eQ\266(\251\14K-JjQR\233\222DMr@P\31\37\313h\134\71\26\15Z\34%\303" "\240\264*\311 %R\230da\62\14J)\311\232\22\65P\37 \313h|I\224&Q:\14YT" "\34.:R\31\266$\314\222aK\302,\11\263dX\0P#$\314h\134I\24'Q\234D\203\62" "\14Q/\322R\252$Z\224DY\22\325\222()iI)R\262\0P$#\313h\134a\232\14C" "\24\326\6)\251%J\62HI-J\222AJjQ\222\14R\222#\311\60\10P+!\313h\134Y" "\234\305Q\22FYe\30\222\35H\222a\210\222N\311\60DI\247\244S\22*\0P\71\42\314h|" "u J\342$\13\223d\311\264\212\62\14IS-\31\206,\223\263$\215\262\60I\23\0PI\37\314" "h|Q\216$\203\32\25\207CT\313\244AJ\302\70\31\306$\212\207[\30\207!\0PO!\313h" "\134\311\260\345\330\60HI\32%\303\220(\71\222\14\203\222(]\206AQ\272(=\205\2P\134\34\314" "h|u\340 \346X\64\210Q\226\15/:\20E\203X\16\343\60\316D\0Pe$\314h\134im" "\320\206(\211\262aH\242,I\224a\220\262(L\222a\212\244\60\33\246J\61\311\6\1Pt \313" "h\134\71\20\15JIJ:%-C\322)I\16I\247\244eH\332\302$J\262\244*Pu\35\313" "h|\345l\310\252\311\260%a\244\14Kc\226\14[\22f\311\260EY\266\6Pv\37\313h\134\71" "\226\14[R*\15S%J\244a\12\323d\30\224R\322i\251LI\253\0P} \313h\134I\224" "FI\232\245\311\260\225\42m\220\212Q\62\14\212\16$Q\322S\226\304\12\0P\215\35\313h\134a:" "\234\332JY\62\34\222(K\222aP\302\64\34\242\254T\214\66\11P\221\42\313h\134I\230%Z\246" "$C\222,\245l\30\244\60\232Z\206A\311\306(\251%Q\244\204!\0P\230\32\313h\274\71\224\304" "\232\244eR[\322-\252%]\206\203\232c\71\226\2P\231!\313h\134\215\311\60Dm\311\60(u" "@I\206\245SR\31\226NIeX\244$J\262$\21P\254\37\313h|e\251\66\14Rc\22\205" "\312\60(S\232\14[\22\245\311\260%Q\232\14C\0P\265\34\313h|\345a\310\302\64\31&\61K" "\206S\255\64hQV\32\264H\312\326\0P\267\42\314h|I\16%\303\226h\241\62hR\26%\303" "!\252#\311\60dRRK\224(\353\42I\0P\276\42\313h\134\71\226\14C\24V\242!J\22)" "\261\14Q\22\265DC\224$Ri\230B%\212\304\0P\315!\314h\134\321\22\16Y\30EC\222\14" "J\277\34\224\376eP\332*\225!JjC\224$Z\42P\317\37\314h\134\331\32%\361p\352i\30" "\22Q\252,\265L\11\23i\313\224R\242EI(\2P\325\37\313h\134\225Ti\33.R\22&\303" "\220\210i\64La\232\14\203\222%a\224e\253\0P\332\36\313h\134Y<\234\262\64\351T\213\224a" "\210\224,)\15Z\230dQ\22U\242\66\21P\347\42\313h|I\26FI\230\14C\224D\25e\30" "\224R\313\60D\321\240EYi\320\242\254\64(\0Q\0 \313h\134\215\303)K\243a\12\303\341\240" "DJ)\31\6%KJ\311\224\324\222D\211\304\0Q\4\36\313h\134a\232\14[T\34.Q\30E" "\303\42\205Q\64LI\242&\235\244Jq\2Q\22\37\313h\134\311\260\225\207K)K*C\262c\311" "\60(a\32\15C\22%\235\222NI\62Q\37\36\313h\134I)\213\22q\270T\206\244S\62\15S" "\61\212\206\251\30E\303\224\225\22\65Q*!\313h\134\303)\213\243!+e\311pH\22\245)Q\242" "$\31\222\222\224%\221\230)Y\42\12QC\26\272i\134\303\316\62\34\262(\216\342(\315\322,J\302" "H\36QD\33\273h\134\303\20\246a\32\246\341\60\304I\216\324\221:\20eQ\226\255C\0QE\34" "\313h\234\71\26\17\7\61\311\201L\33\246\60\312\201(\7\242\70\253\204\231<\4QF\37\313h\234I" "\216\224Z\242,iL\22\35Hr@Q\223\212%\312\201(\213\262l\35\2QH\35\313h\274\71\20" "\345@\224\3\207\60\212\263t\70\210I\216\324\201(\213\262l\35\2QI\35\313h\274q\26\205Q\61" "Jr$\36\16a\222#u \312\201(\213\262l\35\2QK\33\313h\274\71\226\16\7\65\7\16a" "\32\246\341\60\304I\216\324J\331\20\16\1QM\35\313h\234\71\66\304Q\34\245\303!\213\262R\226\15" "\203\232\344@\224EY\266\16\1QP\36\313h<\321\240EY)+\15Z\224\225\262\322\240\205\71\20" "\345@\224EY\266\16\1QZ\33\313h\134\255Imx\207\224aH\242\64L\303a\210\223\34)K" "\331:\4Qe\30\273h|;\226c\71\226c\71\224\344H\35\310\322Z\16$\71\24Qh\32\313h" "\274\71\226CI\16dii\70\250\71\226\3\207\34\310\261t\70\10Qk\27\273h|\203\216\345X\234" "\305Y\234\305a\65\214\243\34Hr(Ql\33\313h|\345,\316\322b\224EY(\346P\35\310\322" "d\310\206\60\307\22\0Qm\30\273x\274\71\226c\351p\320\11Q\16di\61\216r \311\221\4Q" "q\31\313h|\345,\316\302\341\230\305Y\234e\303A\7\342\260\234\350@\2Qu\33\313h\334\352\220" "\3\71\226c\303\240\205i\230\206\331p\320\242\70\224t \1Qw\31\313h\134\303\32\246\303\32\246\303" "\32\246\303Nx\320\242\70\224t \1Qx\34\313h\234I\216T\207S%j\211\242\341T\211Z\242" "d\70h\325T\321\221\0Q|\35\313h|\265\341 &\351pM\242d\70\210I\24\15GEM\232" "\244$\22\223\20Q\205\32\312i\234\71\224\16\7-\324B)\311\224,Z\23\35\321\21\35\321\1\1Q" "\206\26\271i\34\17Y\246eZ\66\34t@\7t@\7t@\26Q\212%\273h\134\303\240%Q\222" "%Q\222%Q\222%Q\222\14\7)\211\222,\211\222,\211\222,\211\222,U\0Q\215\32\273h<" "\303\71\7\16aT\34\206\60*F\245\341 \245a\32\206\22\0Q\222\31\271i\34\17\71\360\240\3\17" "I\32\15C\224F\303\20\245\321\60$\0Q\227\33\273h\34\337!\35\312\206\34\210r \312\201(\7" "\242\34\210\262(\313\326!Q\231\30\273h\34\237b)\316\206\65\307\6\35\313\206\203\16\344X\216\210\0" "Q\240\33\273h\34\337\201d\30\242$\36\16R\230\64&\215IV\212\224R*\16\3Q\254\30\313h" "\274\71\64\250a%\312\354HY\223lr\16\350\240\16f\0Q\267\32\313h\334aZK\302(R\207" "!\313\201p\330J\305\250\70\245a\32\2Q\306\37\313h\274Y\22FY\64\14IT\226\322d\330\222" "(\214\212\321\260dQV\312\201C\0Q\315\36\313h\334a\64\14J\230F\303\232D\351\260%\245\322" "\60e[%Q\22)\213C\0Q\335!\313h\134\331 \25\225)\211\244\352\60ha\222\15I\246T" "\226dH\242,)U\22\61\312\4Q\341\27\272i\134\203\232\245Y\232\245R\232T\223j\26\226\222\60" "\222\7Q\346\36\314h\134\71\230\255K\65i\214\222b\224\324\222\36\243\244\230dZ\222#\231\32\17\2" "Q\366\34\312i\374@\24'J\230H%-\211\304LK\42)K\206\60\321\221\341\35\2Q\370\26\253" "x|\203\234\305Y\234eC\66\350\220\16\351\220\16\15\17Q\371\32\253x\34C\66HY$e\221\224" "ER\26I\203\244C:\244C\303\3Q\372\26\311i\234\71\222F\375i\30\322\60\313\264L\313\264l" "\70\4R\0\26\272i\34\17i\226fi\226fa\267\64K\243\70I\25\0R\3\25\272i\34\17a" "\237\306P\13\223(K\263\64\212\223T\1R\6\36\314h\234Q\216D\71\222\305a\32g\311\260\24\243" "j\224#Q\16dq\230f\42\0R\7\36\273h<\321\60$i\224DJ\64hQ\222FI\32%" "Q\323\222\305Y\32f\26\0R\10\33\313h\374X\232Di\22\245I\64u\211j\245L\352\22\65&" "\71\242#\2R\12\34\313h\374X\62(QV\312JYi\30\222(+e\245\254\224\305Y\234\245\2" "R\21\35\313h\374\330\60$Q\22\265D-Qi\70%QK\324\22\265Di\22\245Z(R\27\37" "\313h\374\330\60$Q\61*F\321\220DI\226D\211\224D\246bT\213\243\34Hr@R\35\36\313" "h\134\71\26\15\7\251\30\325J-Q\64U\224(R\42-\312J\305(\311\24\0R$\34\313h|" "\261\224\224\222NI\42U\6%\312JYi\70e\245,\316\342,\25R% \313h\374X\62(Q" "\222%Q\222%Q\62(Q\61\212\206$j\211Z\242\306$\13%QR)\34\313h\234b\262EY" ")+\15C\22EZ\24M\225NIY\212\263\70K\5R\60\36\313h\374\330p\312J\225(\32\206" "$\312\42)+\15C\22e\245,\316\206l\210\5R\66\37\313h<\345\244\26%\203\22IY\64\234" "\262R\62(Q\322)\351\224tJ\22\65K\5R\67\42\313h<\203\230dI\224dI\224\14J\224" "\324\242dP\242\244S\322iiZ\212I\62f\251\0R\70\33\313h\134\255I\224&\305\341\232\204\303" "A\253\16C$U\304(\316\322H\4R:\33\313h|\361p\312J\311\240DI\247\244S\322)\232" "*\235\244\70\213\263TR;\34\313h|qV\32NY\251\22U\224\250\226\224Z\242$J\63\65*" "\356\200\0RG\35\313h\374X\62D\225\250e\210*Q\313\20U\242\226\250e\210Z\322$\13uD" "RJ%\313h|\261\224\224\222D\252\14J\224dI\224\14J\224dI\224\14J\224dI\224da" "\222\205I\244\11RM\36\313h\134a\34\205\303AG\207$j\211\242!\211Z\242hH\242\226\250\61" "J\64\5RV!\313h|qV\32NI\226D\225(\32N\71\20%\203\22%Y\22%Y\230\14" "b\222\3\2R[\42\313h\374\330\60(\211\232$\233\222(]\206AI\244J\262$J\262$J\62" "\14\232\232\211\222\0Rc \313h|q\224D\225,\211\224E\312J\311\240DI\247dP\242L\252" "%a\224e; Rd \313h|\361pJ\262$\212\246\226(\332\246dP\242$K\242dP\242" "$\13\223,\324\14Ro$\313h\374\330\60$Q\16D\311\240DI\226D\311\240D\71\20\15C\22" "IIi\30B)\11\207!\23Rp\32\313h\234b\262EYi\70%\235\206S\322i\70ES\245" "Q\252U\5Rr\37\313h|\361p\222\42)\31\224(+%\203\22e\245\341\224\3Q\62\210I\26" "&\203&Ru%\313h|q\224\244I\226D\303\220DI\226D\311\240DI\226D\311\240DI\32" ")C\250Da\64d\2R\207 \313h|cVJ\6%J\244$J\206\250\222F\311\240DII" "J,Q\222\214J[UR\233\27\311i\234\71\222#\341p\314\302,\314\212Y\30\245I\254*\0R" "\237\34\313h\374@\216eC\226&\303\20\205Q\61*F\225\250$ec\226\206\65\5R\240\36\313h" "\134\71\226c\341pH\242\226\250%j\211Z\242\226(\311\222(\311\222A\222\1R\243\32\313h\274\71" "\20\25\243,\212\224H\324\62y\212\207s\226\206\325H\224\0R\251\37\313h\374@\70DaT\214\206" "!\31\242J\324\22\265\14Q%jI\206l\310\252\221\2R\252\35\313h|\71\60(C\226\204Q\245" "\250\245\311\22i\231\62\234\263\70\13\305H\224\0R\261\34\313h\234R\66fq\66\34\222bR\231\222" "NI\247\244\247\244\223\22i\223\5R\264\33\313h<Q\230EY\230D\321\360\226ji\62\14r\26" "giX\315B\15R\271\37\313h|\345,\33\226\64\31\206$*iJT\211j\245,\312\242\244\226" "d\241\226)\0R\276\36\313h|\345,\33\226\64\32\226Z\264dQ%\252D%\251\26%\265$\13" "\265L\1R\305\36\313h|\305A\211\263p\70$\235\222N\311\240D\321TRJI)\223j\225H" "\1R\307\35\313h\134\303\20G\351\60hQ\226\15\203\26e\331\60\310\361p\10\323H\236\25\0R\311" "#\314h\134i:Da\224e\303AJJI\224\224\222h\220\222P\252%Q-\251hQ,\16C" "\0R\325\42\313h|K\66dq\64\34\224(\351\224\14J\224tJ\6%\312J\311\220d\331\220\15" "Q\244\0R\330!\313h<QmX\302\250\70\34\222\250e\210*Qi\30\222H)E\223\22\251Y" "\62H\12\0R\331!\313h\334\341\240\14\242\224%Q\22\206\322\60DR\22\245\311\60\211I[\224E" "Y\244D\22\0R\335\42\314h\374@\272\264%\303 %Y:\34\242$J\302\244\333p\210\222\250\322" "TKjQ\62i\0R\337\33\313h|\265\341\240U\207!L\303a\10\323h\70Hm\303%\253D" "\66\0R\342\35\313h|\305!\212\223A\31\226R\242\14I\224T\224aK\343\341\234\245af\2R" "\344\42\313h\134I\224\15K\232D\341pH:%\203\22e\245dP\242\254\224\14Qm\310\6%R" "\0R\347#\313h<i\70(aT\34\16R\26%\203\22-Y\224\14J\224\324\242dP\242\244\224" "%\203\244\0R\362!\313h<\203\22g\331pP:%\203\22%\235\222A\211\262(\33\206H\212\263" "$\252dQ\1R\372\32\312h|\71\224C\303\20\305I\16HiX\315\322,\207r(\7\24\0S" "\1\33\313h|\71\226c\303\20F\265R%\252dZ,\245\321\230Jq\216H\0S\5\37\313h|" "\71\226c\303\220\305\211\62D\71\20\345@\224\15R\226\206\71\20\345@\66\14\2S\26\33\313h|Q" "\16D\71\20\325JY%\263%Y\234\305Y\234\225\262R\70\4S\27\36\313h|Q\16D\71\20\345" "@\24\15\323\32\345@\224\3Q,\205J\224\225\262\332\20S \31\272i\34\17\252\24\215Q\34\15K" "T\213jI\226\211Y\232\15\207\0S\71\26\253x\34\237\212Q\61j\251E\211\272\344X\216\15\357\30" "\0S:\31\272i\34\17r\24G\211\224U\262\260\226dQ\26%\71\360\240C\0S;\33\272i\34" "\17R\34\15R\22\205Z\230\14C\22\326\222,\312\242$\7\36\2S\77\35\273h\34\337\242,\31\6" "%\213\262\341\220dq\64LI-\222\6)\307\206\203\0SA\30\313h\274\71\226c\71\226\16\7\65" "\307r,\307r,\307r,\5SC\31\313h\374H\16\214\203\216\345X:\34\324\34\313\261\34\313\261" "\34K\1SG\31\313h\374@\16(\341\26gq\226\15\7\255\234\305Y\32\246a\65\3SH\31\313" "h|\71\226c\303\220U\303\34\13\207\203\234c\71\226c\71\26\2SJ\31\313h\274\71\20U\223(" "M\212\303\71\307\322\341\240\346X\216\345X\12SQ\35\314h\234\71\64\14b\224\205\303 FY\70\14" "j\224\3Y:<\347`\16\246\0SR\30\313h\274\71\26\17\307,\316\322\244\255e\70\250\71\226c" "\71\226\2SS\33\313h\274\71\66\310\71p\10\323p\30\302\64\34\206\34H\207\203\232c)\0ST" "\37\313h<a\32\15S\30%C\324V*iQ\226\15\207\244)\351\224$R\22%\321$SW\36" "\313h\274\351pPs,\36NI\226D\225\250\62(QVJ\6%\312JY\244\0SX\34\313h" "\134\265\60J\302a\10\243\342\60\204Qq\30r \35\16j\216\345X\12SZ \313h<aT\31" "\6%L\223aH\206\250e\30\242$*\15\207$\316\242\254)K%\0S`\32\311j|\71\222#" "\71\62l\71\222#\351\60Di\224Fi\64\14\21\0Sp\32\312i|\361\64\214\231\230\15J&f" "b&f\203\222(a\16\345P\10Sq\33\313h\234\71\64\210Z\16\345\300S\216%\203\230d\245\254" "\24)Z\232\16\3Ss\42\273h<\203\62$Y\22%\203\22%Y\22%Y\22%\203\22%\265(" "\211\242KMKr,\3St\36\313h\134\71\26\16\207$*F\305h\30\222\250\30U\242J\244L" "KMKr,\3Su!\313h\234\362\66$Y\22%R\22%-J-I\224,\211\222D\212\206" "$Z\243\70K\303\14Sx!\313h\134\71\66$CR\213\244,J\206!\312JI\262DI-J" "jS\262dc\216e\0S\204\34\273h\134\303)\307r,\31\304$\13\223,L\262\60I\304(M" "\242T\34\6S\230\36\273h<\303!\311\261d\30\242$j\31\206(\211Z\206!\12K\303\220\244\351" "p\10S\232\33\273h<\303!)f\311\260%a\226\14[\216%\303\226\206\303A\315!\21S\237\34" "\273h\134\303)\213\223aK\302,\31\266$\314\222a\12\223,\211*\265\252\10S\263!\313h\134\265" "\60J\262\341\220\244a\62\210Q\64$\303T\351\224\14I\226\224\224dH\242T\13S\273\31\313h\274" "\71\26\17\347\34K\207\203\232Cu K\243m\320r,\1S\302\35\313h\234I\16d\341\260\344@" ":\34\264HM\244lRjR\22i\71\42\317\0S\310\32\273h\134\303\220ci\230\206q\224\3Q" "\216\350\220\216D\251\30\351\200\0S\312\34\273h\134\303\20gq\224\3\321\230da\222\205Q\22\206b" "\250eR\22\251\1S\313\31\313h\234\71\26\17\7\61\307rhX\303\64\251fi\266EZ&\13S" "\314\34\274h\34\203\62\250-Y\324\22&Q\222\206\261\226FI\61\213\262b\222\305\1S\315\32\272h" "\134\303 \345P\16\15C\226fI\24&Q\226\211\231\26I\231*S\316\35\313h\234\71\20\15S\61" "\212\264(\322\242J-JjQq\210\62))ki\1S\324\34\313h\134\71\26\15\332\230EYK" "\64(\305\252V\351\224tJ\242,R\322\0S\326\37\274h\34w J\6\251\32\15I\26\265dC" "\224dQ\26\16\221&%Q,\246q\0S\327\35\313h\374\300\64LY\224\205Q\22\15\357\220\62L" "Y\35HrH\7\244PU\0S\331 \314h|\71\30\15Z\222F\225,\32\266\244\224\24+\321\240" "\245\265\244\224DI[$\245\1S\343\25\252i\34\17:\242#:\242#:\242#:\62\274#\1S" "\344\32\313h\274\71\226c\351pPs,\307r\340\20\246a\32\246\341\60D\0S\345\35\313h|\71" "\226C\303)\7\222d\220\244,\312JY)\33\244\34\313\261\34Q\0S\353\36\313h\374H\64$Q" "K\324\22\265D-QK\324\22\15C\62D\231\224c\71\26\1S\354\30\271i\34oa\26Fi\22" "*\71\64\14Q\32\245Q\32\15C\2S\357\33\273h\34\17:\22\16J\230%a\226\204Y\22\16J" "\230\346X\216\345\220\4S\360\33\313h\274\71\226CYZ\313\206d\30s,\32\6-\316\342,\316\206" "A\1S\362\31\313h\274\71\26\17\247\254\224\225\206[\224#uH\207\222X\223t@S\363\34\313h" "\234\71\226c\361p\20s,\207rl\30\62\65J\322$J\303aH\0S\367\31\273h\134\303\20\246" "\341\60\344\360p\320rl\30\323\34\313\261\34\321\0S\370\33\272i\34\17\71\224\14C\222C\321 \325" "\242Z\24\15R\16\345P\16(\0T\4\34\313h\234\71\66\250a%\12\63\35\211\342\60\34\6E\11" "\223,L\303t\230\0T\10\34\313h\274\71\226CI\16d\351\60D:\240\303\303\20\246a\32\246\341" "\60D\0T\11\31\313h\274\71\226\16\7\65\307\342\341N\70\204i\230\206i\70\14\21\0T\14\33\272" "i\34\17:\242#\312\260\350\210\62,J\230(a\242\14\213\216\350\200\0T\15\32\313h\274\71\226C" "\203\32V\242\60\323\241\34\32\206h\235\322\60\15\207!T\16\33\313h\374\300\66\310\71\226c\303)\307" "r,\31\246bTL\262\60\35\26\0T\17\33\313h\274\361pHs\340\240EY)\313\206ALr" "H\207\222X\223t@T\20\31\273x\374@\216eCV\312J\303)+e\245,\33\262\34\213\207A" "T\21\32\312i\234\71\222#\71\360\240#:\42\15\221T\222J\322\20\351\210\16\10T\33\33\273h<" "\303 g\321p\20\263\70\313\206A\315\241a\310\222\60*\246\303\4T\37\34\313h\334\71\246MI\226" "D-\311\260$\262\222#\225a\251Fk\16\345P\10T&\32\273h<\303!\325\21\243\222%Z\230" "\346\300A\213\263\70\213\263aP\0T+\35\313h\274\71\224\344@\226&K\244\3\312\60\350H\16\345" "\300!L\303\64\34\206\10T\70\36\274h\234\303\64D\275dQe\211jI\24II\224\64\15I\224" "#\221\34\25\23\61T\71\35\313h\334\71\26\16\321\60%\241\224t\222\262(+e\331\20%\71R\7" "\262P\15TH\30\273h\134\303\20\246a\32\16CNx\316\201C\16\344X:\34\4TI\35\313h" "|\303\226\204Y\22f\311\260\345\330\60hq\216E\303A\213\342P\322\201\4TJ\34\313h\274\71\20" "\345@\224\3\7-\212\263t\70\350\360\60\204i\230\206\303\20\1Th\33\272h<\303%\253$\203R" "\253\14\227\34H\222AiK*\203\242#: Ts\35\313h\334\71\26.\303R\13\223,L\206C" "\222\205I\264%\235\206(\222s,\4T|\34\313h\374\210\70h[\224$R\245\247\244\61\31\16I" "\26n\71\226c\71$\2T}\37\313h\274\71\224\344@\226\16J\244\3\312\220\14Q%j\211Z\242" "hHv$\307B\0T\214\36\313h\234\362\216E\203\26e\303\240\225\262h\311\42EKJYR\312" "\244h\320r\0T\262\36\313h\234Y\16D\321\224dI\62,\265\60\311\302d\70$Y\270\351H\24" "\207\231\34T\300\33\313h\274\351p\320\341a\10\323\60\15\207!\16\63%\212\224(\7\26m\25T\301" "\32\273h\134\303\32\246a\32\246\303N\30\224aK\62-\311\264$\33\226AT\341\32\312i\134\303X" "\34\266a\220\342h\30\244\70\32\6)\216\206A\223\314\2T\362\37\313h\134\261\24\15\321\220\344@\64" "LJ\24M\305$\313\324p\30\302\64L\303a\210\0U\6 \313h\374@\16U\206\213T\211Z\22" ")\211\206H\11\243hH\242DJ\6I\7\24Q\15U\7\36\273h<\303!\311\261d\30\224(\211" "\232\264()E\233\64\14Z\234\305\331\60(\0U\20!\313h\334\351pH\302\64\31\206(\214\242\341" "\220\204Qe\30\242\34K\206!\211\322p\30\22\0U/\42\313h\274Q\264DY\222\14\203\62eI" ")K\222ai\312\222R\226$\303\262D\71\20\345\300!U\61\35\273h\274\203\62eIiPJY" "R\32\224:R\31\16I\32\16C\230\206\303\20UF\34\314h\274\361\360\26\346@\224\16\207\250\227," "\212\224a\210\372\247!\252\3\12\0UO \313h\34\203\62lI\66,\303\226d\303\62\354\220\64H" "R\26IY$\15\222\16\351\210\0US\36\313h\34\203\222c\203\62$QI)\15Y\65\211\62;" ":\14a\32\246\341\60D\0U\204\32\313h|\305\341\234\3\207\34\210\207[T\32\16:<\14a\32" "\16C\4U\232\33\314h\334\71\70DS-I\206!\351\377\213\264\64U\206\347$G\62Q\16U\234" "\33\313h\274\351pP\343\341\226\206\303\220f\331p\320\341a\10\323p\30\42\0U\235 \313h\234\303" "\262\204IeX\32\223\312\260\224\322$\32.Qm\310\242$K\322!\311\21\5U\252\34\313h\274\351" "pP\343%\231\222NK\62\247\303AJ\302,J\304L\33\64\5U\253\37\313h\274\351\360\22U\224" "AI\224(\211\224AJ*\203\224d\341pP\223\34\310BUU\266\34\313h\134I\226&\265\341\35" "R\206\251\230\16;\220\3\7-\316\342l\30$\0U\343\32\273h\34\337\322aYrlX\26\245\213" "\322eX*JeQ\252JQV\6\37\314h\274Q<\14\312TK\222aH\232*\225aH\212\225" "d\30\222\261\66\14\261\242\32V\61\35\274h\234\303A\211\225d\270\324\226\226A\351/\303AQ\332\222" "d\311\222\245T\33Vh \273h<C\62D\225(\32\222!N\207\203\230\304\232\64(\203\22%Q" "K\24\15\311\220\0Vt\35\313h\334\71pH\226\246d\70$QK\62,\215IeX\32\223\303\234" "\205j\0V\207%\314h\274Y\64eQ\222\134JY\224\14\7%JJI\242$Je\30\222!\31" "\24)\351Ti\225\42\0V\332\31\272i\34\17Z\250\205Z\250\205R\222II\246d\321\232\350\310p" "\20V\333\26\233\210\34\337\222LK\62-\311\244\322\22\16;\242C\303\3V\336\27\252y\34\17:\242" "#\322\20I%\251$\15\221\216\350\310p\20V\340\31\272i\34\17Z\250\205\303E\13\265PJ\62%" "\213\326DG\206\203\0V\343\27\272i\34\17j\244F\303k\244d\221TR#Q\322\221\341 V\360" "\27\272i\34\17Z\250\205\303E\13%Q\332\224\246\251\242\205\303AV\362\27\272i\34\17RI*\15" "O%\251\64<\225\244\222\22\17\7\1V\363\34\272i\34\17Z\224(Q\222H%\65\32\242L\332\264" "$\222\262d\210\207\203\0V\372\31\272i\34\17Z\250\205\303[\250\14\213\22&J\230(\303\242#\303" "AV\375\31\272i\34\17:\62\134\264P\13\225A\322\222H\213\222\341\242#\303AW\17\35\273h\34" "\237\222\222\62\14\211\30\16\17\321 \15Y\62DC&e\221\66D\303\3W\22\33\272i\34\17Z\250" "\14\213\26\16/a\242\14\213\264$CR\322\242d\70\10W\37\26\273x\274\71\226c\71\26\17\347\34" "\313\261\34\313\261t\70\10W'\27\273h\134\303)\307\312Y<\14Z\71\213\263\64L\223\341\216\1W" "(\31\313h\274\71\226\16\7\61G\244\70K\207K-\316\342,\36N\71\2W\60 \313h\374@\32" "%i\224dC\222l\321\222\15I-JjQRS\22I\313\261\60\36\4WB\34\273h\134\321\60" "\325\201(\35\222A\213\244,\222\262(\251m\221\24\251QU\14WG\35\313h\134Y\234\305\321pH" "\302(I#E\213\322$\62U\304\35\311\261\34Q\0WJ\34\313h\134Y\234\305\311\60DY\70(" "q\66d\245\254\224)Y\242U\303\232\4WQ\35\313h\374@\32\246\311\60D\71\62\34\243bT\214" "\212J\24iQ\22fI\26\16Wj \313h\134\71\226\14C\24&Y\22%\311\220$b\246&\303" "\20\205\351\224\251\71\226c\31\0W\202\31\313h\374\200\70\350P<\334\242\322p\220\32\243\332p\316\261" "t\70\10W\213\35\313h\374X\62\14Q%j\211\242\341T\211*Q*f\322\60\344@\216\245\303A" "W\243\34\313h\234\303\20\345X\64hQ\226\14[i\320\242\254\242e\312\240\354,\303 W\313!\314" "h\134\71\230\14C\226D\265d\30\222A\252%Q-\31\206,\214\225aQs\60G\206AW\316#" "\314h\374\210\230&Y\62\14Y\222e\203\226d\311RK*\342\22ER\22\245J\242D\225H\11\13" "W\337\36\313h\374\200\226&Q\62\14J\232\15K\224tJzJ&[\22\231\222HK\344,W\367" "\42\313h\134Y\234\205\303\61K\242A\251%Q\222%\211\22\15\312\230%\321\220DI\324\22%\241\0" "W\371\36\313h\134a\32\246\311\60D\265d\210\222p\70\345X\64hJ\226h\345,\36\24\0W\372" "\32\313h|\305\341\230\305\203\234\305\203\234e\303AjR\6E\215\207\13\0X\0!\313h\134\71\226" "\14C\224\244\303S\222\205I\247\244\323\62\14J\226&Q\222%Q\22E\303\0X\2\30\313h\134\255" "Imx\207\244A\312\312Y<\350H<\234\323\341 X\5\37\273h\34\203\62,\71p\211\222,J" "\222A\213\222\60I\206!Ks\340\220\3\351p\20X\25\34\313h\334\341\360\22\245\332\240T\264$Q" "\6e\312\222\60R\302x\70\247\303AX$!\314h\134\321 FY\30\15\322\220da\64\210\71\230" "\14C\246\205K\64\244Q\16$s:\4X*\35\313h\274Ye\30\242ZiP\206$+\15Z\224" "e\303)i\222\26\65\7\207\1X\61\42\314h\134\71\64(\203\326\62\14Q\26%\203&e\311\60$" "\265\212\64(Q\230%b&e\305\0X\64#\314h\134\71\30\15b\224\205\321 \15I\26&\303 " "\325\221d\30\62)\251HJ\224\3Y*I\0X@!\313h<\321\60$Q\232D\303C\26Uj" "\321\60$\211RS\232\244a\310\242$\214\312Y\4XA\32\273h<\303)+\15\247\254\64\134t@" "\322$-\223\206!\7\322\341 XJ\37\313h\134a\232\305\311\260\14R\222%\303\226DI\226\14[" "\246d\313-\31\302\250$\16XQ\36\313h<Y\16$\321pH\242,\33\222N\311\240\14Y)\221" "\254\71p\220\343\341\20XT\35\313h\134\215\303\251i\210\324\250\230\204\231\62$Q\216\15\203\42\205i" "\230\16\13\0XW\34\313h<i-\211\62K\66\350H\232\14C\222%m\211\224\306\303\71\35\16\2" "XZ \314h\134\71\230\14C\226\244Y\64,C$'\226\254\42&V)\221\264(\321\264\34\22\1" "Xi \314h\134u$\32\266$\7\206d\20\243,\214\6\61\307\206C\42%\255Ik\322\66\34\2" "X~\36\313h\134a\66,a\64,\203\224\204\221\222\14R\22F\211\246\204i<\234\323\341 X\203" "\36\313h<a\232\14CTk\311\206\203\22e\245A\213\262l\30$-\311\201\250$\16X\223\33\313" "h|\265\341\240U\207!L\303a\10\323h\70Hm\311\240\24+\303\5X\227\36\313h\274YK\230" "\14C\224D\321\360\224D-\303\20\325\62eP\264r\26\17\12\0X\234\42\313h\34C\222%Q%" "J\222\341\220\205\321\220(Q\244\15I\42eQ\62\252\303\240\3\351p\20X\250\34\313h\134\303\20F" "\305a\10\243\332pN\207\203R\252DI)\31\316\351p\20X\263\33\313h\334\225aK\232\206\203\324" "\230\14[\22f\311\260\215\211\64\314Y\250\6X\276\36\313h\234\311\220\14QK\62(\203\22e\322\220" "\270dI\223\222,j<\234\323\341 X\301\42\314h<C\26F\311 \15Q\222\205\303\62da\224" "\14J\262\345H\24\16w \7\343\341\240\0X\307\37\313h<a:\34\222j\62$K\224tJ\206" "!\312\261d\330\224,\222\6\71\13\207\3X\312\42\314h\374@\234\14C\26\306\311\60$\203\322\226\14" "C\26\306\303!J\224\222RJ\243%\26\23\0X\314 \313h\134a\232\14C\324\64(\211&%\245" "d\30\242,\11\207\203\244D\221\22\311K\70\6X\353\27\273x\274\71\226c\71\226\16\7\65\307r," "\307r,\36.\0X\356\34\313h\134a\32\246a\226\204\341p\210\302\64\14\305,\11\323\60M\206-" "G\0X\360\32\313h\334\351p\210\343a\320\11\7-\312\262a\320r(\307r(\307\0X\361\31\313" "h\274\71p\310\201t\70\350\340\360\24Kq\66\310\71\226\246\303\2X\362\32\313h\274\351pPs\340" "\220\303\303;$\325J\71\20eQ\226\255C\0Y\11\35\313h\274\351p\20\243\64\211\304$J\242$" "\262\245\331\260)Q\216\350\200$\315\2Y\17\33\273h\34\17b\216\14C\230\206\303\20\246\341\60\244\203" "\270\345\300\70dC\0Y\25\30\311i\234\71\222\3\267\60J\223DJ\302$\7r \7bU\7Y" "\26\34\313h\134a\32\246C\222FI\230%\241\224H\221\224\244Q\255\234\245a\65\3Y\32\30\312i" "\234\71\64\244Y\246\324\1%\224\206\255\66E\232\16\310\352\16Y\34\33\313h\274\71\226\16\7-\312\201" "h\310J\221\224\364\243\226fj\42\205\252\0Y\42\33\313h|Q\70\34\264(\35N\225(\32\356\350" "\360\66D\321\224#\352\20\3Y'\31\313h\274\71\226c\71\226\16\7\65\207\222\34\251\3Y\234\245%" "\35\20Y)\30\273h<\303\71\307r,\35\16j\16%\71R\7\262\264\244\3\2Y*\33\313h\274" "\71\226c\361pHs,\207\222\34\251\3Y\254\205Q\226\350H\0Y+\31\313h\274\71\226c\361p" "\316\261t\70\210I\216\324\201,-\351\200\0Y.\32\313h\274\71\226\3\207\60*F\305\250\64\34D" "\35Jr KK: Y\61\33\313h\274\71\20\345@\224\3\207\254\234\245\303A\315\241$\7\262\264" "\244\3\2YG\34\313h\274\361pMr \13\325h\70\350H\70(a\226\204\203\222c\71$\1Y" "I\32\313h\274\361p\316\201C\234\204\303AjR\6E\315\201C\16\344X\12YO\32\313h\274\361" "p\316\201\203\232\204\303A\12%e\210\324x\70*\242\252\0YQ\36\313h|\71\62$\203VJ\6" "%\312J\231\222\15Q$\247\303ALbM\322\1\1YT\31\313h\274\351p\320\252QI\31\24\65" "G\232\263l\70h\325\260\232\1Ye\34\313h\234\71\224#\303)\351\24M\321pJ:I\221\62\34" "\304$\326$\35\20Yh\36\313h|\351\224\14\331R\312\42%\33\16J)\215\222\64\223\206\203\230\304" "\232\244\3\2Yj\34\313h\234\361p\320\222\352\60DS&\15k\224\3\207\34\312\206\203V\207\64\0" "Yn\33\313h\274\351p\320\222\342\60\210Q\66\34\304(\36NYi\70e\245\341\2Ys\32\313h" "\274\71\226c\351p\20\243\34\210\342,\316\322d\207t@\222f\1Yt \313h<\71\226\15R\16" "$\303\26%\265(\211\222,\211\222\250\226\15\231\230\264\265di\0Y}\36\313h\134\71\26\15Z\234" "\14Z%\13\223,L\206S\226\15Y\232Da\232\245\32\0Y\202 \313h\134\71\226c\331\360\26%" "\265(\251%Q\222%Q\222\15R\226)Y\224\15J\16\1Y\203\35\313h\134\71\226\15Y\234\14b" "T\214*CT\11\243\342\20\305I-\11\63y\10Y\204\31\313h\274\71\226\16\7)\307rp\30\322" "x\70h\325)\7\326m\1Y\212 \314h\134\251\230\14q\30\16Y\232di\62\134ja\224\205C" "\26'Q\32\15C\222\203\0Y\231\37\313h\134a\32\246QR\31\226R\322\224tJ\22)\231\42%" "\31\302J\24fb$\3Y\245\33\313h\374\300\64L\215YT\214\222\34\210\207\203V\316R)G\206" "pT\0Y\250 \313h\134Y\234\305\311p\220\322$J\223h\210\222\250\22\265\14Q-\321\242\254\222" "E\22\0Y\271\36\313h<i\230\206\331\240\14Y\230da\62\14J\255\24\35\222\266$\252\244Y\234" "\1Y\273\33\313h\274\351pPs\340\220\3Q\64\34\324(\32\16ZU\313\201u\223\0Y\311\35\313" "h<i\230\206\321p\320\302$\31\244\244S\322S\322\62$m\211-\315\342\14Y\313\42\313h<a" "\32\246I\224DC\222EIIJ\6))K\311\240\14IV\321\242\254\22\16\12\0Y\323 \313h" "<i\230%a\322\66$\303\322\61\221\302$+%\203\62di\22\205i\226\15C\0Y\324\33\313h" "\374\200\70\350P:\34\304YI$)T\206c\226\16:b[\23\0Y\353\37\313h<\71\226\15K" "S\64$Q\226$\303\322\230\64J\311pH\242\60\221\262Rq\30Y\373 \313h<\71\226\15K\247" "aH\242\244\62,\235\222NR\222(\203R\221\222I\311\214\303\0Y\377\33\313h\274q\66L\225(" "\214\222\254\22\331\324t\70\210Y*\345\310\272)\0Z\1\42\314h\374@\222\245Q\64\34\224\64\35\224" "\250\322\24\15C\222%%-)U\232\24-\212\26c\0Z\30\42\313h\134Y\234\305\321\240\14[\224" "$\203\224\324\242$\31\224()\15J[\42e\231\224Dj\0Z !\313h<\331\260dqR\71" "$q\222\14K\307\244bJ\22eP\332\222(\211J\212\224h\1Z/!\313h<\341\20U\242\212" "\22%\203\62D\211\16$\303\20%i\22\245\311p\220\222\266\226,\15ZF\34\313h<b\16<\265" "\15C\226\224\22)R\23ix\310\252R\216\14\331\20\16ZZ\42\313h<\361\222\15YR\212\206d" "X\232\262$\221\224d\224\222A\31\222\254\62LY%\34\24\0Zf#\314h\134\321 \306a\66D" "C\232%\311\60$\335\222\312\60HI)\31\222R\226(\211\224\206q\10Z\177#\313h<\321\60$" "i\230T\16I\61Q\6\245\62HI-\211\222A\31\222\254\62LY%\214\24\0Z\222 \313h<" "Y)\32\206\244-\31\222AJjQ\222\14R\222\225\206\203\66FI\251I\316\0Z\301\42\313h<" "i\30\15C\222\250\203\62HI\26&\203\224\224\22%Z\244!J\264DJ\312Q\252\1Z\314!\313" "h<QV\31\6%K\262\341\20%\235\222aP\372\64\14\311\220T\23[\322\62&\31\0Z\341!" "\313h<i\30\15C\222U\206(\311\222aP\22\251\222\14')\32\226%JzJ\26-\24[\42" "!\313h<i\30\15CRJ\242a\213\222(i\31\206(\211\222(\32^\332\22)\313\226\232\30[" "P\30\273h\134\303\220C\71\224C\71\226\16\7\65\307r,\307rH\5[T\32\313h\334\341\240\344" "H\35\210\342,^\302-\316\342,\316\342\254\42\16\1[W\30\313h\274\71\226\16\357\220\64Hq\16" "\245\303A\315\261\34\313!\25[X\31\313h\234\71\26\17\7\61\207\222A\354\250\14\203\22\246a\32\246" "\231\6[]\33\313h\274\71V\33\206\34H\262\341\240\346\310\60m\342pHs,\207T\0[c\31" "\313h\334\333\240c\351p\20g%\221\224A\221\323\341\234c\71\244\2[d$\314h\374\220\62$\203" "\232\64FI\61J\212QRT\232\246\244\30%\305(\211\262(I$%\31\222\0[f\32\313h\134" "\265\60J\242\341\35\222\6)\316\241x\70\244\71\226c\71\244\2[k\36\313h\374P\62$C\232\245" "\221\224\205\246\312A\211\302\250\245\26%Q%\252\210\31\0[\205\30\313h\274\351\360\16\311Q\270\16\71" "\226c\303;\226ca<(\0[\207\30\313h\274\351\360\16)\303\220\244\71\26\17\347\34\313\261\34\313" "!\25[\210\31\313h\274\351\360\16\311Q\16\204\303\35\211\263\34\210r,\307rH\3[\211\31\313h" "\274\351\360\226ji\30\17\7\255\234\245C\222#: ir\2[\214\32\313h\274\351\360\16I\203\224" "\263\14\7\61\311\221:\20eQ\226\255C\0[\227\30\313h\274\351\360\16I\203\224\263\14\7\65I\243" "b\224EYU\5[\230\30\313h\274\351\360\16I\203\224\225\263x\220slX\303\64L\207\11[\231" "\31\273x\274\351\360\30\212\245a\10\243bT\34\206\60*F\305a\210\0[\232\33\313h\274\351\360\16" "\351P\64\14\71\220c\71\20\15a\224\3J\34\251\351 [\234\31\313h\274\351\360\16I\203\224\225\263" "x\220\263x\220\263\70\313\206\203\0[\235\33\313h\274\351\360\16\351P\64\14\71\220c\71pGr," "\312\201,\31\16\2[\237\32\313h\274\351\360\30\212\245a\310\201\34\70\344@:\34\304$\326$\35\20" "[\242\31\313h\274\351\360\226jC\224\25\225:$O\226a\320\302\64L\207\11[\243\33\313h\274\351" "\360\16)\303\220\344\360\60\204i\70\14a\32\16C\16\17\7\1[\244\32\313h\274\351\360\16)\303\220" "\204I\16d\332\60\305\361p\316\261t\70\10[\256\33\313h\274\351\360\16I\203\224\225\263x\320\201\34" "\31\206\60\15\323p\30\42\0[\260\30\313h\274\351\360X\31\216Y\16$\341pP\343\341\234c\71\226" "\2[\263\32\313h\274\351\360\30*\303\220\244\71p\310\201x\270\23\16a\32\16C\4[\264\33\313h" "\274\351\360\64HR\26e\203\234\305\203\16\304\303A\322r`\335$\0[\265\34\313h\274\351\360\30*" "Q%K\252\303\20\246\341\60\204i\70\14a\32\206\22\0[\266\34\313h\274\351\360\16)\303\220\204\71" "\224\64)\211\22&J\246\264F%\255\250\2[\271\32\313h\274\351\360T\223\262\250[\224T\263\264\64" "\34\244\64L\303a\210\0[\277\34\313h\274\351\360\16I\303\240U\243A\222\262\244\224\225\6-\312J" "YiP\0[\302\37\313h\274\351\360\222\3J\16D\313\220\305\311\60$a\226D\211V)II\26" "eQ\30[\304\34\313h\274\351\360X\31\6\71\211\265l\70\350H\70(a\226\204\203\222C\22\0[" "\306\35\313h\274\351\360\226\212I\224\324\222(\211\62)\211\222l\30\243\70+e\245\341\2[\314\31\313" "h\274\351\360\16%\303-\15\207!'<e\245\341\224\225\206\13\0[\322\34\313h\274\351\360T\33\16" "I\26\245\303\240F\341p\310\222(\314\242\222\250\212\0[\333\34\313h\274\351\360\224E\311p\314\322a" "\10\323p\30\302\64\34\206T\311\206p\10[\335\34\313h\274\351\360\222\14J\224&J\62hj\70\134" "f%\31\266\250\230\251C\64[\337\35\313h\274\351\360\16)\7%J\242$\321\304dH\22\35I\206" "CT\221\264\252\12[\341 \314h\274\361pP\262\64\211\6)\314r`\320\201,\34\16Z\222I\312" "\260\210Y*\211\0[\347\31\313h\274\351\360&*}\33tx\70U\242d\70\250\71\226C*\0[" "\351\34\313h\274\351\360\70EC\224&\265\341 \316\303\20M\321a\10\243\342\60D\0[\356\36\313h" "\274\351\360\30*\303\220\204k\222%\331\60DJ\226h\203\234$\232\224\245*\0[\370\32\313h\374@" "\216\345X\66\34t \307\322\60\316\342,\307r,\207\64\0[\372\32\313h\274\361p\316\261t\70\350" "@\70\34\262:\20\345@\224c\71\244\1[\376\35\314h\134q\30\207q\64<\326\242$\12\223(I" "\263$-&a\326\224\3\22\0[\377\32\313h\274\361p\316\201C\16\244\303A\314\242\341\240\205\225\254" ")\207$\0\134\1\35\313h|i\230F\203\26&\303\226&\303\20\205Y\22\15Z\230\206i\270%\253" "\2\134\2\33\313h\274\351pPs\340\20F\305a\10\243\322p\220\302\70\313\261\34\322\0\134\4 \313" "h\134q\64\204Q\61\32\16I\24FC\22\225\224\312 %\241\230%a\42\205\241\246\0\134\6\35\313" "h\134\251\226\14Y\322\24II-J\304\64\34.j\224\324\302\250\230\206\241\4\134\11\37\313h\374P" "\64hQV\32\16I\16D\203RJ\223hPJ\305\244S\322)\324\24\0\134\12\35\313h|\305\341" "\20&\361\60hI)\223\206l\30t$\33\16Z\35\210rH\3\134\13\36\313h\134\303\220c\341\60" "\344X\64\34\244,\33\226A\7\262\341\240\325\201(\207\64\0\134\16\36\313h<Y\24&\303\16\204\323" "\240EYi\220\222-\311\206!\7\262\341\240\325!\15\134\17\31\313h\274\71\226c\71\226\244Q\61\312" "\242\254\224\205b\65\307rH\5\134\21\33\313h\274\71\226cI\32\25\243\254\24&Y\224hR\16\345" "P\216\350\200\16\134\32\32\313h\274q\326\224\225J\303;$\15\222\224ER\26I\203\244C:\42\134" "\61\37\313h\134a\66,u$J\206C\22\25\243\342\220\250\231\250$Z\22%Q%\252\250\3\134:" "\31\273h|\303\20\246a\32\246\341\60\204I\216\324\201,\16\313Q\216\10\134<\34\273h\134\303\240\305" "Y\234\15\203\226\344HMK\206\64\311\201(M\242T\34\6\134=\33\313h\134\303\20\246a\32\16C" "X\15\323D\312B%\312\21i\7u\60\2\134>\32\273h\134\303\240\305\331\60h\331\230\314\331\220\15" "r\66(\303\32f\362\20\134\77\36\273h<\303)\7\242\34\210\206S\30ECR\213\22\61J\264\250" "\22%Y\244\212\0\134@\35\273h\134\303\240\305\331\60h\71\66\234r J\206(\211Z\242\222\66D" "\71\242\0\134E\34\273h\134\303\240\305\331\60h\345\341\224\305Y\232\14C\224\244I\224\206\303\220\0\134" "H\34\273h<\303!\311\221d\70$a\232D-Q\313\60Da\252eJV\32\16\134J\34\273h" "\134\303)\7\242\341\224\305\303I\312\42)K\222aPJ\231T\313\206A\134K\36\313h\134\303\240\305" "\331\60h\71\66\234*i\222i\303\224\204i\62\14I\232\16\207\0\134U\32\273h<\303)\7\242\341" "\324\230\14C\324\70\234*\231\26%\265%T\5\134^\35\313h\134\303\240\305\331pJ\6q)&\203" "\230\305\303EK*\322\60$k\24\13\134d!\313h<\303!\311\221d\70$\245\226a\210\222\250e" "\30\242h\320\242,\312\6)+\17\22\0\134e \273h<\303)\7\242\341\224D\251\222\14JE\212" "\206d\210\222lJ\22\251\222I\321\20\11\134o\31\313h\274\71\226\34\206\34\212\263RV\312J\303)" "\313\261\60\15\343A\134q\30\311i\234\71\222#\71\222#a\226i\231\226i\231\226\15\7\35\10\134\220" "\37\313h\374@\32\246\311\60(\245,)eI\62\14JS\322)i\222\6-G\224T\14\134\251\34" "\313h\274qV\312J\303\35\35\16Z\216\345\320\60HI\232Di\70\14\11\0\134\254!\313h\134\71" "\226\14C\224D\221\222\14\203R\212\224R\244$\303\240\224\262A\312\342\34\313\261\14\134\263\32\313h\374" "\200\70\310\71\66\14Z\230\206\331pP\343\254\224\225\262\322p\1\134\270\33\313h<Y)+\15wx" "\70$\71\226\14C\24\246\303!\11\253\71\26\2\134\340\37\313h\134a\32fIii\312\222d\30\224" "r\222\14\203R\312\6i\211\243\34\310\261\14\134\341 \313h\374@\32\246\311\60Da\244$J/S" "\222\14\203R\312\222R\66(u \13\325\0\134\360#\314h\134Y\16dC\224DY\224T\266\244[" "\222(\245\244\24-\311\60\15R\216\14C\216\344`\10\134\366\33\312i|\71p\310\322l\30\262\64\33" ".\71\64\334R\251\64\14R\16(\0]\7\32\313h<Yi\70\247\303;\24\15C\16\17\7\65\7" "\242D\322\62Q\5]\16!\313h\134a\232\14C\24fI\247$\321\222\312\60(\305\244\62$\311\260" "\64.\71\226C\12\0])\35\313h\274qV\32\356\360\20\15I\324\62DC\22\265\14\321\220D-" "Q\311\22\11]\335\33\313h\134\71\20e\245\254\224\225\262RV\312JY)\253\204Y\222#:\24]" "\336\37\313h|q\26e\245\254\224%\211)\251(\211\224(\265(+eQV\312\201$G\2]\341" "$\314h\274ITK\242,J\242\64\211\342$\212\206$J\223R\230\324JI\224EIT\321\201p" "\30\2]\343\32\313h\134I\226&\305\341\224\225\206SV\32\316\351p\320\6m\212\326\24]\345\24\233" "x<\303\71\307r,\307r,\307r,\35\16\2]\346\30\313h\234\71\226c\361p\20s,\207r" "l\30\262jX\215\207\3]\347\30\273h\234\303K\234\305Y\234\15R\61\312\201h\335\221\34\313\21\5" "]\350\31\272i\34\17:\224C\303%\7\222\34H\206K\16\345P\16\15\207\0]\356\32\313h|u" " I\207s\16\34r \35\16R\216\15\203\24V\343\341\0]\361\31\271i\34\7\35\311\221\34I\206" "A\311\221\34\311\1\35\320\201d\30\4]\373\33\313h\274\71\20U\223\342pM\302\341\240U\207!R" "\23m\220\323tX\0^\2\32\313h\274\71\226\16\7\65\7\16Z\224\225\262RV\312J\211\16\344X" "\12^\3\33\313h\274\71\226\16\7\61\311\221:p\310\244\226\250\22\65F\305hGB\0^\6\42\314" "h\134\71\230\15\321\240D\225\246JS\245\242DI\213\224\64U\226(\214\262$\252%Q\222\12^\14" "\34\313h|Z\16\214C\26\307\303A\213\342a\220\222\250\22\65Fk\224c!\0^\35\31\313h\274" "\351p\220\322Z\66<V\206SV\312JY\242\3\71\226\2^%\42\313h\134a\32fC\62\14Q" "R\32\224\222\230D\203R\222\222\222\224$K\224\324\206,\307\62\0^+ \313h<\71\226\15\207\254" "\224eC\62\14a\22\15JIJJRR\222\222\312\260\345X\6^-\37\313h\334\351pH\242," "\33\16I\224\225\6-L\223a\210\222\250\22\265D\321\216\204\0^/\32\313h\134M\303Aj\34\206" "\34\36\36Ce\30\222\250\61*F;\222\2^\60!\313h\134\311 \246Q\222\14R\222F\311pH" "\244LI\206!JJYRjI\244\260\32\2^\63#\314h\134\331\240U\7e\210\222\326\244\62D" "Ik\222\14C\322\42%\311\222\210Y\222fJ\30i\2^\70\33\313h\134\255Imx\32$)\213" "\262AGr\340\240EY)+\325\201\24^= \313h\134\71\226\14\257J\62\14JUI\206AI" "\264\244\62,\311\220\225\6-\312J\203\2^E\42\313h\134\321\60\345\310\240\14I\247\244eH\232\223" "d\30\224D\211\224\341\220DI\324\22\225\206\1^U\34\313h|\265\341\240U\207!\34\206\60\215\206" "\203\324\66\134J\225\250\242\3)\0^c\35\313h\34I\353\64<%MIe\213\222\212R,\15\203" "\26e\245\254\224\350@\12^r\27\273h<\303\71\307r,\35\16j\216\345X\216\345X\216\245\0^" "s\30\273h<\303\71\12\243jRN\322\341\240\346X\216\345X\216\245\0^t\33\313h|\71\226c" "\303\220U\303\322\60\204Q\16D\351p\210s,\307B\0^x\27\313h\274\71\26\17\347t\70Hi" "-\33\16j<\234s,\5^y\34\314h\134i\66hi\230D\203\222%\331\260\14[\267\341\240\245" "\331\240\245\335\0^{\35\273h\134\321\60\345@\222#S\32%i\26G\71\20%i\22\245\203\22\246" "\221\2^|\34\313h|\345,\15\263$\31\206$\352\22\325J\225\250K\24\15\332\246\245\221\2^}" "\37\313h\274\305PJ\242DJ\242D\211\222\350EILI\224\14\311\220\214\341\360\220C\1^~\36" "\313h\134mI\237\224,\351\62$\311\230d\311p\220j-Y\222EI\246$\312(^\201\30\313h" "\334\361p\312\261\34\33Na\32\246a\65L\263\70\207\64\0^\203\30\313h\334\361p\312\261r\26g" "q\26G\265\246\312\242\14a\216\5^\212\34\313h\334\71\226\16\207$\307\302\64\31\6%L\263\61J" "jIT\251\225C\0^\217\34\313h\334\351pHr,\31\206(\316\262q\70$aTL\242\64L" "sH\4^\225 \313h\274\361pHR-\31\322$J\223(M\206!J\262\60\311\302AJtD" "\31\206(^\227\35\313h\334\71\26\17\247,\316\342l\220\262\70K\223a\210\222\64\211\322p\30\22\0" "^\234\37\313h\274\361pH\242\254\224U\222a)fK\224%Q\222%Q\222%aTL\63\11^" "\246\34\313h\274\361pH\242\342pH\242b\64\204\71\226\14[T\13\305L\321V\1^\247\37\313h" "\334\351pHr,\211\222,\211\222,Qj\322\22\205Y\222\14C\222\206i<\34^\253\35\313h\334" "\351pH\302t\70$\245\226a\210\222\250e\30\242\260\62\34\322\34\13\1^\255\36\313h\334\351pH" "rl\10\225(\331\222\60\33\16I\224eJVQ\206%R\323!^\266\34\313h\274\361pHr," "*\16\247\306\250\30\15a\216%=%%%J\242\0^\267 \313h\334\351pH\302\64\31\206(\214" "\242\341\220\204Qe\30\242$\252d\203\224H\221*\2^\270!\313h\334\351pH\302\64\31\206(\214" "\242\341\220\224Z\206!J\242\226a\210\222\250\22U\24\0^\303 \314h\334\361p\210\22%\312\224H" "L\302$\32n\225H\31n\225\64*FY\24\251\13\0^\311!\313h\334\351pH\262$L\206A" "\311\222\322pH\262\244\224\14C\24)R\245\247$J\223\14^\312\37\313h\274\361pH\242\34HN" "I\247d)%\25-YJ\211\24IIIZ\66I\3^\366\36\314h\374\220\62$C\234\305a\232" "%C\264\324\201\244\232\64GI<\234\42\71\35\6^\367\33\313h\374\210\62$s\226\206\325p\70d" "\305$K\303T\31\244HM\7\1^\372 \314h\374@\272\14j\226\204\311\60Di\222-\203\232\245" "I\62\210ee\230\42%L\207\1_\1\32\313h\234\71\226\344@\246\15S\230\305Y\234e\303A+" "giX\315\0_\12\36\313h\34I)\334\262A\31\226\246dX\244\244\224\224\224\254m\70h\345," "\15\63\0_\17\33\313h\334\71\226\344H\224\14\7\71\35v \312\201,\316\342\245\262\352X\2_\20" "\34\313h\334I\66$Q\16\204\303A\316\261tHr\60\7\224TLv@\307\2_\23\30\310j<" "\303\16\344@\62\14I\16\344\300A\7r \7\342p\2_\24\23\272i\34\257Y\232%\303%K\207" "C\330Oj\12_\25\27\311i\374\310\260\205Y\230\15\233\16\334\302,\314\302,\314\222\61_\37\33\313" "h|u I\207s\226\15\203\224\305\303!\15C\61R\302-\222S\0_&\37\313h\374@\66d" "\361\60h\265!KjI\224\14I\224FI\232\251Q-\31\224\35\11_'#\314h\374\220\62$C" "\234\264&MC\322\24&\245!iMZ\223D\11\245DK\242!Q\22)\11_\61\34\273h\34\203" "\62\210\351\260\14k\70(\203\230&Q\323\66H\211\24\246\221\250\0_\65\37\273h\34C\62\210I\216" "$\203\62$i\70(C\222#\303\240%\215I\24FKb\15_\67\35\313h\334\341\20%i\222\205" "\303[$\16\312\220\64&\203\230\64fQq\230\266\0_>\37\313h\234Q\64DI-\31\266$J" "\222\303\222EIr\330\302t\70\205i\230\251\31\0_S\31\311i\234iTK\242,)\15w$G" "\222a\320\221\34\31\16\71\22_b\37\313h\374H\64LYT\214*Q%J\206)\213\262RK\224" "&Q\30\325\242,\312\0_i\36\313h|Z\64\265DI\230HI\224D\265\64\32\246P\213\22%" "M\344\244\32\326\0_k \313h\374H\66HY\322\70(\245$\221\242A\312J\331\240D\211\61\31" "\264(\213jJ\6_p \313h|a\64\14IVI\223(I\206!\252E\331 e\225(\31\266" "j\62Li\226\1_q \313h<\203\224\225\262A\11\63)\32\264\260\64\14IV\211\222AL\332" "\222\250\22j\31\0_y\36\313h\134\321\20F\265\244\224HI\224DI(\15C&\265D\305L\315" "\324\250\70\12_| \313h\134a\32\226\206A)\265DI\24\15\213\24F\225Z\224\324\22)L\22" "%KD\1_\200\34\313h\134Y\34V\206A\251\225\262\64L\243A\22\263$L\303\64L\223a\10" "_\201 \313h\134\71\226\14C\222\206IVJ\252Q\62D\225PJ\262$J\322(I\243$\35\16" "_\204\36\313h\134\71\226\14S\222&Q\242\204\325,\311\24%Y\302\64\31\266\60\15\323\341\0_\205" "\34\313h\134Y\234\14S\22\205Qy\70\245\331pPjaTL\303\64\14%\0_\213\36\313h\134" "Y\234\14S\30%\311p\312\242\322\60\205\241\64La\232\14\203\22\246a\10_\214\37\313h\134Y\34" "\325\242Z\22)a\224E\311\260\214Y\222\15Y\62e\241\230)\331\20\12_\220\37\313h\134Y\234\211" "YT)f\303\220\24Ce\30\224\60\215\222Z\224D\225(K\62\21_\222\35\313h\134Y\234\245\321" "\260\324\342,M\206C\230FI\32%C\224$\252&\306\3_\223\34\313h\134\265\246b\22%\311\60" "Da\251\30E\303T\214\212Ic\22\211\352\0_\227\36\313h\134\71\226\14Z\224EI\62\210IV" "\31\16q\66\34\222(k\312\342,\225\0_\241!\313h<u\244\70D\303\242D\225h\30\222Z\224" ",\311\220tJ:%-\203\64HY\34\1_\251\37\313h\134u \32\226\266$\32\206,\312J\203" "\244\205I\66d\211\24fj\224\210\243\0_\252\42\313h\134\341\226\254Q-I\206!J\242\60\32\246" "HK\244aJjQ\222\14\222\224E\331\240\0_\256\42\314h\134\265\60\312*\235*\225i\30\222(" "N\22eX\242J\224EI\224EIS\222E\305\2_\263\42\313h\134a\232\14CR\13\223\341\322" "S\322)\31\206D\13\223(\251%J\24)\231\224\15\11\0_\264!\313h\134\225T)&\225A\32" "\224\254T\31\224DKJ\311\220d\245,[\242DJ\242\60\13_\271&\314h\134\255\203\22FI\62" "(\303\224\205QeH*J\224\224\222!\312\222\250\226\14I)\211\222R\222l\1_\303\33\313h\234" "\71\230\203\71RGr\244\230%i\22\245I\224j\345,\7\206\10_\305\36\313h\234\71\30\345@\224" "\206i\26&Y\22%Q\226\64J:\24\206b$\15\22\0_\314\36\274h\134\303\220\203\351\60\244\71" "\30\247\303\220\3\71\220D\265$\312\222(\214\302A\3_\315\33\273h<\303\71\13\223,\15\63%K" "T;\220\324\242$\213\244,\12\207\14_\327\32\313h\274\71\226\16\7\65\307\342\341N)'QK\224" "$R\230\204\203\4_\330\33\313h\274\71\226\16\7)\307rp\330\201\34\211\322$j\211\245\60\11\7" "\11_\331\37\313h\134a\32\246a\232\14C\262\304\212\232D\71\20\345@\224\3Q\16D\71\220\15\2" "_\334\33\313h\274\71\26\17\207$L\213Y\22&\265()&\215J\324\22\325\221\11_\340\32\313h" "\274\71\26\17\247\254\224\225\206s\216\224\223\250%\312\244\60\11\7\11_\353\33\313h\134Y\234\305\311\260" "\225\242\251\244\14\203\222\305\231\232\251Q\61\11\63\71_\365\36\313h\274\71\224\344@\226&K\244\3\322" "\60\344P\216\250I\324\22eR\230\204\203\4`\22\35\313h|\71\60(C\226\204Q\245\250\245I\223" "VL\342$j\211\245\60\11\7\11`\26\37\313h\134Y\234\305\311\60DY\272\24\245aH\22%\252" "(Q\244\224Z\266(I\303\14`\35\36\273h\134\303\240EY\66\14Z\224\225\262l\30\304$N\242" "\226(I\244\60\11\7\11` \36\313h\234\71\224\205\303\242\203\321\60\204i\230\206\303\220E\71\220\324" "\222(\213\302!\3`%\34\313h|\71\66\250Y:\14:\226\16;\226\15\203VN\242J\24&\341" " \1`'\36\313h\134a\32%i\64hQ\22.E%\312\222h\320\302\64L\303\64L\223a\10" "`*\33\313h\134\311\260EYKX\234\222L\321\226\60\15\323d\330\302\64L\207\3`K\35\314h" "\274\71\30\17\217Q\234DI\230D]\244$\314\241\266$N\242\60I\7\15`P\37\313h\274C\64" "LaT\214\224pH\224!\252\204\241\226\304I\324\22eR\230\204\203\4`R!\314h\134\71\230\14" "C\226\203\321\240-Y\246hQ\22\15b\224\205Q\26F\203\230\203\311\60\10`e\42\314h\374@\70" "La\24fQ%\33\242\64j\32\22\251\244dI\244d\303\220DiT\315\26\0`h\37\313h\134" "\71\26\15Z\224E\322 -YR\31\226\222\26UjQ\42F\305h\311\22\61`i\33\273h<\303" ")+\15\247J\24m\323pL\342$j\211\62)L\302A\2`m\33\313h|\345,\34\216Y\234" "e\303A\253&Y\264T\246$J\242\226P\6`o\37\313h\234\71\62\14a\32\16C\230\206\303\20" "\246\341\60dI-J\242L\12\223p\220\0`u\36\313h\274\351pPs\340\240EY\66\14Z\224" "e\303 &q\22U\242\60\11\7\11`\224 \313h\134Y\234\15R\35H\206IJJKO\303\224" "DI\226DI\226\14C\24g\241\4`\237!\314h\134\71\230\14C\26\306\311\260iQ\66\265$\303" " \345`\64\210Q\26FY\30\15\22\0`\240!\313h\134Y\234\245J\62,\211V\211\222,\311\302" "$J\262H\253\304IT\211\302$\34$\0`\243\33\313h\274\71p\10\243\342\60\344@<\234\262\322" "p\256D\225(L\302A\2`\246\37\313h\134\265\226\60\32\244%\213\24-)eIi\320*a\226" "\204Q%J\262$R\5`\251\36\313h\134Y)\211\272\324\242\332\216\230\22\245\247$j\351\224HI" "\224\244Q\62\14\1`\252\33\273h\34\17b\222\16\247J\24\15\327$\34\16Js\22U\242\60\11\7" "\11`\262 \313h\234I:$C\232\244C\62\244I\70(\203\230\344@\224f\245$\312\244\60\11\7" "\11`\274\35\313h\134a\32\16Q\230&\303\64\204\221\62,\215Y\62la:\234\302\64\314\0`\305" " \314h\134a\234\14C\26\306\311\260m\251\62\134\242,\214\6\61\312\302h\20\243,\214\42\11`\321" "!\313h\334I\216D\311pP\206(\211J\332\220\350\200\224\14\222\242%q\22U\242\60\11\7\11`" "\334#\314h\134Y\24fQ\30\15\233TS\206AQr \211\6\61\312\302h\20\243,\214\262\60\32" "$\0`\350\37\313h\134Y\22F\305d\230\304P\31\6E\322\222\250\270DR\242\244\221\224\205b\62" "\2`\360!\313h\134Y\234\14C\224\245\313 )Q\226$\303\240DYi\320\242\254\64hQV\212" "\24\0`\363 \313h\134\71\62\34\262(\213\244AZ\262\244\62,\245\254\64HI\71\211*Q\26\205" "C\6a\1\37\313h\134Z\66%QK\64LI\26jS\245\42FY\234\224\262$M\242,\21\207" "\10a\11 \313h\134a\232%a\224U\222%\331\21eI\224\236\222\245\224tJ\226RR\213\222\222" "\0a\17\35\313h\274\361p\314\262\341 \245\341\60\204i\70\14YRN\242J\24&\341 \1a\32" " \313h\134\303\20F\305a\10\243\322\360\226dR\62)[\222%\231R\252Da\22\16\22\0a\33" "\36\313h\374\300\64,iR\33\336\222L)%Y\64$\225AJ\266\34\330\1E[\7a\37!\313" "h\334Q\64\34\222\60\35\224R\232D\203\224(Q\222H\203\226\306IT\211\302$\34$\0aH\42" "\313h\134a\34\205\303A\12+Q\22%Q\22FI\224\14\312\20%\345$\252Da\22\16\22\0a" "K\42\313h\134Y\324\62\15J\226D\312\220\14I\324\262\15I\226D\321\220%q\22U\242\60\11\7" "\11aL\35\313h\134\265\312\60D\265H\14\207\203\242\244I\66dIc\322\230\64&\235T\1aN" " \313h\134a\232\14C\24\246\321 -Y\244\14K)+\15Z\224e\303)K\302DK\0aU" "\32\313h|\265\341\240U\207!L\303a\10\323h\70HIVY\372\233\14ab\37\313h\134\321\240" "EYi\220\244,\32\16J\27%\31\206(\307\222a\213\262\332\70d\2ac\42\313h\134\331 e" "I)\31\206diR\206\245\64\14I\24F\321\60\25\243h\230\262(K\304\0ah\42\314h\134\71" "\230\334\222n\311R\32\222&%\31\206$\231\302D\13\223\212\230,J\64%\245,\23an\42\313h" "\274C\16\304\303!\311\246d\220\223hP\222a\210\222\250e\30\242J\224DZ\242DC\4ap\37" "\313h<\203\26e\245\341\220\204Q\64(\245b\322)\351\42&q\22U\242\60\11\7\11av\35\313" "h\274\361pH\242\342pj\211\206C\222(Q$\15I\251\244\30\263H[\5a\202\32\313h<\303" "\65\207\6\71\313\206\227>U\302a\311\244P\322\1E[\7a\216\37\313h\134\265\226\60\31\206D\211" "*\303A)EJ\62\14Q\255\64hQV\312J\203\2a\244\36\313h\134Y<\14Z\322\66\34\22" "\251%\31\226\306,\31\266$\314\222a\213\262l\15a\251!\313h|Rv\310J\311\240\14Y)\32" "\222!\252D\321\220\14a\22'Q%\12\223p\220\0a\262\36\313h\274\351\360\30*\303\220\244\351p" "P\242$\212\206SRN\242J\24&\341 \1a\266\37\313h\134Y\234\14[T\34.J\30)\303" "\322\230%\303\26%i\242\324\224(\211\262%a\276!\313h<qR\32\206D\311*\303\62M\211\224" "$\226A\261U\262$LJI\42\205I\70\10a\307#\313h\234\311\220\14QK\62(\203\22e\322" "\220X\232\222DI\224D\253\304IT\211\302$\34$\0a\320 \314h\134a\234\14C\26\306\303I" "\351\244\14CR\214\207CT)&R\252,a\42&\0a\362!\313h\134MJe\210\206%\321\222" "R\62$R\26e\311\240DaV\211\223\250%L\264A\11a\370\37\313h\134\227\312\220%S\322\262" "D\311\224\24\207\203\224&J\247$\312\242\226\60\321\6%b\20\34\313h\334I\216D\321pH\302\64" "\214\242!\211ZjQ\244EE\245\337\266\64b\21\35\313h\234I:%iT\214\302\341\240E\305\250" "\270T\206L\215\222Z\222Ir\0b\22\36\313h\334I\216D\311p\220+\245,)%\303\220\204I" "$&Q\30%\25\315\230\6b& \313h\134\225\246\244\224D\305A\31\222\312\70(\245\244\323 \245" "\231\64\14I-\212\264$\14b/!\313h|K\234%\321\240DI\307$\32\224d\11\323(iJ" "\222%\222\222DI$)\261\25b\70\31\273h<\303!\207\207A\213\263\70\33\6-\307r(\307r" "(\307\0b;\30\273h<\303!\207\207A\213\263a\320\312\303%L\263$kT\5b\77\33\313h" "<\303!\207\207A\213\263a\320\312\303\251\234\15R\61\211\322H\224\0b@\37\314h\374\220\62(;" "\24\17I\34%\303\22%Q\66$Q\26FY\237\262\60\312\221\10bG\34\313h\34\17::\234r" " \32N\71\226\34\222,L\226D)i\213\222\330\14bI\37\313h\134\303\35\36N\71\20\15\247J" ":$CT\11\223C\222%Y\62$C\30e\0bK\30\313h\374H\216\250C\216\305\303\71\307\322" "\341\240\346X\216\345\220\12bM\32\313h\334\71\226c\341p\220s,\311\21\35\321\1%\325r,\207" "D\0bS\32\313h\134\71\26\15S\32\15a\65LC\61Z\303\64L\303\64\23%\0bU\35\313" "h\134a\32\246a\66di\230f\261\224D[\224EY)\232\222!Jt bq \314h\134\71" "\30\15b\26E\203R\315\222\255M)%SR\214\42\61\211\222\60\251EK\32bv\33\313h\134a" "\32\246a\66\34\262\60\15\323\341\61\315\222\60K\302(\213\206\64by\35\314h\134\255Q\65\252\15I" "\224H\321 FU%\312\246jT\215:\15Qb\33b\177\34\273h\134\303\220C\71\224\15\311\220d" "Qq\30\302\250\226\14J\224U\302\242\12b\200\34\313h\134a\32\246\311p\320\322\60M\206MM\266" "$\14\305P\314\242H\21\3b\204\35\313h\134a\32\246Q\42\15I[\224D\225(\221\264$\331\306" "\64\254F\352\20\3b\212\36\313h\134\71\226\14C\224D\321\60\265D-\303\20\315K\216\324\221j\224" "\244\211\64\14b\221\36\313h\134Y\234(C\224D\321\60\265D-Qi\212\206$j\31\242\350\26\206" "b\6b\225\36\313h\134\321\20F\305\250\64$Q\22%\241\244C\311\260\314Y%\254FJ\66\204\2" "b\227\36\313h\134Y\234\305\311\260\14\71\24\15aTT\242h*F\305\250\22%Y\222\254\2b\230" "\36\313h\134q\26\15a\224\16I\16D\303\324\250D\321TL\262\60\311B\61S#\0b\234 \313" "h\134u \312\201d\70(\71\20\345@\64hJ\226LJ\230Db\22\211RI\21\3b\236\36\313" "h\134\71\26\15Z\224%C\222\225\6-JR\245\66\25\243b\22fI\30\315\1b\253\35\313h\134" "a\32\246\311\360\324\22%Y\62lc\262\64&\215I\224JI&e\2b\261!\313h\134u \312" "\201h\70$a\224$K\224&\221\62$C\224\225r \12\243b\242\15\2b\265\37\313h\134\251\26" "\255Q\222\15I\65J\322h\230\224(\232\212Q%J&)V\224!\12b\271\36\314h\134a\34\306" "\311\60$C\26\207q\64\210Z\270\255QRL\242H\12S\61\4b\274 \313h\134\71\226\14C\224" "D\321\60\265\14C\224D\245)\32\222a\210\302\64L\303P\314\0b\275\37\313h\134a\32\246a\66" "\34\244$j\211JS\64$\303\20%QK\324\22U\224a\10b\305 \314h\134\71\30\15b\224E" "\303\26F\203\30e\241\222ES\26F\203\230\203\71\246\14\203\0b\315\34\313h\134a\32\246Y\70$" "\303T\214\212\221\62\234\302\250\30\25\243b\42\15\3b\320\34\313h\134\71\26\15SqP\302(\32\246" "\34\33\36\243bT+\25\23%S\0b\322\37\313h\134\71\26\15SuHr \32\264(\313\224," "\231\6-\312\201(\7\242X\32\6b\323\37\313h\134\71\226\14C\224\205C\24gq\224\3\312p\251" "EI-\222\262(\253h\203\0b\330\42\313h\134u \312\201h\70$a\224\244Q\222,\221\224$" "C\226\224\262%\312J\71\220\250\12\0b\331\36\313h\134a\32\246I\24\15SK\324\62\14\221\226-" "QK\324\22\265D\25e\30\2b\333\34\313h\134\71\226\14C\24F\203\26\325J%m\236\206\251\30" "\25\243b\42\15\3b\335\36\313h\134\71\226\14C\24fC\62ha\32\15\232\226\215i\62\14Q\230" "\206\241\230\1b\340 \314h\134\71\30E[TI\206D\251%\335\222nK\313\244\324\62)\213\222H" "J\262p\35b\341\35\313h\134a\32\246\311\360\216\224\322$J\247liLJYR\231\224)\321\201" "\0b\354\36\313h\134\251\226\14i\230\15Y\232\14C\24\246Z\66\15Z\224\225\262R\26I\203\2b" "\367\36\313h\134Y\234\14[q\210\222p\70Er\222\14\311\20\305\321\240EY\71\22%\0b\376!" "\314h\134a\34\306Y\222\15I\26&\303\220\351@\244#\323 FY\30ea\224e\322 \1c\1" "\34\313h\134Y\234\14[q\210\342d\30\242\64\34^\262\60*\246a\232\211\22\0c\7 \313h\134" "I\216\324\264d\310\6\65\212\206)\307\206AY\302,\31\266$\314\222\60R\206\5c\21\37\314h\134" "Y\222fI\232%\331\240\264E\212\230%\251bZ\272%\335*i\324\242\204\3c\31\35\313h<Q" "\26F\245\341\240E\361\60FY\224\14\213\32\17\203\16\344X\216\310\0c\37\34\313h\134a\32\246\311" "p\320\322(\211Zj\303c\32\246Y\22FY\64\244\1c/!\313h\134\71\226\14C\224\304\203\62" "dI\216$\303\20-\322\220$J\226\64&\215\222\22\331\2c\77 \313h\134\251\226\14i\230\15\7" ")L\223a\210\246hH\206!J\242\226a\210\302P\314\0cU\42\314h\134a\22\226\262dx\213" "\223a\310\222\250\66\134\226\250\226\14C\226D\265$*)Q\242\0c\134\36\313h\134a\232\14C\224" "D\321\360\224D-\303\20i\331\62lQ\326\22f\233\242\11ch\36\313h\134a\32\246Y\22\15K" "\42E\203\26\246\303;\26\15Z\224\225\262H\32\24\0cn!\313h\134\71\226\14[\22&\303!K" "\242\64\31\206h\312\226(M\206M\311\62%\213\244A\1c\203#\314h\134\71\30\15b\34\15\311 " "\306a\62\14\322\224\15\311\60H\225(\213\222(\213\222D\22C\0c\210\37\313h\134\251\226\14QK" "\64(Ye\30\242$\215\224A\231\212Y\22V\263$S\64\1c\214\32\313h\134\255Imx\32$" ")\213\242a\310\201x\70\247\303A\315!\25c\222 \314h\134Y\222fI\232<DI\232%ir" "\223\222lK\322A\31\242\326\250\250d\31\0c\230\42\313h\134\71\226\14C\224\244\303S\222\205I\247" "\245\62$\311 %Y\230HI\244DI\42\15\3c\233#\314h\134Y\24fQ\230\14I\64D\305" "d\30\263H\223*C\62$\245,\12\63%L\264L\216\0c\241\36\314h\134\351\226\14Q\226D\225" "!i\214\252a<\134\266\65J\212IT\323*b\10c\242\37\314h\134\71\230\14C\226t\31\242$" "M\244-\214\207\313\30gk\224\24\223(R\304\20c\245\42\314h\134a\234\14C\26e\321\20%i" "\62\14R\30\17\17Y\24fQ\30\15i\230d\312\226\0c\247\34\313h\134a\32\246\311\360\322\224%" "a\242I:\60\15S\230\206i\30*\303\20c\250\37\313h\134Y\224U\302h\70$Q\230Ha\64" "hJ\24M\305h\320\242bT\223\206\1c\252\37\313h\134\215Q\61\31\226!\211\302\341\224c\303\240" ",a\226\14[\22fI\30)\303\2c\262\37\313h\134\321\240EYiP\206$+\15ZY\31." "b\244\14IT\214\262%Q\25\0c\317!\313h\134\265\312\60DY\224\14Q-\307\222a\210\246h" "H\242\226a\210\222\250%\252(\303\20c\320\37\314h\134\71\30\15b\224EC\62\210Q\26\16\267\60" "\234\222\70J\306D\211%U\35\2c\332\42\314h\134\71\30\15b\224EC\62\210Q\26&\303 )" "\361\62\14\231\224\324\22%\312\232\24I\2c\333\37\314h\134Y\16dC\30\325\206\203\226tK\272\15" "\321\262D\265\341\20\205j\26e\212(c\341\42\313h<\71\226\14C\224\244\311p\210\222\34I\206A" "\231\22\313\260\264\205I\62Hb\246\14\203\0c\356 \314h\134\71\230\14C\226D\225!\31\304r\62" "\14\331T\71\14Y\30'\303 \205\251\30\2c\364\36\313h\134\351\224\14I\226\224\222!I\304d\330" "\242\34\370\224\3\311\260%\245\314e\22c\372\37\313h\134\351\224\14Q%\212\6\245-\31\206(L\207" "\307\64\211Z\242\226\250\242\14C\0d\15 \313h\134\311\260%a\226\14\313\220C\311\260%a\66\14" "\312aK\302,\31\266(\222\206\64d,!\313h<Q\64%K)\351\62,\245$\221\224d^\6" "EYJI\247\244\224IIE\323\2d-\36\313h\134\215\303\251i\210\324\250\230\204\231\62$C\216" "%\303\226\204Y\22F\312\260\0d: \313h\134\265\322\60%R\64$\303\324\30\15\223\22E\313\60" "DY\224\225\244b\242d\12\0d>\42\314h\134ie\30\244$J\222AK\302H\232\352\210\62\34" "\242$\216\222!K\242\70\34\42\61\4dB \314h\134\311\60dQ\26F\203\64$Y\30\15b\224" "\205\303C\22\226\252\71\230H\332\234\0dX\42\313h\134a\232\14CTK\206(\11\223a\210\222\250" "\264\34\222\250%Y\242\244S\222,\211\22\12di\34\313h\274\361pH\242,\33\16IrRz\312" "*\303\26V\206C\232#*\0d\203\36\314h|\331\64,\265\244\227\341\240\364\64,k\224I\303\220" "C\351p\320\201\34S\1d\244%\314h<Y\24&C\22FI\62<U\243\312\220\224\246\244\242\14" "Q\226D\265dHJI\224T\224d\13d\256\37\313h\134\321\240EYiP\206$\313\206SRN" "\206\227\246d)%\245,Y*\232\24d\262\37\313h<Y\22&\235\206\207(\11\223a\210\302T\31" "\26\61M\206A\11\305,\212\24Qd\301%\313h<i\230\14\203\22U\222%J\242$\31\226\212\222" ")\311\60$\211\222\15\207$JjI\224D\333 d\315 \313h\134\321\240EYiP\206!\231\222" "N\311I\313\226a\210\262\61JjIT\21\63\0d\346\37\313h<i\230\14\203R\36\222K\242t" "+)\311%G\222aP\242J\224d\321\250\1d\354&\313h<\265!I\206,\251%\311\20%Y" "\64\14I\61\251\14\211\62$Q\226\14\311\222)Y\224LJ\24\11e/\30\312i\274\341pHs(" "\35\206\64K\263\70\311\221\34\251j\221,e\71\36\313h\334\341\240\344H\62\210I\224\14[\22JI" "\226\224\342\254\244\15I\35\310B\65e;\33\313h\334\71\26\16Q\34\15S\255R\312*\241&\251\71" "\224\344@\26\252\1e>\34\313h\134Y\234\205\303\20g\203T\313\206\254\322\230\264E\305()eZ" "\266\6e\77 \314h\334\351\60\344H\224#\321 %C\224%Q-\351\226\204\225R\230HI\264U" "\325\0eE\35\313h\134a\32\246Y\70(\203T\253\224\242!\211\232\264(+E\332\220D\251\30e" "O \314h<i\353\240\14s\24\15[\224$S\62,\265\244\244%\245l\230\244,\252)b\0e" "Q\35\313h|R\234\324\206e\310\242J\324\245S\242\205J\242%\25\251c\222ek\0eW \313" "h\334\351\220\244Q\62(Q\22E\203\26EJi\210\264(\313\206HLJ\265J\226\6eY\37\313" "h\134a\32%\331 \245I\62<e\221\24\15QR\312\324)\32\62\65\252\15a\0eb\37\313h" "\374@\70(q\66\34\244\226(\32\264\250%\32\242$\212\244l\210LI\224\212\1ec \313h<" "\245pP\322$\32\16I\24g\321\240E\225\332\220\324\242\342\220\324\42-J\324\0el!\313h\134" "I\224\15K\232DC\224E\321\60\325\222\312\220\64%\245,)eK\242\3R\250\6ep \313h" "\134I\61i\235\206C\22eJ\26)\245\244\226D\303\242EY\266\211I)\321\302\0et\37\313h" "\134Y\70(\303\322\224\14J\24-\211\224\224\222\254e\70\347@\64hQ:\34\4eu!\313h\134" "Y\70(i\22\15J\251\62lIE\251\14R\322-\32\264H\252$\203\22%\231\30ew \313h" "\134IqP\342l\70$QR\321\222a\210\222\236\6)L\265!\251EZ\22\251\1e\207\27\312i" "\234\71\224\16\207(l\215\342(\7t$G\312\231$\13e\211\32\313h\274\351p\320\352\300\254I\353" "\64\14a\32\16C\230\206i\26G\0e\216\35\313h\274\351p\220\64y\7\24m\235\206%\213\263a" "\320\22\245\224\224\224\60K\0e\227\30\313h\334\261\224#u,\325r \312\261\34\33\336\261\34\313\261" "\20e\231\37\314h\134q\224\64e[\22\306\321\240Da%[\27%\232\222H\252\304a\34\306\21\0" "e\234 \314h|i\252Da\224\324r J\226(\315\222l\320\266h\310\222Z\245\26UC\65\2" "e\244\31\313h\374H\216\250C\16\344\330p\312\342,\316\342,\15\323\260\32\2e\245\32\313h\374\300" "\66\310\71\226c\303)\213\263\70YC\261\22\245Q\16\204\0e\255 \313h|i\22%C\244(a" "\42\205\303SK\262DIbJ\224\250\22\265\14[\216%\0e\260 \313h\134q\62\334\242$\215\222" "p\70HY\224\14J\224I%\245\24IY\322\230\305\11\0e\271\30\313h\274\71\226\16\7\61\307r" "l\220\263\70K\303\64\254f\241\6e\275 \313h\134Y\234\205C\62,QqI\246$Y\242d)" "%\235\222\312\22%\345$L\264Ae\305!\314h\134Y\16d\351p\320*iT\311\246$L\42\65" "I\224,RjQK\26e\221\26\2e\313\37\313h\134Y\234\205C\64(Y\274\14R\42\205Ic" "R\231\222\306$\331\242\244\250d\3e\317 \313h\134Y\234\205\303A\252\244I\62HC\24&Y\230" "\14C\22e\245J-\211\62%\14e\327\42\313h\134Y\34\15\7%\312\222a\210\262([\206,)" "eI\62D\225\250\64\14Z\224d\212\26e\342 \273h<\303!\211\222\332\220\324\242\244\26\15C\62" "DZ\252%Q\222%J\213T\321B\1e\345\16\267j\34\7\325u\270\272\16\203\0e\347\33\311i" "\34\71\22\15C\24J\241\24J\303\20\205R(\205R(\15C\216\0e\350\34\311i\34\71\22.\203" "\230\3\311\60\350\330\60Di\64\14Q\32\245\321\60$\0e\351\31\273h\134\303\240\305\331\60hq\66" "\14r\216\245\303A\315\261\34K\1e\354\36\313h|\71\226C\303)\7\222d\220\244,\312\6)+" "e\245l\220r,G\24\0f\6\33\273h\134\303\240\305\331\60hq\66\14Zy\220\244l\314JK" "\66\204C\0f\7\32\273h\134\303\240\305\331\60hq\66\14\342\22*Q\66\34\264jX\315\0f\16" "\34\272i\34C\62LI&%\331\240\14S\222II&%\303%\23\263\260\26\12f\23\33\272i\134" "\303\220\245\331\60di\66\14a\216\14\207\250\222E\25)\313$\5f\24\33\313h|\305\341\230\305Y" "\66\34tx\30\302\64\34\206\60\15\323p\30\42\0f\37\33\273h\134\303\240\305\331\60hq\66\14Z" "\224\3\7)K\243a\7\342\341\20f \36\313h\334\341\26&\311\260tJ:%K)I\206C\222" "iI\224dS\71\314\344\0f%\34\313h\274\71p\310\201x\270&\341p\220\322,\31\224R\26e" "\203\234\305\203\6f(!\314h\334\351\20\245Q\64\14QR\214\222\342 \15I\224\205Q\26F\331\220" "\14Y\16\346`\10f-\34\273h\34\237\262H\312\42\251\66(\221\22\311Q\62\14Q\22\16J\230\206" "\351\60f/\34\313h\134\303\20\246\341\60\204i\70\14\71<\34\324\34\210\6M\211#\65\35\4f<" "\34\274h|\303\220V\207!\15\323a\320\222\60)\15S\26\306\303N\31\16\12\0fB\35\313h\334" "\341\62,\265\60\311\302dx\215\222\341\220\324\242$jI\243\65\207$\0fi\37\313h\334\71\64D" "K\224%\303\240tJ\226RR\31\226R\222%Q\222-Q\255T\35fn\35\313h\134i-\33\16" "J\224DY\322\64\34tx\30\302\64\34\206\60\15\207!\2fo\35\313h\134\303\20\246\341\60\204i" "\64\34tx\30\302\64\34\206\34H\322\250dK\0ft \313h\374@\66<e\245dP\242,\33" "\236\222,\211\222A\211\222,\31\222A\316\342H\1fv\35\273h\134\303\20\246\341\60\204i\70\14\71" "<(\303\226d\303\62lI\66,\203\0f\201\35\313h\334\71pH\266\60\351\224\14/Y\224\344H" "\62<%Y\230DaT\22\7f\207\36\314h\234\313\245\226tK*\227v`\211\206\244\262%mI" "\307h\231\342,I\243,f\221\33\273h\134\303\20\246\341\60\204Qm\70'\331p\220\304H\31\326\60" "\35&\0f\226 \313h\374\310\260\14\221\22%]\206A\311\302\341%\13\223hPJR\262Dj\244" "d\211\30f\227!\313h\374@\66<%Y\22%Qix\7\242dP\242$K\242dP\206$\213" "\263xP\0f\246 \273h<\303!\211\262lP\206$\312*'\245\227a\210\222\64\211\206!\211\322" "p\30\22\0f\253 \313h|i\62\334\222(\35\222A)U\206!\12\223,\33\206\60\15\207!L" "\303a\210\0f\256\35\313h|\265\341\240U\207!L\303a\10\323h\70H\232\226\14J)\213\262A" "\3f\264\34\313h\134\303\20\246\341\60\204i\66\34\263l\70HmIO\203\224H\221\252\2f\307\37" "\313h\134\303\20\246\321pP\323\341%J\42)\211\222h\30rx\70h\231\66L\11\0f\334\35\273" "h\34_\262LI\16I\226\15\17I)K\222aP\246l\31\326(\7\16\1f\362\31\312i|Q" "\34\305Q\66\34\244\222T\32\236JRI*I\245\341 f\364\31\273h\34\17j\16\34\302\250\70\14" "aT\34\206\64\311!\35\220\64yf\370\33\313h\274\361p\316\222\341\240f\321pN\207\203\224\206\303" "\20\246\341\60D\0f\371\36\313h\234Q\66\34\304(\34\16I\324\62\34\222\250e\70Dq\66\14Z" "\234\15\203\2f\377 \313h\134i\64(\203\224F\203\62Hi\226dI-\311\242a\10\323p\30\302" "\64\34\206\10g\0\37\313h\134\303\20\246\341\60\204i\64\34\224(\7\236*Q\64DIT\222\6%" "J\305\0g\10\27\271i\134\303\20\245Q\32\15C\224Fi\64\14Q\232\304Ilg\11\33\313h\274" "\361pHs(\207\206!\24\263d\230\212I\66\254a\32\246\231\2g\15\37\273h<\207\245\61i\222" "\226\70I\6)\251EKSR\312\222\212\226$R\222(a\0g\25!\313h\274Y\64\265DI\226" "\14C\264\205I\26&\303\240la\222\205I\224dI-I\326\0g\27#\313h|\71\62(C\222" "%Q\62(C\222%Q\62(QR\33\222\250%R\242d\312\306,\315\4g\33\35\313h\134\331\220" "\14CT\34\242\60*\16\331\220\245\221\66\234s\340\220\3\351p\20g\35!\313h\134\71\62(\203\224" "e\303\222i\311pH\62-\311\206e\220\262lX\262\250\30%\241\0g\37\35\313h\134u J\206" "\247\226(\32\222!\252D\321\220D-\303S\245\226d\306Lg(\30\313h\274\71\226c\351p\20w" "d\7\222jTk\11\253\71\226\2g*\32\313h\274\71\226\3\207\34\310\261t\70\250\71\64+\211\244" "ej\216\245\0g+\32\313h\274\71\226\16\7\65\307r\340\220\3\71\64+\211\244ej\216\245\0g" ",\31\313h\274\71\226c\351p\20wd\7\222jTK\6\245X\315\261\24g-\36\313h|Q\16" "D\341\60\344@\224\3Q\274\304\212\232DaT\7\242\254\224\325\206\0g\61\33\313h\274\71\20\345@" "\224\3\7-\212\263t\70\210\263\222HZ\246\346X\12g\64\32\313h|\345,\316\302A\211\63QK" "\262\251\322I\312\342,\316\342,\3g:\42\314h\134\71\230\15a\26E\203\22\205Y\224iQ\66\325" "\224R%\213*Q\226D\265$JR\1g=\36\313h\134\71\226\14C\224\205\203\22g\251\64HK" "\26)aRN\312Y\234\205\22\0gI\34\313h\134i\230\206\265A\211\262(\313\304L\211*\222\246" "\304I\65\254F\42\0gP\32\313h\134i\230\206i\64\34\244\64\23\265\315\322\224D-\265\60\15C" "\11gQ\30\314h|i\333p\320\322P\15\227(K\272%Y\22U\373(\1g_\33\313h\274\361" "pHs\340\240EY)\313\206A\335\201\244\32\225\264LM\1ga\33\313h\234\71\64\214Z&%" "\71\60hS\264\246\303A\234\225D\322\62\65\5ge\32\313h\274\71\26\17\267\250\232DiR\33\16" "\342\16$\325\250\244ej\12go\36\313h\134\71\226\14C\224F\203\26\26\67K\242DR\22)\245" "H\11\323\60\15\63\0gq\31\313h\274\351pP\343\341\224\225\206SV\32\256\263\222HZ\246\246\0" "g~ \313h\134\331\230%\321\20%a\224\225\222\222\22U\266Jc\222%a\24i\311\20\325\201\0" "g\177\36\313h\134\71\26\15Su\330\201h\220\244,Z\232\24S\22\265\224\222,)eJ\30g\220" "\36\313h\134q\26\15a\224\16;\20\15\223\22e\212\224I-QK-L\262P\214\0g\227\34\313" "h\134a\32f\303A\12Si\233\66E\351\224DJ)\15\323\60\15\63\0g\232\37\313h\134Y\234" "\305\331pH\242,\312\242%\213\224\66\245)\11\263$\24\263(K\304\0g\234\33\273h\134\303\240E" "Y\66\14Z\224e\303 \307\303!\234\225D\322\62\65\5g\235\35\313h\134a\32\246\321p\220\322\60" "T\206i\215,Q\22fI\226\204Q\226\255\1g\240\37\313h\134Y\234\305\311 \15J\61K*K" "\246(Q\250\14\203\22fI\230\206i\230\1g\242\36\313h\134\71\26\15S-\31\266\222\224)\211\246" "H\231\224tJ:\311Q\16D\303\0g\257\34\313h\134a\32\246a\66\34\244\60\24\303-T\206\245" "\224%\245\254\224\225\6\5g\266\36\313h\134\71\62(C\226\224\262\244\324\22%\211\64\304\351p\20g" "%\221\264LM\1g\304\37\313h\134\71\26\15S\230\15R\32\15S%J\226DI\224i\211\244%" "\12\243bT\23g\320\31\313h|\265\341\240\225\7\71\213\7\35I\207\203\70+\211\244ej\12g\323" "\34\313h\134Y\16D\241\64\350H\223\224$[\246\246\303A\234\225D\322\62\65\5g\324\33\313h\134" "\303\20G\71\42\16\7Q\313\224(\262\16\7qV\22I\313\324\24g\361\35\313h\134Y\34\246\311p" "\320\322\60\325Be\230\304,\11\263$L\303\64\31\206\0g\363 \313h\134Y\234HS\322\62,M" "I\27\245\313\220\264(-J\262$J\313\224%aT\2g\373\32\313h\274\351p\20w \251F%" "eP\264\362 g\361 g\331p\20h\4\32\313h<Q\230E\305(\311\206\307P\254\14\327\35H" "\252QI\313\324\24h\23\36\313h\134a\32\246Y\22\15I\226\15\247\60\334BeX\212Y\22\246a" "\232\14C\0h! \313h\134a\32\246\311p\220\222\60\312\42EJ\222)\311\264$J\302,\311\222" "\60\312\262\65h*!\313h\134a\32%i\64(\303\222&Q\250\14C\262\205J\62%\331\224DI" "-\211\32\63\0h\70\36\313h\134a\32\246\311p\220\342,\311\26%S\242P\213\222\212T\11\305," "\312\22\61h\71 \313h\134\71\26\15Z\224%C\62hQ\26I\203\264h\211\245S\42%Q\61Z" "\262D\14h<#\314h\134Y\16dC\230E\321\220Ha\22\211b\222MY\244\14\213\222E\225," "\12\263(\314\206\10h= \313h|Q\16DI\66La\24\16\7-\12\207!\12\263$\333*\245" "D\312\22-\312\2hC!\313h\134Y\22fI\230\264\14KS\244h\225l\61)-J\226$J" "\226\204Q%JB\1hH\33\313h\274\351\360\226*\303\220du`V\22i\70\210\263\222HZ\246" "\246\0hQ\36\313h\134\303\220f\71\60k\322p\210*Q\246$\222\64%\303A\234\225D\322\62\1" "h\134 \313h\134Y\224%Q\222EIe\230\302\342\224*\303\220H-QK\62\244Y\22&Z\2" "h_ \313h\134Y\22fQ\226\14\313\20\305\311\60i\351pH\224(i\224\222,)%\232$\7" "h\205!\313h\134u \32\16I\16$\303\226(\245\245I\31\206DJ:%]\206!J\302,\224" "\0h\260!\314h\134\261\26'Q\62\274\206QR[\332\224aI\244\244\242DI\224\64%\232\30\25" "\263\0h\304\32\313h\274\351p\320\244p\270E\245\341 \65\15\7qV\22I\313\324\24h\313 \313" "h\134\265RV\31\16JV\32\244%\213\224a\222\262\244\62\14J\226\204QV\11\23\0h\322!\313" "h\134a\232\14C\24fC\62h\225L\31\206diR\222E\11\263$\31\206(L\303\14h\332\35" "\313h\134\71\226\234\222\226aiJ.J\227!iQ\16I\27\245\247\244S\222\30h\337\42\313h\134" "a\232\14C\24fC\62L\225(R\206\305\22%\322\60$\331\224DI-\211\32\63\0h\356\36\313" "h\274\361p\235\225D\322\62-\211\322\60\32\16\222\246%J\242DI\224da\4h\372\37\313h\134" "a\232\14C\224\244\303S-\222\262h\31$EM\242aH\242\60*F\321\60i\15#\313h\134i" "\30\15S\32\15\312\220\225\262$\31\242!\211\42%\31\222NI\313\220%\71\222\14C\0i\34 \313" "h\134a\232%a\224%\303%\12Ce\230\206(\211\224a)fI\226\204Q\226\255\1im\32\313" "h\234I\234\64\15\7\255\70\234s\340\220\3\351p\320\222jTk\1iu!\313h\134\71\226\14C" "\224\205C\222\3\311E\214\222AQ\222\245\213\322eH\224(S\223a\10i| \313h\134a\32%" "\265d\70Hc\224\224\224\250\62\245\312\60(Y\22%Q\61\33\23-\1i}\34\313h\234q\64H" "I-\11\7U[\224AJ\323\341 \316J\42i\231\232\2i\202#\314h\134\71\230\334\222.\303\220" "\324\222NJ\62,\303\224)Z\224\264HI\262(Q\22%\245,\23i\313\37\313h\134\215\311\260E" "\245\341\220E\65e\30\222\245I\32\224R\322e\30\242Z)R\0i\330!\313h\134Y\224%\303\20" "\205\331\220\14Z\30*\303\220\14QEJ\272MI\242\324\302\250\246\1i\375$\313h\134Y\22&\303" "\20eI\64\34\244\244S\62\14\311\220\264(\303\240DYR\32\264(+\15\12\0j\31!\313h\134" "\311\60DY\22\15\7)\351\224\14C\262#\312\260\324\221\312\60D\225Z\22\265i\0j!\37\313h" "\134Y\22&\303K\61\32\244%\213\224a\222\6\245\230%\311\60D\231\32\25G\1j)!\313h\134" "u \32\264$\312\206d\230\262$T\206\305\22.\203RJ\262$\32\264(I\243aj*#\314h" "\134Y\24F\303\62D\305d\30\244\60\225\206i)E\312\60$\245$JJ\303V\12\23\61\1j\71" "!\314h\134Y\313\20e-\303S\16D\312\240DC\224H\312\20%M\225\322\220dk\26+\0j" "K\42\313h\134\321\240\205i\62\34\244$\214\262HI\226dJ\62e\30\224\312\242\364\224$K\224\204" "\2j_\42\313h\134Y\224E\305dX\206$Q\242d\30\22\61\211\206C\242DI\213)\351IK" "\244H\13k\4\42\313h\134\311)\351\224\34\6\251e\30\22%\252\14\207D\211\222%\31\6\245\262D" "\211\222HITk \31\313h|\71\226c\71\66\14R\255T\253c:R\7\262\264\244\3\2k!" "\34\313h\274q\226\3Q\16D\303\230d\245:\20gb\226\204YT\13\223D\16k'\37\313h\334" "\341\240\204i(%\303\322EJ\42%J\242J-\222\42)N\222A\211R\61k\62\37\313h\134I" "\71\251f\303\20\325*mI\24fI\66,a\224\324\242\244\26i\321\220\6k:#\313h<Q\222" "FI\70\14i\224\14\312\240DI\244\224\206(\214j\303\22&Q\222EZ\22\251\1k>\37\313h" "\134Y\70(q\226\16\311\240&Q\262\264#\331 \245R\22%\235\222(\213\224\64kL \314h\374" "@\70,\341\22\15I_\226\212,e\203\226\3\221\266DI\224\64E\213\30\312\1kS \313h<" "i\70(a\222\205\203\62(\275\14\222\224\204\321\60eI\246\15J)\211J\203\30kb\35\313h\274" "\71\226c\71\226\3Q\16D\203\26\345@\224\3Q\16D\71\20\245\303Akc\33\273h<\303\71\307" "r,\7\242A\213r \312\201(\7\242\34\210\322\341 kf\37\313h\374@\22\15J\224\3\331p" "\320\312Y\230\14b\222\205I\230T\206$\31T\35\13ki\34\313h\274\71\20\345@\64\204Q\16D" "\351pP\223\64\252EJk\224\312;\0ko\35\313h\274\71\20\15a\224\16\7E\212\244\244\323p" "\212\246J')\222\262\322p\1ks\42\313h\334\71\20\15a\24\16\7\35H\242\341\220$K\230&" "\321\60$Q\242\264(Q\262%Y\0kt\36\273h<\303!\211\262lP\206$\312*'\245\247\244" "\226Da\24\15IT\35\16\1k{\34\273h\34\17R\26gQ\266D-\265(\321\222v \312\201" "(\213\262J:\4k\211\37\313h\334\341\240\244\341\240,aR\31\222\212\322\62-R\245\224%\245l" "\251#:\240\0k\212\37\313h\374@\66,i\224\244\312 %R\230d\225\341\26\215QRK\242J" "\232\305\31\0k\213\36\313h\374@\222\14KT\32\264)M\206\251Q\31\6)L\262P\13\225\232\264" "C\1k\226\42\313h\374@\66\34\244\60\234\206(Q\242\212\62DC\22%\221\62dI)K\222!" "*g\303\20k\264 \313h\334\323\240\224\322$\222\222\212\222hS\64$Q\232tJ\244H\312\201h" "P\224T\14k\265\35\313h|\311\220I\265RVJ\222!T\262AZ\243\60\311\22\245\64\266d\65" "\1k\272#\313h\34Q\264%Q\22fI\226(\25\61\223rdH\6-\312\242)\311\224(K\262" "$L\64\1k\273!\313h\134\331\64(\305,\311\206\244\65\33\206\70K\206h\215\222(\311\22)L" "\242$\312\264\4k\277\42\314h<\203\262Uj\225\332\240\364\24-\303\234T\206(i\212\206!\211\42" "\255\22%\265LK\0k\315\32\274h|\303\220&Y\32UK\303S-\314\242\60\316\206C\24\347\220" "\10k\316\35\313h\134\71\66\134r(\32\326$J\223(\32\16RcT\33\16I\234#\32\0k\322" "\32\313h\274\361p\216\207s:\34\244\246\341\240DY\66\14:\226#\32\0k\324\34\313h<a\32" "\246a\32F\321\220D\305$\13\305j\230&J\226h\331:\4k\333\30\313h\374\200\274\16\71\226\3" "\257\71\26\17\7\61\307\322\60M\207\1l\17\32\313h\374@\216\250\203\234\305Y\234\15\322 \207i\230" "\226\222DK\206Xl\21\30\273h\134\303\240\305Y\234\15\203V\36Na\32\246\225h\34t l\27" "\36\313h\134\71\66\14Z\16%\203\226\203\303\240\3Q\250Dq\226&Q\22\305C\216\4l\64\32\312" "i\234\71\224CY*%\303\222*\261\222&Q\26eI\26\326\21\25l\67\34\313h\274q\226\3Q" "V\222b%\32\222rRN\242\60\312\242,\24sH\5l\70\32\313h\234:\230\23\267X\211\206A" "N\312I\24FY\242\205i\16\251\0lA\30\313h<i\61\307\312a\64\14\71\220ciX\15\323" ",\316\342\14lB\33\313h\274\71\226\344H\24\15\7\65\316\244,Rb%U\242H+\207\241\12l" "W\27\313h<\71\70\14:\20\246\305x\70\327\322\60\15\253a\32\2lZ\34\313h<\71\230\14;" "\20\246\225aPsl\320\222\60*F\71\220\344HY\2l_\31\313h<\71\230\14;\222\305a\232" "c\71\226\206\325\60\315\242\341\216\1l`\34\313h<i)\311\221Z\230L\331\22.\345\244\26%\245" ",\321\252a\250\16\2lz!\314h<a\16d\71\62\14Q\32ea\224#Q\70\34\242L\315\222" "\64\213\262b\224\310\11\0l}\33\313h<uh\30\304\34H\222A\313\321a\307\302\64\213\223r\242" "#;\24l\210\34\313h<a\234\345\300S-)e\261\16\251\231\230%a\226DZ\24I\341\0l" "\226\32\313h<i\61\7\16ZT\211\32\243\342\60Da\65L\263\70\213\63\0l\241\34\313h<\331" "\20Fu *FIE\24\7\35\13\243Z(\206Z\30\225D\1l\242\34\313h<\71\30\15k(" "V\262aMr\244\32\325JY\24&Y\230Dq\0l\263\42\313h<\71\230\14C\16%\71\22E" "C\222FI\32%Y\62$Q\16D\71\220\344H\35P\0l\270\42\313h<Y\222&\303\234\64&" "\245d\30\302\244<\14R%J\262$J\262$\322\242%\312\62\0l\271\34\313h<i\61\307j\303" "\220D\215Q\61j\31\206$j\211JZ\24i\303\20l\273\36\313h<a\234\345X\22\205YT\32" "\262!\313\341d\230\212Q\61\311\302$\33\26\0l\274\35\313h<\71\230\14C\16Dr\224\204Y\32" "\251\71\22\15K\26&Y(\206\342\60l\277\37\313h<Y\222FI\216\324\201,\312Z\322,\31\224" "(\311JY)\213\262R\66H\0l\301\35\313h<\71\230\14k\230daTL\207\71I\243$\314" "\222\60*iQ$\205\3l\311\35\313h\234\71\62\14a\32\16C\230\206\303\220\3Y\62,jR\215" "JZ&\252\0l\312\31\312h<iXG\262lX\242\260\247dX\242\60\211B-\324\206\1l\314" "\37\313h<a\34\346XR\314\242,J\223(M\232\222DK\244\60\211\244\304\22U'\0l\325\34" "\314h<i\34\346\310\60$qZ\7\336\201\70K\302RV\231\262-\311\241\4l\341\36\313h<Y" "\16D\71\66\14a%\32\224,L\322!\211jQ\26g\241\30\252\203\0l\342\35\313h<i\61\7" "\16ZT\211*\351\260\206Y\42eQ\42&\221\26%Qe\24l\343\35\313h<a\234\345X\30\15" "\203\222\3i\230\206Y\224EY\224\225\212Qi\30\4l\345 \313h<\71\230\14C\230ji\22\15" "C\230\344HIJ\222-J\322$\312\244\232\22\16\1l\350\32\313h<a\34\346\300A\16\323\34\313" "\221A\13\253a\232\305Y\66\14\1l\360\36\314h\274\71\360\16\344\310\60\344@\222\16\7-*&\235" "\262MK\252R\244\3\61\0l\363\32\314h<\241\234\346\224p\252^t$Q\243\244\26u\311\62\71" "LE\0m\13\36\313h<Q\26Fu \311\242aP\302\34\31v \316\322d\30\224\260\32\246!" "\0m\27\35\313h<Q\22'udX\242j\22\305\303\65I\243$\214\212QI\312\42%\35m\36" "\36\313h<\71\230\14C\230j\311RJ\303d\11\223\246\244S\222,\245\64\211R-\24m%\37\314" "h<i\234\14C\216DI\64\134\322(\35\206\34\211\223a\210\322\312p\210\303\70\4m*\36\313h" "<Y\24Fu *\15\203\222E\71\20\345@\24\16\227\34+\325\302$\212\3m;\34\313h<\261" "\226\14\71\24\246\225a\220s,N\206\251\30\25\223,L\262a\1m>!\313h<\261\226\14\71\20" "&Y\262EI\26&C\232\250I\42FI-\211*QM\311B\0mA\36\313h<a<\14:" "\20\226\262dPr,M\212I[\224\324\242\244\42U\22%\26mD\34\313h<Y\16DC*\345" "\300%\215*\303 GY\62La\32V\303P\4mE\34\313h<a\22fC\70\204\351\20E;" "\226l\203\222\205b\233\322\42\356P\0m\134\35\313h<\251\230\354H\234\15S;\20\345@\224\16\227" "\34\213\262(\13\223(M\0mf!\314h<i\224\205Y\70\14I\234F\303\220F\325a\310\222\250" "i\30\242.YT\311\242D\1mj\36\313h<a\234\345\310\260da\24\15k\230\16[RK\242" "JT\213\262)\211\324\0mn\34\313h<\261\226\14qT\311\222\250-\35\206\34\21\263\64\31\6%" "\254\206\241\10mt\36\313h<Q\26&\255Q%L\302,\311\201,\255%\203R\312JY\224\225\262" "A\2mw\35\313h<Y\16D\303Z\33\246\244sR\36\246$J\242\226(\32\6\35)K\0m" "x\37\314h<\321\60\306\361\60\345H\226\14\267\34\310\206!\211j\305$L\303P\311\42Q\1m\210" "\33\312h<a*\25\223HKJ\321\60\26\207)\11\223hX\242P\13\265Lm\231\36\313h<\71" "\70\334\11\207$J\243d\30\302,\35.\265\60\211\222(\211\262$R\3m\257\35\313h<\71\70\334" "\232\222AJ\262x\30\264\252\26&\311 %Y)\253$\303\20m\262 \313h<ie\30\322$\13" "\223!\211\32#%S\242HI\224(\222\262\250RK\62c\0m\274\34\313h\34ie\30t\312\260" "daTL\207\255\32%\265(\211\222\250%\24\1m\321\37\313h<Q\216\324\261a\320\242JT\311" "\206%\315\244d\312\22\245\224\224\222\236\222L\14m\341\35\313h<a\224%\315I\30Eb\26\245\242" "\34eI[\224\244I\244\205QI\24m\361\36\313h<\71\70\334\222\222\224\224\222\250\34%se\30" "\222L\311\242$J\242\232\32\2m\367\34\313h<\71\230\14k\230d\303TL\207\65J\223!J\242" "hj\313\206\310\66m\373 \313h<\261\226\14\71\24F\303\240\204:\22\305I\224IY\22%JT" "\251H\225D\24\1n\5\35\313h<a<\14:\20f\203\26\306\303\61\13\223A\213\262\322 e\245" ",\222\0n\7 \313h<\321\260%a:,Y\30E\303\234C\303\20)QR\233\222,J\324E" "\7\24\0n\10\34\313h<a<\34\263(\34#E\334\306AL\262\322\240EYT\214\222\64\2n" "\11\36\313h<a\234\324\221dH\262$M\206AN\342$\312\222\276(\255Y(F\62\0n\13\35" "\313h<i)\311\221d\11\223\60K\342a\320\341$T\62%\313\241PQ\42\65n\23\34\313h<" "\341\220\15Y\30U\262\244\26%\345a\7\342\341\22\246\241\26F%Qn\33\42\314h<\261\230&\341" "\60\210\265hHJI\230\204C\42.\305DI\264dP\22\251\266Di\0n!\37\313h<i:" "\334\222\250\64\14JS\232\14i\16\15\203\224\224\262$\322\222(\221\24Qn&\37\313h<\71\230\14" "k\230d\311\20U\242p\30\264\70R\206\244S\322\62$R,\245\2n)\34\313h<\71\230\14r" "\26e\203\26e\361\240S\206AJ:%=%]\206\3n,!\313h\34\71\224$CR\213\222D" "\252\264\14I-JjCR\222\222\226!i\22\245\232\22\13n/\37\313h\34Y\24F\345aH\262" "(\34\16i\222\3YeP\214Y\66d\305$\34\24\0nV \313h\34Y\16D\321\20F\245a" "\322\242!\211\332\6)\222\6\245$%\311 \251\231\230\11no!\314h<\71\32\15:\220E\341\240" "\265\16\327\34I\206!J\242\244\24)Q\222fI&I\0n~\35\313h\34i:\34\262\244\61)" ")Q\22%\321\260c\225a\252\3\311p\212\345\5n\177 \314h<\71\232\14CZ\311\206!\252\246" "\303\220\3I\232%\245JS\246Hi\222E\303\1n\200\36\313h\34Y\24&\303\220F\351pH\323" "\341\20e\245\244\213\322E\31\24\245\252\304\2n\220\37\313h<\71\70\334\232\222AJja\62\210I" "\226)\203\224dI\224\64)\245h\324\0n\226\36\313h<Y\24FI\226\15C\222H\71pK\242" "\60\32\6\61\35\16j\216\345X\12n\235 \313h<Y\222&\303\234d\331\60eI<\14b\22e" "\311\60U\242\312p\13\223,S\0n\266\35\313h<a<\334bI\351\224Da\322\232\205j\24\15" "J)\213\262R\66H\0n\305\42\314h<q\222\245Q\66\334\302,\32\226(\211\222\242\262d\212-" "\211jIe\221\244h\311\302\0n\313\33\313h<Q\230E\325\341\326\224\264ER\244\264JR\255\322" "\313pH\263\0n\321!\314h<\331 FY\16$S\230\324\222\341\226dI\226\14JT\253\15Z" "S\230Ea$\1n\335\34\313h<a\234\345\300!\311\272\244\303-J\322aK\242$K\206E\315" "\344!n\336\37\313h<QR\34\216I)\33\264\34\35\6-\312\242\341\22%QK\224d\311\224\206" "\0n\364 \313h<ie\30\322,I\223,\32\206\60*\16C\224D\225(YJIEK\26-" "\24o\1 \314h<a\16dC\16DY$\245\321\60\244Qu\30\262$j\32\206(\307*\235Z" "\2o\2\37\313h<\311\60HY\22\17\203\226t\32\206\234\62l\71\224\14\203\222%mQ\244j\0" "o\6\34\313h<a<\134\267HI\226\60\207\252J$e\211\224\14b\224\224\232F\21o\17 \313" "h\34\321\60DI\32\16C\22\345H\62\14Zy\30\244\251\222,J\305\262$n\211\1o\24\37\313" "h\34i:\34\242\34\310\206!I+\303\20F\265a\220\222\250e\30\222,L\22\71o \34\313h" "<Y\24\16\327\250\66L\305tX\303,\31\246\60M\206\233\42%\252\0o\42\37\313h\34Y\24\16" "\207\60\212\207!\211\272\14C\16\304\303 \205i\62\14I\230H\311(o+\37\313h<\321\260%a" ":,Y\30%\303\240%Q\222\15\203\224C\321\60eQU\213\16o,\35\313h<a\234\14;\20" "f\303\24\306\303\61\13\223A\213\262\322 \205QIL\0o\70\42\313h\234\251\62HM\342\260%\225" "A\31\206$K\22%\33\226\250%\32\206\244\226DI\246%\0oT!\313h<Q\64D\203R\314" "\222h\210\22m\210\222\251\270\244\221T\31\226RRJ\244J\32\2o\134\37\313h\34Y\313!\314\322" "e\320\244,\211\224,\7\302a*F\321\260da\222\15\13\0o_\36\313h<a\234Hj\230." "J\26F\321\60\347@\64,Q\232t\22\243D\7\24\0od\42\313h<\311!RJ\331\62dI" "IZ\206\244\234%C\222EYR\31\222\246LJ\206DJ\5on\42\313h\34Y\16\134\306,Q" "\6\245\242%\323\240\224\262\244\64(K\224%\311\260$Z\24iI$o\204\37\314h<\331\34&\352" "\222\245I\242dK\234\206\311\240D\265\332\240\65\245I\26\15\203\2o\300!\313h<QuH\342$" "\31\244\245\224$R\70Di\224d\203\222EYIiJ\244\244\42\6o\301!\313h\34\321\60(\235" "\262a\20\343l\30\222R\26\16J\224\364\64(\305$\21\207D\322\24\0o\303!\313h\34a\22&" "\303\20&\215\303\220DIS\62\14Z\216\15\203\322\61i\231\222\250\222L\2o\353 \313h\34\311\220" "\204J\224\16\311\20U\262dP\225h\210\206\234\226\14C\224\364\224t\31\16o\357 \313h<\71\70" "$C\32FC\62\210\225\344\20fa\62L\211\24F\303\222EY\66\14\1p,%\313h\34Y\16" "D\321\20\15J\224EC\62\14Q%\31\244aJ\22iH\222%J\224dXjJ\26\25pk\31" "\313h\274\71\226cMY\251V\11\263\34\323\221:\22\245b\244\3\2po\36\313h\134\71\226\14C" "\224FI-J\304j\230\206i\226\204Y\224E\71\220C\22\0pp\33\273h\134\303)\213\263(K" "JYR\312\244$\314\322,\11\263$kT\5p}\31\313h|Q-\252E\325\250\30\325\211Y)" "+\325\242$\326$\35\20p\211\35\313h\134\311\60D\71\26\15\213\61YB%\32\246:\20\305I\71" "\212\263\34\312\1p\212 \313h\134u \312\201(V\206!YJJ\224\324\222(\15+Q\222\205I" "\24fI\244\6p\216\33\313h\274\71R+\325\1\35\220\64)\13\223\34\251\225\224\70J\305H\7\4" "p\255\33\313h<Y)+\15wx\70%\245,)eIc\246F\265(\214f\1p\271\31\313h" "\274\71\226c\303\232\3\207\60\15\323p\30rB\22\365\244E\5p\272\35\313h\134Y\16D\71\24\17" "C\16D\361\60\204i\66\134rDJJ\225\236\25\0p\310\36\313h\374\330\60$Q\61\212\206$J" "\244$\222\222\260\32\311;\240DI\324I\213\12q!\34\313h\134\71\66\134\224\246\244\323p\310\222\306" "\244i\70\350h\224D\235\264\250\0q&\32\313h|\345(\36.Z\230\14\203V\36\6\255<\134r" " j\322\242\2q\66\34\313h|\225p\211\42\245\30\15\203R\212\63\61\213\22I\314\321$\352I\207" "\2q< \313h\134Y\234\14[UR\262\341RjI\206!\312\222,\211\222,\222\222R\226H\251" "\0qY\37\313h\134\71\226\14C\224%\231\62\14\312RQzJ\206!\12+\311 \265\305\71p\10" "qg\37\273h\34\17I\324\22\265\14IT\32\206$J\262$J\262dH\6\35N\242J\26\25q" "i!\313h\134\71\26\15\213\22\205\313\60$Q\250D\303T\214\242aiL\242aH\302(\311\304\0" "qn\32\313h\274Q\66\234\223l\70\210\71\62\14\221\22\246\303\32\246\303\230\224zq\237\36\313h|" "\265a\11\207d\210Z\242!Q\302,I\6%\21\223LZ\223ROZTq\261!\313h\134a\66" "Hi\64(\203\224DI\244$\203\224d\25m\211\22-S\342,\211*YTq\303\37\313h\134%" "-RJI\233\62\14\311\220\224\222\250\30%\265\244\26\351HO\225\212T)q\310\37\313h\134\321\32" "&R\262dJ\227\203\322\32E\203\26eQ\222\14RVI\223x\30\2q\345 \314h\134\321 F" "Y\30\15\232r\32\222^na\234\14C\224Dc\226\224\262(\322\201\20r\6#\314h\134\321 F" "Y\30\15\232\322\270\14R\222%i\62\14Y\224\324\222\26\251\62iJ\242#!\0r\65 \313h\334" "C\62La\224d\303S\26\15/Q\226\15\207$\222\262!\251%Z\64%\22\0r\66\34\313h\234" "I\216DqXN\224,\312Ja\224\3I\16\345P\22k\222\16\10rG\30\312h|Q\34\305Q" "<\14Y\16\345\320\60fa\267\64\212#\0rH\37\313h<u\244\62,\315Iy\70e\245E\252" "$J\226T\264\244\42EJ\224DI\30r[\33\313h\274\71\20\345@\224\3\7)K\303\34K\207" "\203\232c\71\226c)\0rg \313h|Q\232Di\22\245C\62(mI\224d\241R\224\222H" "\311\342(I\223,T\3ri \313h\134\325$J\223h\70$J\242DJ\242\364\264T\206\250\22" "U\242J\324V*)\0rr!\313h\134a\226DI\226DI\66$\303\220\224\262\244\224j\331\64" "ha\32\246a\232\14C\0ry\36\314h\134i\226D\303R\315\6\255\222\14\227\70T\206e\213\302" "J\30\207q\230J\0r\240$\314h\134Y\222%\311\60$\305pH\206\245XI\206!S\242$\71" "\14YT\311\222)\211*\246D\15r\254\32\313h\274\71\26\345@\26\247\303A\315\241$G\352@\26" "giI\7\4r\257\36\313h\34Q\216H\203\224UJY)+e\221\224HI\224\3Q\16Da" "T<\10r\266\33\313h|\345,)eQR\213\207A\253ja\22%QK\232d\241X\16r\302" "\36\313h\34Q\216$\303 \205\241\230%a\232\14\233\26\212Y\22\246a\32f\322\60\4r\351\36\313" "h\34Q\26*\303\220D\251RK\242\64\34.j\224D\305,\11\323\60\215T\11r\354\35\313h\34" "QUK\303\312\60hRM*\15\227Z\234%a\26e\331\60$c\0r\355\35\313h\34Q\65\211" "\342d\230\246J\217Iy\270ha\222\305Q\222&Y\244\244\2s\33 \314h\34Q\16%\311 \246" "\241XI\206!\13c-\325\304$\31\206,\351\226tQ\206\3s\37%\314h\34\221\222ER\22\325" "\222R\222\203\321 FIM\32\244$J\212\321 &QRJ\242hH\262\2s+ \313h\34Q" "\222E\311\60HmRK\62\14Q\22\225\246\212\62\14J\251%j\31\356\20\0s.$\314h|a" "\66Lj\230$\303\224I\303\220$J\224\15S\26%M\303R\252\224\222(\321\222(I\3s\66$" "\313h\34Q\222EZ\222E\303\240dI\230\14C\224tQZ\224D\232\222\64J\206!J\322i\30" "\2s\77$\314h\34Q\226*\303\20\245a\62\34\242h\20\243,\223\6)\311\244,J\242l\210\304" "()I[\2sD\42\314h\34Q\42eI\252%CR\221\243$\71Dq\230L\231\34%\311\42" "&\335\222!J\304\2sc\37\313h\134\225,J\232\232\206)K\222\341)KJ\331 \351HiP" "\242$\323\222A\15sr!\313h\34Q\22e\303!\311\222,\251\205\311\60DS\250\14\203RJ\223" "a\210\232D\61\231\6s\204\33\313h\274\71\226\16\7\61\307\242\70\13\247\34\321\261$\7\262t\30\222" "\71\1s\207\34\313h\274\351pP\343\250\223\224%Q\22%\203\224&\331pPs,\307R\0s\211" "\32\273h<\303\71\307r,\307r\340\220\3\71\226\344H\224\3Q\64\34\4s\213\30\273h<\303\71" "\307r,\307r\340\220\3\71\226c\71\226\16\7\1s\315 \314h\374@\70Hq\226\244Q\26\15Z" "\222eZ\224ha\250d\212\24\255\71\244#\62\0s\340 \313h\374@\66$\325(I\243AK\242" "l\220\322d\30\242\320\244$Z\22eR\216e\0s\355\36\313h\334\341\20\15R\322\230\64&M\203" "\62HIc\322\230%\241\22ES\71\32\2s\376\37\314h\274\303\62\214Y\64lQ\230E\303\62\214" "Y\64l\225TJ\62-*fQ\244\16t\3 \314h\374@\70dj\230\204\311\60$C\26'Q" "-\32\304lU\232\226(\322\201\34\23\1t\6\36\274h\234\303\220\14R-\31\206,\211*\203TK" "\206!\13\343h\20\265P\315\201\7t\64\36\313h\34\203\62Hi\64(\203\224FC\62\214\263&)" "\203\242\303\303\220C\71\42\2t\260 \313h|\303\220\14I\333\60h\71\62\34\244$\314\222aS\244" "DR\324$\12\243LM\1t\275\33\313h\34\17JV\31\36\242\213\222(\323EI\224iR\343\341" "\34E\303At\366\42\314h<Y\216T\6eX\342$\212\223hLJ\321\60(aR\21\223R\230" "\224\222Rr\33\3u\30\32\313h|a\32\246a\64\34\264\60\15\323a\15\323\60\15\323\60\35&\0" "u\32\33\313h\134a\66\34\262\60\35\326\60\35\326\60\33\16JT\334\246\34\34\6\5u\37\33\313h" "\274\71\20\345@\24\17\247,\15s,\7\16\71\220c\71\226\16\7\1u#\31\313h\334\351p\310\302" "\70J\207SRN\206MJ\243a\12\253\361pu(\30\273h\134\303)+e\245\341\224\225\262\322p" "\312JY%\314\324Hu\60\26\251y\34\17Y\246eZ\66\34\264L\313\264L\313\206C\0u\61\30" "\311i\234\71\222#\341p\310\62-\323\262\341\240eZ\246e\303!u\62\27\271i\34\17Y\246e\303" "A\313\264l\70\204\71\222#\71\22\2u\63\30\311i\234\71\22\16\207,\33\16Z\246e\303!\314\221" "\34\311\221\20u\67\27\272i<\303 \325\242a\220j\321\60\250\351p\10;\251\253\2u:\33\273h" "\34\327$\32\206$*\15S%j\211Z\242\322\60\345X\216\345\220\4u;\36\273h\34\17j\16\34" "\242$\252(QE\31\206D\211*JTQ\206!\321\241\341\1uL\34\273h\134\303\240EY\66\14" "Z\224e\303\240&\261&I\25\61\212\263\64\314\0uQ#\313h\134\71\26\15S%\252(Q\262\224" "\22i\30\222(\211Z\242H)%\221\22%\331\60\204)\0uT!\313h\374@\16D\321\60$=" "eI\62\14J)\33\244,I\206A)e\203\224c\71\226\1uY!\313h|: \15K\32%" "\265(\211\222,Y\302)\323\206A\213\262l\30\264(\313\206A\1u\134\36\313h\274\351p\20\243T" "\312\201$\212\207e\210\243aH\242\306a\10\243\342\60D\0u]\36\313h\134Y\234\205\203\62\344@" "\224\14[R\221*\265h\220\244\244\224\364\224\14c\65ue$\314h\374@\70HS\322TI\224R" "R\313\6)\211\222\266\244\62,JS\64(Q\216D\71\62D\0uj\35\313h\374\300\64,aT" "Mj\303A\234\225D\32\16R\343\60\204Qq\30\42\0up\32\273h<\303)+\15\247\254\64\34" "\263p\70f\331p\220BI\7\22\0us\37\313h\134\303\20F\305a\10\243\322\360\62\14\211\222&" "\321\60\204i\70\14a\32\15\7\1u\216\36\313h\374@\66\34\264j\64hQ\322\62$\235\6\245\230" "%\331\224\14Ie\214\344\14u\221 \313h<\331\260\14a\24&Y\24\211\303%\215\222!JJI" "qP\266hL*R\26\12u\253\35\313h\334\361pH\242!\223\212Q%JB\345\20%i\30\325" "B\61K\244H\24u\262#\314h\334\71\360\240\204\251\62\14Y\22\325\222(\311\224aH\272U\242$" "K\302J\244DI\42&\0u\276\34\313h\334\361pJ\342\244\16(\303&\245Z\230\14\247L\314\242" ",\12\223D\16u\305\37\314h\374@<\34\224\34S\206!\13\343d\30\42%\252\364-\351\24iR" "\65\311B\5u\307\35\313h\334\361p\312\221:\244\14C\24\206b\226\224\206(\211\302\250\30\325\242a" "\20u\330\36\313h\334\361pHrH\31\206(\307\222aR\302\244\62lI\326\224U\262h\30\4u" "\333#\313h\334\361pHrH\31\206(R\302d\30\22%\212\224d\30\242$\252D\303\220D%-" "J\4u\342\36\313h\334\361pH\262T\221\222\250%\32\206$\221*J\262\224\222\245OI\243\230\11" "u\364\42\313h\334\361pH\352\200\22\15Q\62D\221RJ\244$R\206\251%J\242D\222\262!\12" "\63\0vB\36\313h\334\361pH\262t\70DJ[\222e\303\245-\211\222A\213\222Z\22UB\21" "vR\37\314h\334\71\360RKB)\13\223\245\266T,K\337*%)KjI)i[\22\0v" "V\42\314h\334\71\360\240\304\231\62\205I\62L\311RR\262\244e\30\244%\312\242dX\242\251\26F" "\0vz\36\313h\134K\224&\265\250IK\262a\310\242J-\252\14\207\60\312\201\250\244E\363\0v" "{ \313h\134K\224&\265\250IK\262a\310r I\206!\211\322p\30\322,\7\222t\270\0v" "}\20\307j|q\32\16\203j\35\256\326a\20v~\32\273h\34\17j\16\345\310\60\204i\230\206\303" "\20\246a\32\246\341\60D\0v\204\35\312i\134YX\33\242AJ\62)\311\206%\222\262D\312\22)" "\35\324\34\312\1\5v\206 \313h<a\32F\312\220la\232(\331\20%C\230#\303\20\246\341\60" "\204i\70\14\21\0v\207\32\313h\234\71\62\14a\32\16C\230\206\303\220\23\236s\340\220\3\351p\20" "v\256\33\313h\334\71\26\17\247\254\224E\331\60\204i\230Di\224\204\325H\221\22Uv\277\37\234x" "\134\303 &Q\22&Q\22&Q\22&Q\22&Q\22&Q\22&Q\22\15\17v\306\33\313h|" "\311\234\245\265aHjQ\61\212\263\64R\207S%j\211\222\341 v\312\30\313h\134i\61\216\262\341" "\240\225\263\264\66\134\372\224\64&M\303Av\327\35\313h\234q\66\14I\224Da\224d\225\254\251\252" "\14\247J\324\22\265D\311p\20v\333\37\313h\334I\216D\321pH\302tH\242&-\212\24I\211" "\224\341T\211Z\242d\70\10v\337\37\273h<C\62D\225(\32\222!\252D\321\220\14q\226f\322" "p\252D-Q\62\34\4v\343\35\313h\34\203\22&Y\70(\303\246\16r\222\15\311\240\23\207S%" "j\211\222\341 v\344\36\313h\134\331!\351$-J<\34\242D\211\232\244h\210\224\341T\211Z\242" "d\70\10v\356\20\267j\34\7U\35\256\352p\265\16\203\0v\362\32\314h\334\351\360\224\243\303\240\223" "\206!\255\16CZ\35\206\264:\14\21\0v\364\33\313h\274\351pPK\303T\214\242a*F\321\60" "\25\243h\230rl\70\10v\370\36\313h|\71\26\15Z\224\15\203V\32$)\213\226,\251\14K)" "\223j\245\254\64\10v\376\35\313h\374\210\66\254Y<\234\262\70\31\266$\314\222a*F\321\260da" ":,\0w\1\34\313h\274\71R\12\243,\221\244$\7\342a\32\302tX\303tX\303t\230\0w" "\13\34\313h\374\210\64\14\71\20\17\7-\7\36$\61K\206\251\230\16k\230\16\23\0w\14\33\273h" "|\303T\214\242a*F\321\60\25\243h\230rl\70H\25I\313\4w\37\31\313h\274\351pPs" "\340\32\246\303\32\246\303\32f\303A\213\264U\1w %\274h\34C\62,Q\22&C\22&Q\62" ",Q\22eC\62\14R\22eQ\222EC\222%\351\244\311\1w: \313h\274I\66%Y\22%" "\225!\351\305\224DI\266\230\22\245\247$\32\222(\7\242Z\70w<$\273h\34C\62(Q\222%" "Q\62(C\222%Q\222%Q\62(C\22JI\247$\212\206dI\305\0w@\33\313h|\265\341" "\240\306\303\71\35\16Z\30\16C\226\204Q\64\254a:L\0wa\34\313h\374\300rL\262\60\31\6" "eiJ\206\227\246\244S\62\14\312\226c\361pwc\36\313h\134\71\266\14R\226\15CRJ\264J" "/\266h\30\302\64\34\206\60\15\207!\2w\254\36\313h\374\300!\231\222NI)\221\206\27YI\246" "d\210\206E\351e\70$a\65\1w\333\32\273h<\303\240C\261\222C\351pP\263TJ\223\34\210" "R-\207T\0w\342\32\313h|\71\226c\303\220Eq\226c\351pPsLG\242T\214t@w" "\345\35\313h\134\71\226C\303!)eRm\30\264RV\312\242\244\26E\303\22\326\61\0w\355 \314" "h<\71\230\15\323\220#\245!\352\32\325\206dHs,\321\302\244\224\205I\226\15\203\0w\357#\313" "h<\331 \245\341\62\14I\226DI\242I\331\64DI\230\14C\222(K)\251h\311\22\206\2w" "\363\33\273h<\303!\315\261\34\312\261\34\32\206,\11\243b\222\205i\230\16\13\0x\2\37\313h\374" "@\66,i(FI)KJKi\221\22\245\244DI\230m\71\242\3\62\0x\24\33\273h\34\17" "R\26e\245b\24\15OI\324\22\265D\321\240\305Y\32&\0x\25\37\313h\334\341\240\304\311 f" "I\26&\225%\33\22)L\206A\251\205I\26n\71\226\1x\62!\313h\334\341\240\304\321\60%i" "\222\15I\62d\311\224,\245$\221*i\224\244C\222\345\300\20x\64!\313h\374@\66Hi\64L" "\225(\311\222\322\62(J-J\22\251R\321\206HN\242\60\11\3x]\42\313h\374@\66,QM" "\311\242A\312JK\226(\311 %\265(I\6)\251EK\26G\12\0xk\36\313h\374@\66\34" "\244L\215j\321\220Dkb\251%J-QjC\322\230\264\245\2xl\33\273h\34\17R\230&\303" "\324\22\15\27S\22%\303\20%\215S\216\30U\1x\201\34\314h|a\70\34\302\362\60\207\361\60\207" "\331\360\226Di\62L\212\226\210\203\6x\221!\313h\374@\66(q\64L\225(\311\206e)-\311" "\260\224\222,)e\311\60(c\216E\0x\272\42\313h\374@\66\34\244\244\26eI\226\15\313 E" "J\62HI)K\222AJJ\331\22\345\300\1x\301!\313h\274Y\62DI\230\14C\224E\305(" "\32\24e\251(M-\211)\251(\311p\310\201(x\350\36\313h\334\351pH\242,\33\16IrR" "z\312\262\341\220Dq\64\14Ic:,\0y\1#\314h\334Q\64DI\32\15[\42\205\331\60-" "Q\246$\303\224\224\302$\31\246$\207\26\245\32%\5y\16!\314h\274Q\66\34\264\250\232,ZR" "Q\242,\12\207C\242diR\31\242\244u\331\221l\10y:\27\273h\134\303\220\263\15\7\65\7\242" "b\224EY(VsH\5y<\34\313h\134Y\234\205\203\222#u \212\245T)&\221\234\305Y" ")+\205C\0y>\35\313h\134a\32f\203\24gq\62ha\270\205J\224%a\32\246\311\60D" "\71\2yH\37\313h\134q\26\15\321\220\344H\35I\206\251m\211*\211\24F\305$\13\223,\24#" "\0yI \313h\134a\32fC\26gq\222\14Q%\134jI\224\244Q\222FI\32%i\62\14" "\1yV\37\313h\134\71\26\15\312\220da\222\225\6-\312\242%K*\303\26e\245\254\224U\206!" "y]\37\313h\134\71\26\15\312\220da\222\225\262\322 MI\224t\314\222\60\252D-Q\22\12y" "^\37\313h\134a\32f\303AKJY\62L\225(RJ\211\62\14J\230\206i\230\206\31\0ye" "\34\313h\134\265\226hH\206\255\234\245\321 m\225R\232\14C\24\246a\32f\0yh\32\313h\34" "\17b\222\16\247J\24\15wx\270\243\303A\252HZ&\252\0ym\36\313h\134\71\66\14R\245\224" "\224\302$J\302(\33\222a'<D\225\64\252EZ\2y\201\32\313h\134a\66\34$kb\223\222" "\216Q\64\14\71<\34\244&\255\252\2y\205\36\313h\134I\324\245\62$\203\230\264E\203\246\64)\303" "RL\223a\210\302\64L\303\14y\215\42\313h\134\321\240EY\62$\311\230\264EI-\31\206dH" "\225\312\22%\235\222NI\262DI(y\217!\313h\134\311\60D\71\62$\203\230d\245A\323\21e" "\30\224R\313\60DI\324\22\265\14C\0y\300\33\313h\374H\70\354H:\34\304YI$-\223\206" "\35\210\326\260\32\211\22\0y\301\34\313h\234J\270\305Y\234\205\203\222J\361RK\242\226\250\22%\311" "\220\15Y\71y\313\37\313h|R\66\246a\324\22\15CRK\42m\13\225(K\262$J\262$\214" "\262J\32y\321\36\314h|b\264Ea%\214\243A\211B-\311\224\60S\7%Z\302\70\214\303\70" "\2y\322\37\313h\134Z\66\246Q\42FIeHJ\225(Q\266$R\222)I\243$L#y\6" "y\330\37\313h|Q\70\246a\222\14Q-iS\332\206D\211\224DR\244L\211\344%\312\302\5y" "\337 \313h|\71\60\15Z\224\225\262d\70dQ\26-Y\244\14K)KJY)\253\14C\0y" "\351 \313h\134Z\66%i\224dC\62LI\24\212\341\62\14I)K\262$\314\222\60\312\262\65y" "\360\34\313h|J\270\305\321\60U\262AJCmiR\224NI\244\224\32\323L\3y\373\36\313h" "|J\270\15Y\224%\203R,.J\246DC\242eJ\242t\15\63\65Q\1z\13\36\313h|\362" "\64hQV\312\222\341\220\345\320\62HJ\224%\321\240\24\323\60M\206!z\16 \313h|I\226l" "I\30\15Z\224%\303V\32\244\315\22II\226DI\226\224Z\242$\24z\32\36\313h|QeK" "\302h\230\232\206)\214\6i\211\62E\252D\203R*F\305h\30z.\35\313h|\226i\15\323d" "xHj\321 -M\312\260\24\263$\32\264\60M\206!z\62#\313h|\332\60\15I\224%\311\260" "$Z%[\222!\261D\211%R\242dP\242$j\211Z\206\0z<\37\313h\134Z\266\14C\224" "\244Q\62,\203\22KRbi\221\246$QjZTL#\21z\77 \313h|R\266\14C\224c" "\321\240\14[i\220\224aH\206T\251,JOI\262DI(z@!\313h\134\331\64(\305,\211" "\6\245\242I\313\220#\331\220\14b\64%\231\22eI\226\204Q&zB!\313h\134Z\266\14C\24" "f\303AJ\242\212\62\14\311\20U\224aP\322(\351\230\324\42M\11zM \313h|\265e\30\242" "\60\215\6e\310\322d\30\222%\213\224a)eIi\320JY\42\6zO!\313h\134\332\60$S" "\226DI\26%\322p\310\342h\31$\71\251\14K\213\222%\235\222h\10zk!\313h\134R\22-" "\303\20eI\64$\325hX,\341\62HR\222%\311\60(Q\61S\23izt\30\313h\274\71\226" "\16\357\220\16e\311\234\305YZL\263\34Hr(zv\33\313h\274\351\360T\223j\245Z\224LY" "<\14\71\20\345@T+%\352\0zz\30\313h\274\351\360T\223j\245Z\70\345\340\60\310\71\226c" "\351p\20z\201\32\313h\274\351\360T\223j\245Z\224LY:\34\324\34JbM\322\1\1z\203\35" "\313h\274\351\360\226dZ\222%\323\220\303\321\260\14JT\214\212Q\246di$\1z\222\33\313h\274" "\351\360\226d\245!\322\221\341\240e\332\60\305\71p\310\201t\70\10z\223\34\313h\274\351\360TSJ" "C\22%\71\220i\303\24W\242\226X\312\242p\310\0z\256!\313h\274\351\360\226d\311\64h\71\62" "$\203\22\245\311\20\15I\224\204\203\62HI\272h\12\0z\257\33\313h\274\351\360\226d\311\64\204\212" "\70\234\343\341\234\16\7%J\242$\213\12z\313\30\313h\274\71\226c\361p\207\302\264\230\206q\224\3" "Q\16\205\303Az\334\33\313h\274\361p\314\262\341\240\303\303\20F\305a\10\243\342\60$i\30\17\2" "z\340\33\313h\274\361p\314\262\341 \245\341\60\204i\70\14\71\220\16\7\65\307R\0z\345\32\313h" "\274\361p\314\262\341 \65\16C\30\25\207!\7\342\341\234\16\7\1z\357 \313h\134a\232D\321\60" "\325\206A\251#\311\60(\245T\31\206dH*S\322\230\64\206\2z\366\37\313h|\265\341\20%Q" "\22\15\7\35\35\222!\252D\321\220\14Y\322\230\364$%Z(z\371\34\313h\134Y\234\305Y\274\14" "J)\311\222RK\224\206i\230\206i\230f\22\0{\21\33\313h<i\70(\203\222%i\35P\207" "\34K\207\203\232CI\254I: {\33\36\313h<a:$\203RJ\242J\24FI\216\304\303)" "+\15\247\254\224\225\206\13\0{&\35\313h<a:$\303\224Da\71\254\14C\242dQ\22\25\243" "b\32\246a(\1{,\34\313h<a:$\303\224D\331p\316\242\341\224\305\303!\24#%\334\42" "\71\5{F\36\313h<a:$\303\224D\341\60\344@\24\15\7\65\12\207!\7\342\341\234c)\0" "{I\34\313h<a:$CR\252&\305\341\234\16\7\35\10\207c\226\3Q\16i\0{K#\313" "h<a:$\303\224D\331\20\205\321\60$CT\211Z\242\226!\252DI\226DI&M\12\0{" "R\36\313h\134a\70$\303\22U\263p\70$\71R\31\226:R\31\226\306\244\62,u@{T\37" "\313h<i\70$\303\22U\223(Nr K\223%\322\1i\30\302\64L\303a\210\0{V\34\313" "h<a:$\303\224Dam\70\250\361p\312J\321\242)\211\244ej\12{\207!\313h\134a\70" "$\303\224D\331pH\262\60I\206\245\26&\311\260\64&\225a\251#\311p\10{\227\36\313h<a" ":$\303\224D\341\60\204i\70\14a\32\16C\230F\303A\253\206\31\0{\241\32\313h<i\70(" "\203\324\62\274C\322 e\345A\316\261a\15\323a\2{\261\37\313h<a:$\303\224Da\65\33" "\16I\26e\203\62e\311\64,mJV\312\6\1{\300$\313h<a:$\303\224DaqP\206" "$K\242dP\242$K\242dP\242\244\66\15Q\246%\31\0{\304 \313h<a:$\303\224D" "am\70DI\42E\303TI\244hX\322(\33\6\255\66\4{\311\36\313h<a:$\303\224D" "\321\240\14Y)\31\222\212\232\16\7qV\22I\313\324\24{\344\33\313h<a:$\303\224Dau" "\30\264\362\60h\345\341\322)i\324\1\5|!!\314h<i:(\303\324\66$\203T\311\242!\31" "\244h\213\206h\210\242!\352\323\20\325\1\5|\77\37\313h<a:$\303\224(Y\62\14R\322<" "HYR\33\16a\26F\265\70\212%\0|M \313h<a:$\303\224Da\226D\303!\253D" "\303A\252E\313\240T\206-\312J\203\2|s\33\313h\274q\26\205Q\61J\262\341 \356\310\16$" "\325\250\244ej\216\245\0|\211#\314h\134Y\222%\35\247$\224\262hP\263hP\222-\311\266$" "J\232*Y\24FY\230D\32\0|\213\36\313h\134Y\230\264.C\230%\321\240\64\325\224-\134\206" "!)eI\230\206i\230\1|\222\37\313h\134a\226\224\302-\215\206\203\230EY\64\225\224RRK" "\242$K\302j\62\14\1|\227!\313h\134\71\226\14K\242d\221\224%\303!\213\262h\311\242eP" "*ZR\312JYe\30\2|\230\35\313h\134a\226\224\302-\15\207S\32\206[\250\14K)KJ" "Y)+\15\12\0|\233\35\313h\274\361\60\350@\24\15\7\65\312\206\223\24II\247\341\24M\225>" "E\12\0|\247 \314h\134i\226\324\302e\330\242\332\60\245Qq\31&E\312\222\250\226\324\322d\30" "$\35\1|\276\42\313h\134a\226$\303\220li\64(\203\224&\303\220,Y\264\14JEKJ\203" "\26e\245H\1|\326'\314h\134IVI\206AY\242\64J\206d\230\222,\32\206D\252DK\62" "$\25\71\211\222!K\242\232\66$\0|\347\35\314h\134\331\240t\213\16Z\313\360$%%%\31$" "\245oI\267AKK\303\20|\370\33\312i\234\71\222\3Z\234\344\200\222\206\312\60Da\34\325\242," "\311\252)\0|\373\32\313h\374\300\64\354P\61\211\342(G\244h\70\304aTI\243Zs\12|\376" "#\314h\134q\230E\221\22\325\222\250\230EY\22\225\6%\252d\311\240$C\22%\305(\211\303\70" "\2}\0\37\313h\134\71\26\15\212\222FI\232\305Q\22\15\311\240\304Y\230Ha\322\246d\245p\10" "}\4\36\313h\134Y\234\205J\64(\245,*&Q\222\15Sc\244\310JU\311\201(U\0}\5" " \313h\134\71\26\15\212\222\205I\226\206\225,\33\244\64\211\262D\253\224\262$\31\206(G\0}\13" "\37\313h\134a\65\213\206A\221\262(\251%\203RL\232\22\255R\312\222NI\224U\322\0}\15\36" "\313h\134a\65\213\262P\31\206$*\15SK\213\262T\224D[\252J\65JB\1}\24\37\313h" "\134aT\134\224AL\262$\213\222R\322eXj\321\240$Z\245\24)aT\35}\31 \313h\134" "\251\26mJc\322\32%\211R\31\242aI\243\26%\252$R\242D\213\224\210\1}\32!\313h\134" "\71\26\15\221R\312\222\326(\231\222DJ\206\245\26%R\242D\225R\322S\246\204\1}\33%\314h" "\134Y\222fI\246DI\230D\305(\214\222dP\206)\11+Q\242%Q\322T\211\262\60\211\64\0" "} \34\313h\274\361p\316\201C\16\244\303A\223r`Q\206\244\224%Q&eq\12}! \313" "h\134Y\234\205\312\60(\245\70K\223hH\6%\312JI\42U*ZR\312*\221\4}\42\31\313" "h\274\351pP\323\341MT$)\224\262\341\230\264E%\255\234\2}+\36\313h|Q\232DC\224" "(i\22eIr\30\24\35\220t@\311\206cR\352\326\2}/\34\313h<\303)+\15\247\254\64" "\134\243p\322\1I\31\6)R\22I\313\324\24}\60\37\313h|\71\26\15\203\226\224\222nQRJ" "\222\341\245\26%-J/J\42E\203\226\3}\63\37\313h\134a\32fJ\62,\235J\303\322i\30" "\222\250\64\14\211V)eI\230\206\31\0}\71\36\313h\134\71\26\15\203\222EI-\252U\232\224A" "G\262a\221\62\245M\311J\331 }:\42\313h\134YT\214\222\250I\32\226(\211\222A\211\262\244" "\224IC\322)\351\224\324\242,\33\22\0}B\37\313h\134a\32.J\324\222(a\250%Qe\30" "\243$\222\22\65i\321\222T\313\201\0}D \313h\134\71\26\15\212R\213\222Zi\220\222Z\62l" "\225aI\224,\251hI)\313\206\3}L \313h\134\71\26\15\212\22\265db\226dIm\30\242" "\64\314\22eP\232\262$L\223a\10}P \313h\134a\32f\312\60(\265\64\254$\203\62\350H" "\64(\211\222%\25-)e\245A\1}^ \313h\134a\32f\312\60(\245$\214\262(\11\223a" ")fI\224\224\262\244S\22e\225\64}a!\314h\134a\34NJTK\22)\14\305$K\242A" "\311J\203\242\64U\232*Y\24fC\4}f \313h\134a\32fJ\224dI\255\62LI<\354" "H\64(\211\222%\25-)e\245A\1}q!\313h\134a\32fJ\62,\265\64\213*\311\240\14" "JS\226D\211\224DI\27%\252DI(}u \313h\134a\32fJ\224dI\255\222,\355\300" "\203\224\205\211\224DI\324\222\14I\26'\0}v \313h\134Y\234MJ)K\262\64\32\244\244\313" "\260\324\242AI\224\64ID%\12\243l\20}y \313h\134\331\240\204\231\24\15\212\16U\206C\222" "EI\62,R\246T\206\245M\311JY$}\231\37\313h\134\215QII\224^\266hX\232\242a" "\331\242dI,\211\222H\225\250\30\15\3}\232 \313h\134a\232\14\227,L\222A\313\241$\31\36" "\243,\211\22)\211\222NI\226\224j\2}\255 \313h\134Y\224U\42%\31\226d\12\243Z\222\14" "\312\60\205Q\213\62(\25\251\22\25\243a}\261 \313h\134\71\26\15\203RJZ\224R%J*\303" "K\324\222,JeI\206A\211\302\250&}\262\37\313h\134\71\26\15\203RS*J)\32\226N\303" "S%R\224\222\222HC\22\205QM}\277$\313h\134a\32\15\212R\213\222d\320\242,J\222A" "\31\244\64\32\206D))\211\22)Q\222Ha\6}\312\37\273h<\203\62$\345dPJ\203\224%" "Y\22\15[\244\311S\62\34\264\244\224H%\0}\317\42\313h\134Y\22fI\244tJ\262\250\226d" "I\62(\203\230EI\226(\221\322\213\322\26\205\22\0}\321 \313h\134\71\26\15\212\222FI\62h" "q\224$\303AJ\262(i\221\246$Jzj\323\0}\322#\313h\134a\32\15\203\222%Q\222\211" "\311\60$\245pH\6-)%\211\64$\235\222Z\224eC\2}\332 \313h\134a\32\15\212R\213" "\222d\320\242,J\222A\31\244.-\322\224$J\307\250\246\1}\340\37\313h\134a\232\14\227Z\224" "DI\230\14C\22\225\206\203\26%-J/J\307\64\314\0}\350!\313h\134\311\60D\71\242$\203" "\224\324J\203\224T\207\203\24)\211e\30\222.\246\244\224E\2}\351!\313h\134\251\26-\211\22%" "Y\62\14R\226&\311pP\342lH\22\245\247DJ\232\262(\14}\357 \314h\134a\34\15\213\222" "E\225d\30\242\254\224D\203\62hi\66(\275%\311pI\333\0}\364\37\313h\134a\232\14\227," "L\222A\213\222R\222\14\312\260\324\242A\251M\211\322\247\306\14~\1 \313h\134\321\20\246\221\222\14" "Y\22\226\206\245$\15CR\253D\211\222,\275(Q\61\224\0~\4!\313h\134\321\240EIEI" "\6)\351\26\15R\222\14\7\251e\30\224)R\222aP\302\250:~\33!\313h\134a\222%\303%" "\13\223d\320\242\244\224$\203\62$m\311\60(R\245)i\316R\5~&\42\313h\134u J\242" "E\223\222d\230\332\222D\211\6\245\230T\206d)%\211)I\244\60\11\5~+\42\314h\134a\34" "\16\211\22)YRJ\63%KJI\62\34\222\250-Q\206\245TK\272j\203\0~.%\313h\134" "ai\30$\65Q\222A\211\222\322\220$C\224(\221\22%\221\242$\203\222(\221\22%Q\313\20~" ">\37\313h\134a\232\14\227,L\222A\13+\303KV\32\224D\311\222\312\260\324\242,\21\3~A" "\36\313h<a:$\303\322\224\14KO\322\60D\332\222\3Im\70&MR$\247\0~J\37\313" "h\134-Q\313a\223\242\251-\31\226aiJ*J\262(=%\311\60$Q\30\5~T \314h" "\134\255\303 )J\223\322:\34\222b\66\14I-\351e\220*-R\222\14Q\326\2~U!\313h" "\134Y\222E\303 e\241\64HI\226\15\7\251\322e\30\24\35H\222a)e\245A\1~m!\313" "h|\265\341\240\325\206\227(\211\226d\30\222(I\206\7)))C\222\14I\305\224H\2~p\42" "\313h\134\331\230%\221\22mI\16%\227D\251\14\203\62\205Y\222\14\203R\231\222(\251%Q\1\177" "\66\33\313h\134\71\226c\303 ei\230\16\7\65\316JY)+\15\247\34H\0\177j\35\273h<" "\303\251\22E\303\65I\207dH\223tH\206\64\11\207h\320\242\70\13\1\177n\33\273h<\303\251\22" "E\303\71\35\16j\234\14[\22f\311\260%a\66\34\2\177p \313h<\303!\211Z\206C\16O" "\321p\312\201(\31\224(\7\242dP\242$\13\223A\23\177r\33\313h<\303\251\22E\303\71\36\316" "I\66\34\264a\24#eX\303t\230\0\177w%\313h<\303!\211Z\206C\26\305I\62$\203\222" "%Q\64$C\222FI\42\15\211\30%Y\222HC\0\177\205\37\273h<\303!\211Z\206C\224\64" ")\321 %K\64(\203\224\64%\322\260t\314\6\1\177\212\30\313h\134i-\33\16j\216\305\303\71" "\307\322\341\240\346X\216\245\0\177\216\31\313h\134i-\34\316\71p\310\201x\70\247\303ALbM\322" "\1\1\177\244\36\313h\334Y\62(\265hxH\302\250\66\34\242\64\34\242L\32\26\251%*\16Q\4" "\177\251\34\313h|\305\341\220\346\300A\216\207C\26U\206\203V\211\6)\311\42E\222\3\177\275\33\273" "h\34\17b\232DI\26%Q\61\315D)\311\222)\221\302\64L\63Q\177\301\37\314h\234Q\16$" "Q\32e\221T\222\206!G\243\341 uK\262$\273H\211\24Z\0\177\314\34\273h\34\203\62(Q" "\227,\231\22)\23\325x\70f\71\20\345@\22\16\7\1\177\322\35\273h\34\203\62(Q\323\66H\211" "\224\211b\216\14C\230\206\303\20\246\341\60D\0\177\373!\313h|\362\62\14\311\26\15SII\224D" "I\224%\214\206EY\22\313\60EJ)\32\26\3\177\374\36\314h\34\17Y\224Da\22%\331p\214" "\252\303\220F\305\341\232\205\303[\246\315\12\0\200\1\31\313h\274\71\26\17\347$G\304\341\240\351H\311" "\264#\71\26\306\203\2\200\3\33\313h\274\71V\33\206\34H\262\341\240\346\320\260\315\322\240c\71\226#" "\32\0\200\5\34\313h\274\71p\310\201(\7\222l\70\250\71\62\214b\244\14k\230\206\351\60\1\200\20" "!\314h\374P\64\210\345hxH\212Q\322T)%QRJ\242\244\30%\305()F\221&\1\200" "\25\42\313h\134Y\224\225\222A\211\262hX\206$\312J\311\240D\221\62\14\311T\351\224\224\262J\230" "\0\200\27\36\313h\134\251\62\14j\230\15\322\20E\333 \245\341\220\34\225(K\302H\11\243\352\0\200" "\63\30\273h\34\17R\230\206\351\260\206\351\260\206i\70D\303\66\346X\6\200V\35\273h\34\17J\224" "d\311\220dI\224d\303\62\210\71\360\220\346\310\260\3\361p\10\200^!\313h\34\203\62lI\66," "\303\226d\303\62\354\220\62\14\211\224E\322 IY\244\14\223\234\10\200t \313h\374@\66\34\224Z" "\70\34\222D\351\242\264\14\207\244\224&Q\22\15\211RS\262\232\22\200w\36\314h\334Q\64\34\244\244" "\377\66\34\224j\266,\375\227EZ\22%Q\222!\11\263\2\200\211\33\313h\274\71\226\16\217\241\226d" "\212\246\210\241\30jI\246h\212\16\351\210\0\200\214!\313h<\207,)eI)KJ\331\22eI" ")KJ\331\22eI)KJIEK\224Q\200\226\22\307j\34Q\245\224\64f\303\240\16\327\341j" "\24\200\235!\314h<C\62H\265\60\312\302(\13\207\203\22ea\224\205C\26FY\30ea\224\225" "\264\14\200\242\42\313h\374@\70Da\64\14IT\34\242\60\32\206$J\242hH\242&-\212\264(" "\211\222h\14\200\245\33\273h<\207\245S\322)YJIeX\232\227\70)'\305\244Q\221\6\1\200" "\251\37\273h<\303!G\207C\222#\311pH\252Q\62\14Q\222F\311\60$Q\32\206\12\0\200\252" "!\313h\334\341\20\205\321p*\16Q\30EC\22\265\14Q%J\262$J\262$\22\223D\223\0\200" "\257\34\313h\274\71\20\15a\224\16\7\35\36\206\60\15\207!L\303a\10\323\60\224\0\200\262\34\313h" "\274\351p\20\243\70\332\6-\33\206\60\15\207!L\303a\10\323\60\224\0\200\272\36\313h\374@\270\205" "\311\60(\265p\13\223dX:%K)\351\224tQj\25-\3\200\303\31\271i\34\17Y\66\34\264" "l\70$i\64\14Q\32\15C\224F\241\2\200\306\37\273h<C\62D\225\250%\212\206d\210*Q" "K\24\15I\324\62Du \212\243a\20\200\314\36\313h\234I\70(\221\230\214K\66EC\64\14a" "\32\16C\230\206\303\20\246a(\1\200\316$\313h\374@\66d\245J\324eH\242!\32$)\7\206" "dP\242$K\242$K\242$K\22eP\0\200\336\35\313h\274\361\22'\311\260$jrH\32\223" "\306$\71$\235\244\244\234\24\25i\20\200\364\35\273h\34\313\60(U\245rHR\245\262(]\206\244" "E\251,JU\251*E\1\200\370\37\313h\274\351\224&\321\60$\325AL\224\304\245\313\220\270\324\22" "%\31\24%\7\224T\1\200\375!\313h\134Y\234E-\323\220\350\220\226\14\321\220DI:$Q\313" "\66$i\224dI\42\15\1\201\2$\313h\334\351\220D-[\224\244C\222%Q\64$Q\16\14\311" "\240DI\226D\311\240DI&)\203\0\201\5 \313h\274\71p\310\201(L\42iP\6)\211\242" "E\211\244a\10\323p\30\302\64\14%\0\201\10\37\314h\374\210\266\254I\61J*\333RK:U*" "\333\222\210I\267\244[\322\224$S\26\201\32$\313h\274\351\24\15\311\60$JT\31\242\212\62\14\211" "\22U\206\244E\251\14I\62$R\222FI\32\1\201\61\42\313h\274Y\64\265DI\226$\203\264d" "QR\213\222d\220\246$K\242$K\242\244\247\304\222\11\201\63\42\313h\334\331\220D\221\22%\235J" ";\322\226(\311\222\14I\24)]\224DJ\224\252\222\14C\0\201\71\36\273h<\7))'\311 " "-q\222\14RR\36\16IOI)K\222\245\62\204\1\201P\36\313h\274\361pH\242\254\62\14\212" "\322\26EZ\62\14Q\22\265\134\242\226h\31C\5\201U\37\313h\374@\66f\311pH\344!\71$" "]\224.\203\242\14I\226DI\324RK\254\2\201p\37\273h\34_\262$J\222\341\220\264(\311\60" "(Y\70\274D-\211T\311\264$\221\24\0\201x \274h<\7-\251U\222A[\262\312pi\7" "\36\242$JJ\311\22%Q-I\224H\2\201y\42\313h\274\361\62,\311\26%\311 -Y\224$" "\203\224D\351\64DI)K\214I\224D\311\220\11\201\232\35\313h\274C\16\344\300S\343p\222\262h" "\70%a\226\14S\61\212\206%\13\23\0\201\234$\313h\334I\66\34\222R\222%\311 -Y\224$" "\203\224\324\242e\220\222,L\206A)%Q\242d\2\201\250\37\313h\274YrJJ-\303\64\344\200" "\222LIO\313\246h\221\322\224T\226(\321\62\0\201\323\42\314h\334Q\66\34\224R-I\263e\30" "\222\312\222%\265$\271HI\267dP\244dJ\26e\13\201\343\31\272i\34\17Z\232\245\303%\7\222" "\34H\206K\226fi\226\16\207\0\201\350!\313h\274\351\220\244I\64\14IyH\6%J\262$J" "\6e\310\201$\71$]\206\245q\31\201\352\22\307j|i\70\14\252:\134\325\341\252\16\203\0\201\355" "\31\312i|\71p\310\322l\30\262\64\33\206,\315\206!N\207C\344,\201\363\27\273h\34\17j\16" "\225\243m\320\342,\32\316\71\226c\351p\20\201\364\36\313h\334\341\240\304\331\240DI\224\14[\245\224" "U\242A\22\253Y\22*Y\42\245\1\202\10\37\313h|\71\242\14S%\212\206S%*M\321\220\14" "Q\64%\303A\214\342\60\223\23\0\202\14\33\313h\374\200\66\354P\216\245\303A\315\261\34\70\204i\230" "\206i\70\14\21\0\202\16\33\313h\274\71\224\304\232\244e\322\60\344@<\334\11\207\60\15\323p\30\42" "\0\202\27\36\313h\134a\222iQ\62\34\224R\66\34\244J\64\274&QrX:%\235\222\245\42\202" "\36\37\313h\134\71\66\14\222\322\224\14\247\244i\70Hi\270\14J\224\224\22e\230\322H\216\0\202\37" "\35\313h\274\71\62\254a\232Di\224D\303A\13\323$\12\263$\314\222,\216b\11\202* \313h" "|\325\60\34\16I\35\231\266$J\242aH\262$J\262%\312\222RR\321\22\253\0\202,\35\313h" "\134\331!\251EIM\351eZ\242x\70D\305HiK\244\60JJ\321&\202\66%\313h\134i\66" "Da\224\14\212RK\22%K\242$\33\226A\211\222,QjI\242dI\224d\222\62\10\202\71\42" "\313h\134Y\222\15I-JjJ\251\62&Q<\34\242J\24)\245\212\22\265DI\244\14\11\0\202" "G%\314h\134\71\220%\303\66%a\22%\341\22\205\311\60(C\224\204\211R\34\222bR\31\242$" "Q\223i\20\202f!\313h<\321\22-\331\220$K\264$Z\222\214\203\66$\311\270#\225a)%" "\235\222.\303\20\202o\26\312h\234\71p\354\70\214\305aL\263$\12#u\212V\1\202r\34\312h" "|\71\64\210Y\246\245\303 \325\242Z\64\14R\16\345@\222\3\321\60\10\202\213\31\313h|\265\341\240" "U\207!\7r,\35\16j\216\345X\216\345\220\12\202\235\31\313h|\265\341\240\225\223:\22\17w(" "G\324D\7t$R\323A\202\261\36\313h|\345,\33\16\232\224\3I\16DY$%R\22iQ" "\35\210\262RV\33\2\202\263\31\313h|\265\341\240\325\221t\70\210\71\226c\203\234\245a\65\22\65\0" "\202\270\31\313h|\265\341\240\225\263p\270\243\303A\315\241r\264\15Z\216%\0\202\275\33\313h|\265" "\341\240\25\207C\24\246a\66\34\324$\7\242T\313\324\34\322\0\202\327\31\313h|\265\341\240\225\263p" "\70e\245\254\64\234\262RV\312J\303\5\202\345\32\313h|\265\341\240\325\201\34\213\207\203\230C\303(" "fI\30\25\323a\2\202\346\32\313h|\265\341\240\225\223:\222\16\7\65\307r\340\20\246a\32\16C" "\4\202\361\32\313h|\305\341\230\324\221\34\70\204Q\61*\15\7\65\207\222X\223t@\203\2\32\313h" "|\265\341\240\225\223Dk\32\16I\230\206QU\13\223\266lR\3\203\16\33\313h|\265\341\240\25\207" "A\215t@\7$M\213\16C\16\344X:\34\4\203\66\32\313h|\265\341\240%u \211\65I\313" "\224\341\234#\255QI+\247\0\203I\33\313h|\265\341\240U\207!L\303a\10\323p\30r \35" "\16j\216\245\0\203R\33\313h|\265\341\240\325\221t\70H\71\70\14YT\214\212Q\245\26%:\42" "\203X\34\313h|\265\341\240\225\263\64\13\223,\35\16Q\226ja\222\305\311\260\345\10\0\203w\37\313" "h|\265\341 Fi\216\15\227\70K\206$R\242$K\242$K\206$\213\263T\2\203\312\35\313h" "|\265\341\240Usl\270dQ\42%\245d\70\204[\245\224H\225\64R\0\203\314 \314h\234Q\70" "<F\351p\210B\251\62FY\30\15\207(\332\242%Q\242,\214\206C\2\203\323\33\313h|\265\341" "\240U\207!\214\212\303\20F\245\341 \316J\42i\231\232\2\203\334\33\313h|\265\341\240E\333 \205" "Q\65\251#\351p\20g%\221\264LM\1\203\357\31\313h|\265\341\240\25\207[T\32\16R\333p" "N\207\203\232c)\0\204=\35\313h|\265\341\240%\305$\31\302\250-\21C\35\220\302\341\22eQ" "V\312\6\11\204I\35\313h|a\64\34\264j\224d\303A\252\244\303\220\3\351p\220\224D\322\62\65" "\5\204W\34\313h|\265\341\240%\305a\320\1q\70\210\71\64\214b\244\14k\230\16\23\0\204l\34" "\313h|\265\341\240\325\206\203\224\205\203\62dIm\220\6\255\66\34\264\242\230\1\204\270\35\313h|\265" "\341\240U\207!G\262dI\306\244\32\225\224A\321\321(\211\222,*\204\304\36\313h|\265\341\240%" "\265\341\240F\341\242\3R\64\34\262\250\22\15C\30\25\207!\2\205\65 \313h|\265\341\240U\242\341" "\220\244a\62(Q\322)\31\224(\211\222,\31\222\276LC\26\205\204\35\313h|\265\341\240EI\24" "\15\203R*\16C\22\65\15\207\60k\252\3Q,\1\205\246\37\313h|\265\341\240%\305\341\220DI" ":\234*Q\64\234\222\34I\206SRR\242H\1\205\252\37\313h|\265\341\240U\343aH\266(\11" "\207\203\26U\206!\312\226\250\22U\242$K\0\205\253\32\313h|\265\341\240\25\207s:\34\244\306a" "\10\243\322pPJ\225,*\205\254\35\314h|\305\341 &\325dPB\315\62(b\26\16\217;\240" "$\232\226\311\61\0\205\351\36\313h|\265\341\240\65\15CT)\16\207,\251%\303\220%=\15Z\224" "\224\262A\2\205\373\36\313h|Q\70\34\264d\13\223p\70&\235\226)\314\201C\226$b\22%J" "\32\2\206P\37\313h\274\71\66\310\361pH\262\60I\206\255)\31\206(\311\221d\30\222(\307\206!" "\1\206Z\35\313h\274\71\66\344@<\34\222(M\206A\213\302(\33$\245-\261U\322\341\20\206\134" "!\313h\274\71\66d\303!I\246,\33\262d\30\242$j\31\206(\211J\303!\311BIS\0\206" "^\37\313h\274\71\66d\303!\311J\311\60DJ\226)\203\66\14a\32\16\7\255\224\250\11\0\206k" "\33\313h\274\71\226c\361\60h\245\254\224\15\203\16\344X\224\3Y<\34\324\0\206\212\32\313h\134a" "\32\246\311\360\22%\235\222\236\6I\324\322$\22\227\222V-\206\225\31\273h\34\17j<\134\223XI" "\244\341 \65\16C\16d\361pP\3\206\307\35\313h\134a\32\246\321\360\250$\242\322\70(\211RS" "\245\70\251EK\66EC\0\206\315\35\313h<Q\26F\305(\311\206\307P\31\206$j\214\212\303\220" "\3Y<\34\324\0\206\356\36\313h\274\351p\220\222\266(\211\222\250-\222\207!\214\212\303\220\3Q\16" "\14\312\240\6\207\215%\314h\34\247\34\14\207,\214\222A\32\222v \251\14\7%Q\242L\231\244d" "\210\222R\22-Q\62D\1\210@\32\273x\234\71\226C\71\62\234*QK\324\22\265D-QK\224" "\14\7\1\210F\34\313h\234\71\360T\211Z\242d\70hQ\34e\211\264\244I\65*i\231\232\2\210" "L\35\313h\134\71\26\15R\216%\71\20\15\203\224\206i\246FI\32\246a\32\206\22\0\210S\37\313" "h\134u R\226,\311\222\341T\213\62)Q\22\251\322)\351$eQV\312\42\5\210W\42\313h" "\134u J\206$\31\302$J\206\250\26%\203\22e\25eP\242\254\224-Q\42F\261\2\210[ " "\314h\134I\16\15\312TI\223a\226\206%\31\242Hk\31\242,\251e\303\220d=I\0\210]\42" "\314h\134\221\16\14\321\224\305\311\60+\321\220$\203\22)\335\222A\311\272\14Q\226-Y\62I\0\210" "a!\313h\134u \271\224\302hP\225dH\222AI\224N\311\240DY)\31\224\250\22UB\5" "\210c\33\313h\274\71\226\16\7\61\307\264\60\311\62)\211\224(\7\262\70L\267h\16\210h\31\313h" "\274\361p\216\207s:\34\264$\12\245$R\42\71\213\247l\25\210p\34\313h\274\351p\320\341a\10" "\323h\70Hi\70\14i\222eR\22)\213\250\12\210w\31\313h\274\351pP\343\341\224\225\206s\16" "\205\231\224DJ\26O\241*\210\213\34\313h|I\71\211\302lP\206\61\11\323JT\33\36\302$\312" "L\312\24\252\2\210\253\37\313h\134a\32fC\62lI\251\245\226\14\323\222%\225%\214\22\61\211D" "\251\226\210\1\210\301 \313h|\225hP\242\254\66\34\264\332\60(Y\246DKT\251\205Q\242DR" "\244Ha\0\210\302\35\313h<\203\30\205Q\64$Q\42%\221\251$o\331\360\20&Q\66\231\226P" "\25\210\305\35\313h\134Y\230d\351p\210\262T\13\223d\230\323\341\240)Q\226D\246%\34\5\210\317" "\33\313h\274\351p\220\32\207!\214j\303\71\35\16\222\222%J\224\244\213\266\12\210\325\42\314h\134Y" "\222fQ\64(Q\232\64\226\223\306%\213\222d\30\62%K\242Z\30ea\64H\0\210\334 \313h" "\134a\222\205\321\240\14[\65\32\246D\211\222\303\220$JT\32\246J\324\22\265$\2\210\370#\314h" "\134\71\30\15\313\220\224\302d\330\242$\312\222a\210\266\60I\206A\312\326()&Q-\14\1\210\375" "\36\313h<\325hP\232\262$\32\224R\322)\331\302$R\206\203(\205\222\246,\242*\211\7\35\313" "h\134u \32\336\302d\320\242\254\62LS\230T\206,*&\211\32)\341(\211\20!\313h\134\321" "\240EY\62$\203\230d\245AK\252\313\60$\211\224D\312\324%\312\226(U\0\211\22\37\313h\274" "\351p\320r,\31\264(\213\224aP\62%\213\222(S\242hJRI[\5\211_ \313h<Y" "\224%\303A*&\303\246DIi\30\22\35\31\16JT\211\272\324\242$\324\0\211r!\313h\134\331" "\64(i\22\15\311 F\225!\32\222\64J\206(Q\262\341I\211\24%R\267\1\211\177\30\253x\34" "\17b\222#\325\341T\211Z\242J\66\311Q\16D\303\5\211\201\31\273h\34\17b\222\16\247J\24\15" "\327x\70he%\207\306!S\0\211\206\36\313h\34\17b\222\16\247J\24\15\267$\7\242aP:" "F\203\224h\221(&\323\0\211\207 \313h\34\17b\222\16\247J\24\15\207(\211*\203\62DIT" "\31\224!\351\64\234\262(\22\211\213\34\273h\134\303\20\246\341\60\204i\70\14a\32\16C\234\344@\224" "EY\266\16\1\211\217\37\313h\134\321\240EY\62l\245A\213\262d\70dQV\32\64)\311\242\244" "VJ\264P\211\226 \313h\134\71\26\15\312\220da\62hQV\32\244%K*\303V\11\263$\214" "*Q\22\12\211\232\36\313h\134I\226&\265\341%M\224aH\242\64\34\206\60\15\207!Nb)[" "\207\0\211\247 \313h\34\203\22F\321pP\243h\70\344\310\60\204i\70\14a\32\16C\222)\331\20" "\16\1\211\252!\313h\134\321\240\14[\224$\203\224\324\222\341\220EY\62l\321\62HJS\322\61\252" "DI(\211\263$\314h<\341 \15[\224DY\64\34\222n\321p\210\222(K\206\203\224dI\66" "(\265$\252$\203(\211\322\33\312h\234\71\62\210Y\66\34\242Z\64\14R-\32\6)\216\342(N" "b\1\211\343!\314h\134\71\70\234\272D\265h\220\264\244\62D\303\22&\245p\70(Y\24fQ\226" "I\31\0\211\346#\314h\134i:Da\224\225\242A\32\226R\222(\245\341\20%\245p\220\264R\22" "e\321\222\15Y\0\212\0\30\313h|\203Nx\320\11\203N\33t\322\60\204i\230\206\303\20\1\212\2" "\33\313h<::\34\264\34\13\267\34\13\267\34\313\206\254\224\225\262l\210\64\0\212\10\34\313h<[" "\216e\203\224c\341p\310\201p\313\261l\310JY)\313\206,\3\212\16\36\313h<j\216EC\30" "\17C\62\306Y\266D\71\20EC\30\25\243b\64d\22\0\212\23 \313h<S\26'\311\260\64'" "\225))'\225))'\311 %\211TI\244$\34\224\60\212\27\35\313h<\252:dC\224c\351" "\224#\303\220L\71\26\16Q\30\325\244\332\240\15\1\212\30\37\313h<;:(\203\230c\321\20\346\300" "\20\15I\216\205\203\22fI\246%\331\60\15\1\212\37\37\313h<\323\216E\203RG\242h\311\322\250" "\262\345P\22\15Q%J\42%\32\244A\16\212*\37\313h<Z\216\205\303AN\247\34\33\242\251\16" "D\311\220dI\224dI$&C&\1\212-\37\313h<\207\34\210\242!\211\222\64J\222!T\7" "i\215\243h\210\222\250V\252D\303&\212\61\35\313h<K\216\245C\62\250Q\270\345X\70\34r " "\33\262RV\312\262!\313\0\212\63\37\313h<;<\34\222,\316\222i\220\223lJr\244\64DI" "T\311\222(\311\222A\15\212\64 \313h<k<DC\222c\361\62\254Q\266D\71\220HC\22)" "Q\22%\222\26\15a\4\212: \313h<b\216eC\224\344@\226,Q\71J\26)\207\262!\321" "\244\64\211\62iHD\0\212<\35\313h<::\34\264\34\13\227:R\134\222\71\311\206\244\26%\265" "(\251\15\7\1\212P\36\313h<S\216\205\203\62\310\342R\7\242!\331r,\33\262A\312JY\66" "d\31\0\212T!\313h<;:\34\244:\20%S\226F\322\220\243\203\62$Y\22%Y\22%Y" "\62$\203\0\212U\37\313h<::\34\264$\215\222hIt \11\207C\16dCV\312JY\66" "d\31\0\212^\35\313h<;:\34\324tH\222\71\35\222d\211\222\64J\6eH\244X\212\7U" "\212`\36\313h<\223\16FC\262cQ\262\255\203\66\355\210\222\14I')\222\262l\210\64\0\212f" "\35\313h<\252\16%\303\26\17C\62\306\203\66%\71R\32\242$\221\42e\332\206\71\212i\36\313h" "<[\216\14\312 \345X\70\34r$\33\16\71\22\15I\324%*FC&\1\212p \313h<[" "\216e\303A\7\302-\7N;:(C\222%Q\222%Q\222%C\62(\0\212q \313h<\243" "\274\15Y\216\205\303!\7\302-G\6eH\262$J\262$J\262dH\6\5\212r\37\313h\134[" "\216E\303A\7\302-\311\201(Z\22\35\252\14IT\222\262\250\22\15[\0\212s\36\313h<K\226" "\3I\64$\303\16\204[\216\14\322\226c\331\360\224\225\262l\310\62\0\212\207 \313h<b\16<H" "I\16d\311\222,\71\70\15:\20\16\321\220Di\22\245\311\220I\0\212\211\34\313h<Q\230E\245" "\341\240U\23)\33.\71\224\15:i\30\302\64\34\206\10\212\214\35\313h<b\216e\303A\7\302-" "\7N;\234(C\242$\222\222I-C\266\0\212\215\37\313h<;:\34\262(\226\222M\211\263d" "\211t \34\242$\252(\211\244d\203\66\4\212\223\34\313h\134\361\60$c\66\234j\245H\31\222\34" "\35\16:<\14a\32\16C\4\212\225\42\314h<\262\270LS\226\3IM\211\222tI$)\251&" "M\213RJ\242aP*\342\20\16\1\212\230 \313h\34\343\274\15Y\16<d;\220T\16J\234D" "C\224(Q\222%Q\222%\203$\1\212\236\42\313h<;\70,C\224#\203\266D\71\20e\303!" "\7\207dP\242$K\242$K\206dP\0\212\240\37\314h<\252\216%\311\20\346\300!Y\262\34X" "\262\245k\322\262\224*M\225^\206d\13\212\244\36\313h<\332\220&Q\62(Q\232\14\321\220c\303" "\264\346X\62<U\242.C\22\6\212\254\42\313h<R\226\3Q\62DI\16\14\322\222\305Y\264\14" ":\220DC\224D-\211\224D\311\60\12\212\255\35\313h<b\16<h\71\62H;:,K\30'" "\311 %QKT\211\222a\33\212\262\36\313h<\207\65\211\6eX\223(YJ\351\260l\71\360 " "M\225NR\64h\31\0\212\277\35\313h<::<\25\207!Q\242\342\60$J\32&\207\245\42)" "\25I\71\214\2\212\307\36\313h<b\216\264\14I;\22NI\254$\312\226#-C\322\251\22U\262" "dP\3\212\313\42\313h<b\216\14\7)G\6i\313\201C\262d\361\240\14I\226D\311\240DI" "\226\14I\244\0\212\326 \313h<[\16%\321\20%\71\220E\303\240\344\350p\10\223\312\360\20)\25" "I\251\14\243\0\212\355 \313h<b\16%\321\220db\62\355\350\222\14I\307%\31\222\26%Y\22" "\245mHJ\2\212\356#\313h<J\35\22\207h\220\23i\211\342(\211\206$\313\301!\31\224(\311" "\222(\311\222!\31\24\0\212\370\42\313h<S\16\15\312\20\325\201$\33\16q\272\14\252\226\14\311\240" "DI\226DI\226\14\311\240\0\212\376!\313h<Ry\70(Q\216\324\246\34\31\206d\312\261!\31" "\22)\211\224(\211Z\206hH\0\213\0\35\313h<R\226\16\7%\213\7e\312\342A\31s\340A" "\232*\235\244h\320\62\0\213\1\36\313h<\7\71K\206C\234E\313\240\3\351\64\250Q\62(\223\245" "\42E\313 *\0\213\4\37\313h\34KS\222\14K-L\206\247\226\212R\221\207dX\352HeX" "\32\223\312\260\0\213\31$\314h\34S\26\17C\62DI\16\34\222-\251\16\7-\251\16C\62DI" "\26%\246Hi\31\242$\3\213\33\37\313h<S\222\3\17J\35\270LI<\14\311\322<(C\322" "i\70%Y\62$\221\2\213\35\42\313h<R\226N\311\240D\351pHJ\351\224,\211\22\16\211\62" "$R\22)Q\22\265\14\211\5\213!\36\313h<\262\70(\303TM*[\22\17\207\60\7\36\302," ")EJ)\32\222a\10\213\71\34\313h<Su\70H\345AZ\232\7i\313\201\313\220\225\222A\211" "\262l\70\10\213X\36\314h\34Z\24\17\211\264tMj\303;\222-K\65i\271\364\251\222,\322&" "%\0\213\134#\313h<R\226\3I\64\34\304\244\62D\212:\34rxP\206$K\242dP\242$" "K\206dP\0\213f \314h\134I\24\16\313\240dZ\62$mII[&Q\7\36\322!\36\6" "\61\16\207A\2\213p\42\314h<Sy\30\222!\313\241A\333rd\30\242%J\322\341%\222\242!" "iJ*\312\60&\0\213r\37\313h<b\16<HI\16d\321\220\64\16\323\224\304\303A)I\223" "\22%K\62\214\1\213w\37\313h<Z\22\17\7)\311\201\313\242\304\311\240LI\16<$Y\22E" "SK\64l\2\214\67\32\313h|\345\260\224EY\65\311\201,-\15\7)\15\323\60\15\207!\2\214" "F\30\272i\34\17\71\70\14R\34\305\321\60HiX\215r(\33\16\1\214J\35\313h\234I:\234" "*Q\64\234*Q\62\34tx\30\302\64\34\206\64\313\206\203\0\214Z!\274h<\303!J\262\64\211" "\324AQ\242$J\264d\12\267-\211\222R\62U\212Y\42\211\0\214a\35\313h|C\70\345\300!" "\214\212\303\220d[\62\15\251\42JJ\252D\221VT\1\214j\32\313h\274\351p\320\6\71\313\206w" "(\32\206\70\211\242\263R\332\242T\4\214\235\32\271i<\303\20\245Q\32\15C\224F\303\20\245Q\32" "\15C\246H\252\0\214\236\32\312i\234\71\64\250\361\60di\66\14Y\232\15C\226f\303\20Jf\1" "\214\240\33\312h\234\71\62H[:\14Y\232\15C\226f\303\220\245\331\60\204\212\264\12\214\241 \313h" "\374P\64\204Q\61\32\16I\24FC&\325\244\226hH\242,\321\242\254\222\3\12\0\214\242\33\273h" "\134\303\220\3\351p\220\322p\30\302\64\34\206\60\15\207!U\264U\1\214\247\36\313h\234I\16d\351" "\60DZ\222hR:\14a\32\16C\230\206\303\20'\342\250\0\214\250\36\313h\234Id\232\224(\213" "\206S\32\16C\230\206\303\20\246\341\60\204\232\244\3\11\0\214\251$\273h\34C\62\14Q\222\16I\32" "%\203\62$Y\22%Y\22%R\62$\211\226\224\262\250RJ\264\0\214\253\33\273h\134\303\20F\245" "\341\240D\305a\20\323p\30\302\64\34\206T\322d\1\214\254\33\313h\274\361p\316\201C\16\244\303A" "J\303a\10\323p\30R)T\25\0\214\257\35\313h\374@\66<\251R\16\14\311\60DY\66d\245" ",\33\262T\13\243Z\252\1\214\264\33\313h\274\71p\10\243\322p\320\341a\10\323p\30\302\64\34\206" "\64\63'\0\214\267\32\271i\34\17Q\22\15\207$\215\206!J\243a\210\322h\30\262L\221\3\214\270" "\34\313h|Q-\31\16Y\34F\325i\30\222(\15\207!L\303aH\63i\26\214\273\34\313h|" "\265\341\20%Y\222\14\7\255\24\15\203\226\206\303\20\246\341\60\244\231Y\214\277 \313h<C\62(i" "\224\324\242dH\242!\322\201C\230\206\303\20\246\341\60\244\212\250*\0\214\300 \313h\134\71\62(\203" "\224\324\222(\311$e\220\206!L\303a\10\323p\30\322,[\25\0\214\303\35\313h\134\311\260\205\341" "pP\302\64\32\264a\10\323p\30\302\64\34\206T\21U\5\214\304\42\313h\334\341\20\205\321\360\24F" "\311\240DI\226\14\207$J\262dH\6-\312\242\244\226\204\221\2\214\307\36\313h<Y\16D\303\30" "%a\244F\221\62\134\242\64\34\206\60\15\207!\325\62\71\1\214\312\36\313h\374H\64\204\211\64\234\302" "h\210\222D\252$\303!\221Z\206\250VYJ\326,\214\323\34\273h\34\237\222(\211*\25i\213\206" "!\31\322p\30\302\64\34\206\64\223f\1\214\333 \313h\134i\66$C\226F\203\62(\265\244\62\14" "I\224\206\303\20\246\341\60\244\222&'\0\214\334#\273h\34C\62(Q\222%Q\62(C\222%Q" "\62(C\24F\311pP\232*QR\312\304H\1\214\336\34\313h\134\255Imx\32$)\213\242a" "\10\323p\30\302\64\34\206\70\21G\5\214\340\42\313h\374@\70Da\64\14\311\240E\225\332pH\242" "\34\210\222!\32\222(KJ\65)I\207\4\214\342\36\313h\34_\262(\31$)\213\222d\30\262h" "\30\302\64\34\206\60\15\207!\225\244Y\214\346#\314h\374\220\62$K\42\245Q\64<dITi\32" "\222d\252\64U\232\206$Q\242$\231\222L\15\214\352\35\313h|&M\34\222A)%Q%\12\207" "!L\303a\10\323p\30\322\314\234\0\214\374 \313h\274Q\64<%Qi\30\222!\211J\303K\247" "dP\206\244-\31\206\244-\11#\5\215\10\42\313h\274Y\62DI\24\15\17Q$\15\17Q$\15" "\247$K\206d\320\242,JjI\70(\0\215d\34\313h\274\71\226\3\207\34\310\261t\70\210Q\232" "DI\226D\225\250\255\232i\0\215f!\313h\134Y\234\205\203\62HY\224EY\62,\245$\223\24" "-R*Z\322)\211*\211\22\6\215p\32\313h\274\71\26\17\347\34K\207\203\232\3Q\16D\203\246" "\304\221\232\16\2\215t\36\314h|u K\7%\7\262pX\344,\311\222%\252dQ%K\267\64" "\222\323a\215w\37\314h|\71\30\15\331\240\245\245\341\220Fq\22\305\311\220ES\26%\331\220dr" ":\14\215\205#\314h|\71\230\14\323\20\25\263(\31\224DMr \211\6)\31\262h\312\242$\32" "\224LN\207\1\215\212\42\314h|a\34&\321\220\14b\224d\303\220\24\243\244\224\14Q\226D\311\264" "L\225\70\311\344t\30\215\243#\314h\134\71\230\14C\62$\345h\330\242$J\206K\26%\245Di" "Z\6\245\61J\42)\14\207!\215\263\33\273h\134\303\240\305Y\234\15\203\234\3Q\16D\203\26\345\200" "\22Gc<\4\215\335!\273h\34C\62\14Q\222FI:$\203\26eI)K\222aPJi\222" "\250\211\222j\303\0\215\341\37\313h\374@\66d\245\341T\211\206(\11\223\212\222,\25\245\213\322EY" "JS[$\1\215\357\37\314h\334\351\20\15Q_\224l\310\342,\221\222(\134\16Q\222E\225\246\212" "T\22\207\10\215\363!\313h\334I\64DI\324\22EJePl\225(\211\24%Y*J\226$\312" "R\232*Z(\215\365!\313h\334I\64D\225(\32\222h\10\207h\310\222\61\311\206eH:&\225" "-\31\62e\23\3\216\12\42\273h\34C\62(Q%\252e\303AJ\242HI\206A\231\42%\31\6" "e\212\206$\212\264(\21\216\17#\313h\374@\66HY\224T\246\350\220\264%Q\244dZ\62\14J" ")KJ\203\222\14Y\242\15\12\0\216\215 \273h\34\207d\210j\322\220\14C\224E\311!\211Z\206" "CR\312\222dX\222)\223\206!\216\253\33\314h\274\71\64\314a<\314a\224\15K\30J\303\35Q" "b-TsL\3\216\312\30\313h\274\351pP\343\341\224\225\206SV\32\316\351pPs,\5\216\314" "\37\313h\134Y\70(q\26\16\247\244\323\240\224\222N\203R\314\222h\230\222\250%JB\1\216\315\31" "\313h\34\37Ce\30\222\64\36NYi\70e\245\341\234\16\7\65\5\216\322\36\313h\134\71\62(\203" "\224F\203\26%\265hx\251E\203\26\246\321\60\205i\230F\0\216\337\37\313h\134Y\70(q\26\16" "\312\260$J\64\14IO\331 \245\231\66(\305(\253\244\1\216\342\37\313h\134\71\62(C\226#\203" "\234$\303S\226\224\262A\22\263(\31\224D\213\246:\20\216\370 \313h\134i\64ha\66\34\222\212" "\322eX*Je\70$MY\222\14KS\66HY\10\216\375 \314h\134\71\64(\203\226\3\311 " "%QR\313\6\305\322\226\15Z\232\15\312\240\245M\303\20\217\3\37\313h\134a\66di\62\274\224\222" "DK\6-Q\22)\32\224bmP\212QVI\3\217\11\35\313h|\305A)f\321\360V\33\6" "%J:\15R\226\224\242\341\222E\221\26\7\217\35!\313h\134\321\60$Q\22)\311\60mi\64\274" "DIeX:%\311\60(\265\332\60\344@\6\217)\36\313h\234I:$C\232\204\203\62h\211\70" "\34\244\306a\10\243\342\60D\303AM\1\217*$\314h\134a\70Hq\226d\303\26%\311\60$\203" "\254$\303\220\14J[\62\14\311\240\264%\335\222P\1\217\70\42\313h\134a\66(\305(K\6eQ" "\312\303\220$J\227aPJI\313\60(\245\244\26%%\1\217D\37\313h\134a\66\34\244$\212\206" "\203\322\224\15\207\244)\33\16R\216\14\207,\312J\203\2\217\233\27\313h\274\71\26\17\307j\226\15\7" "\65\307\342\341\234c\71\226\2\217\236\35\313h|R\66\15S\26e\245d\70Ha\32f\303[\224\225" "\262R\66H\31\0\217\261\34\273h<\303!\311\261\341T\211\222,\22\207L\7\302\341\220\325\201(\207" "\64\0\217\262!\313h\234Q:\14Z\22%\331\60hI\224D\303!\311\261\341\220DZT\251E\212" "\224\214\2\217\272\34\274h<\321\60d\355@\226\3Y\262\365)\314\242\60K\62-\321\201p\30\2\217" "\274\32\274h<\241\34\346`\16\206\233\234%iTM\302P\216\22\35\10\207!\217\305\37\274h<\311" "\260Fu$\312\221(\33\256Q%\213*Y\224iQ\30%:\20\16C\0\217\316\37\274h<a\16" "$\312\220F\325\250\262D\265$\252%C\224%\321XM\244\60\34\206\0\217\321\34\314h\374\220\224\15" "i\224\203\71\70,S\65\252F\325$K\305\212\16\204\303\20\217\324\36\314h\234\303\20\325\241$\7\207" "\71\214\226R\230D\252\246J\305D\214\22\35\10\207!\217\353 \314h\374@\32\346@\64\350@\226\3" "Yt\20\243,\214\262\60\312\302h\320\22\35\10\207!\217\355\37\314h\374@\32\225\223(G\206\65\13" "\307\70\31\206\254\222FY\230\244Q\242\3\341\60\4\217\360\36\314h\334IX\12\263\34\31\206\34I\227" "\326\244\24&\245P*fq\242\3\341\60\4\217\367\36\314h\334\245$\12#%\207rd\30\224M\216" "\224\64)\205R\326\234\350@\70\14\1\217\375\35\314h\334\265\34I\206\71\214\207i\311\241d\30\223\260" "\22V\206-\321\201p\30\2\220\0 \314h\274\203\326\30\15:\220\345\300 MI\224EI\61\252F" "Y\230lQ\242\3\341\60\4\220\1\37\314h\274Y\61\12\263$\7\16\71\22\216q\62\14Y\250fQ" "\230\210Q\242\3\341\60\4\220\3\35\314h\274I\232%\261\322\254\350Hq\261*\215I\24'QM\234" "\22\35\10\207!\220\6 \314h\274Y\61I\223a\310\221\34\211*KTK\206!K\242\70\214\263\70" "\321\201p\30\2\220\17\37\314h\234\203X\7\16:\260#mC\24i\311\240f\211\230Ea\24i\211" "\16\204\303\20\220\20\35\274h<\321\60da\16MitK\322D\31\263\244\226H\215i\242\3\341\60" "\4\220\23 \314h\374\210\26\15q\22\345\310\60G\341\62\214I\24'\303\250\64FI-\221\302p\30" "\2\220\24!\314h\374@\32&i\224\305\203\242\3\341\62\14Y\224\24\243$\312\222\250\226\251\211\16\204" "\303\20\220\32\42\314h\234\303VJ\63\35\31\206\64\252\34\206,\211j\311\60dITK\242DJt" " \34\206\0\220\35!\314h\234\241TR\207$G\242!\215\222hQ\212S\22&\245\60)\205CV" "\321\201p\30\2\220\37 \314h\374@\32\15C\26\346\310\60\244Q\345\60d\331\32%\305$\252\205i" "\242\3\341\60\4\220 \36\314h\274I\232%q\64\310Q\16\34\224\35\214\6\61\312\302(\13\225A\213" "\344t\30\220#\42\314h\374@\32\15C\26\346\310\60\244Q\345\60dITK\206!\13\343d\30\242" "D\12\303a\10\220.\36\314h\334\245a\314\242t\30t \212\226a\224\212Ik\64/\211\226(i" "\70\14\1\220\61 \274h<\321\60dITM\226\64\252\34\206,I\226,\351\226$K\246J\211\16" "\204\303\20\220\62\42\314h\274Q\230%q\62\14\241\224#\303\264Dq\62\214I\24'Q\234\14C\224" "\350@\70\14\1\220\70\36\314h\334\305!\214\352\300!\215*\207!\313\344L\216\222(K\262)\321\201" "p\30\2\220B\37\314h\274Y\61I\223a\220uDJ\222m\10\23I\314\226l\210\32\305D\7\302" "a\10\220E \314h\234\303\20U\263d\30\322\244\16\234\226(N\206\61\211be\330\302\64\221\302p" "\30\2\220G\42\314h\234\303\26%Q\230\14s\22\305\303\264\345@\62\14Y\322-\31\224,\311\246D" "\7\302a\10\220J\42\314h\234Y\230E\351\240\14a\224#\303\220,\245\60I\206))\205R\61R" "\264D\7\302a\10\220K\37\314h|\303 %Y\224\15\327(\211\207i\211\222\60\31\306\362p\13\323" "D\12\303a\10\220M\37\314h\234\303\226\243\311\60\207\361\60-\71\224\14C\266\264%\303\220%\235\22" "Q\11\207!\220N!\314h\274\203\326\30%;\220\224\207!Y\322,I\226,\351\226$K\226\204R" "\242\3\341\60\4\220S\36\314h\274Q\230\14\203V\307\6\35\310\242\203\30ea\64\210Q\26*\203\26" "\311\351\60\220T\37\314h\374@\232\15b\35\31\206\70\312\206\247\60N\206!\13\343d\30\242D\12\303" "a\10\220U\34\314h\334\245a\314\242t\30\344,:\210\345d\30\223(\36NI\26f\303 \220`" "\35\314h\334\245a\314rd\30\324aZ\302\312\60FK\230\264J\221\224\30\303a\10\220c\36\314h" "\334\245aLJ\351\60\350\360\62\250I\226&\303\230\204\225aKt \34\206\0\220i#\314h\374@" "\32\15CV\311\201C\232,\311\22\325\222d\311\222nI\262dI(%:\20\16C\0\220m \314" "h\334I\230\14\247\244\353\60\244I\313a\310\242,\214\6\61\312\302h\320\22\35\10\207!\220n$\314" "h\374H\30\15\203\224DI\234\14j\224DK\224\204I\64&\71$%\265\250\22%:\20\16C\0" "\220u \314h\234Y\230\14\203\26%\71pH\223\246\341\20\246\351p\213\252Y\22&\222\26\16C\0" "\220w \314h|\303%L\322d\30\322\244qx\212\304dP\62%\215ja\66d\211\16\204\303\20" "\220x\35\314h\234\313\24f\225k\226\3\313\251\232\14C\26U\207C\324\230\210Q\70\14\1\220z\35" "\314h\334\245aLJ\351\60\350\360\62\214IX\31\306$\254\14[\262)\331\60\10\220\177 \314h\234" "S\26%\303\224t]\252\321\60(S\230\224\302e\230\222)\214\263D\7\302a\10\220\204\36\314h\234" "\303\26%J\70\334i\303\264\204\225a\214\246,\251\210Y$%\306p\30\2\220\246\35\313h\134\71\226" "\15\311\240DY%\32\24\65\33\227(\331JY)\33\242\260\32\2\220\252!\273h\34\17Q%j\251" "E\211\66\14I\230\224\262\244\226D\211\224DI\242dI\16(!\0\220\270\36\313h\234\362\66$Q" "KT\211\6E\213*Q\227\250%K\242!Jv@\34\224\14\220\312\36\313h|\71\226-\303\240d" "I\224dQ\242E\211\322E\312J\231\324eJ\263\70\3\220\316 \313h|\331\64(\245,)\15\212" "V\231\6%J\322(\251EI\324\262$\213\226\344X\6\220\341\42\273h<\203\62D\225h\270dQ" "\242\15J-\214\242!\211\22)\211\22)YJI:$\31\0\220\350#\313h|\331\62\14J\224%" "\265(\21\223(I\206A\312\201(\31\224(\311\222)K\302A\311\261\14\220\355 \313h|\71\360\20" "\15J)KJ\203\242CI\64(Q\30E\303\220DY\66f\251\226\1\220\365 \313h\274\361\20\215" "Y\222\14\203\22%\25i\30\224(iJ:\15\247,\33\227l\310\62\0\220\367\37\314h<\71\30-" "K\237\224\245\226T\264h\351-\32\22\251\245\251\242\14QI\313\201\14\220\375!\313h|\71\62(c" "\322(%\311p\315\222lH\242DJ\42eH\242\226-J\322!\311\0\221L\37\313h\374@\66," "a\22\15J)\33\206PiSJ\321\42EZ:\254Z:l\12\0\221M\37\273h\34\203\62DI" "\32%i\62\210I\313\220tT\224\60K\302A\311\264$\33\246!\221R \313h<\71\230\14C\234" "Di\222E\303\20&\215IS\42-Q\232D\303\240\245\332\60\4\221T!\313h\334\341\240\244I\62" "dI\224D\203RQ\22m)e\312p\213\262A\312J\331 e\0\221b\37\313h\334\341\240\244I" "\224&\321pP\262$Q\262\244\64,RV\32NY)\33\244\14\221j$\313h\374@\66HS\22" "\265\324\222A)%\245,\351\244\14C\222%\321\60$Q\222%Q\62(C\2\221l \313h\334\331" "\260\364\224tJ\222a\251(\225aH\206\333\222hIeX*Z\222\15C\30\221u \313h\374@" "\66Ha\222\14R\222%\311\360R\312\222\312\220(Smx\213\262\322 I\0\221w\42\313h\334I" "\64(\265$\32\224R\22\15Z\224$\303\240\224\25e\330\222lX\62-\311\206e\20\221x$\313h" "\374@\66HI\224$\303RJ\242A\251(\211\64$\245LQ\206$\233\222A\222\262$J\206\61\221" "\234 \313h\374@\66(i\222\14R\322e\70$\25\245\313\260\270\324\222\303\220\14\232\22\15\333\0\221" "\270#\313h\34\203\24&\311\260\224\222h\330\226NI\62\14J'e\270%\322\60(J\226(\311\60" "d\1\221\310!\314h|:\260\15ZRK\22)\213\264A\31\224\252\224\204J\243\26U\262(\214\302" ",\211\3\221\314\31\272i<\303 \325\242a\220jQ-\32\6\65\36\6\65\207\322\341\20\221\315\32\313" "h\374\200\70\350P:\34\244\306a\10\243\342\60\344@<\234\323\341 \221\316\35\273h\34\17IE\212" "\6EKJY\222\14OI\26J\203\224\206\351\224m\32\0\221\317\34\313h\134\303\20\246\341\60\204i" "\64\34\244a\10\243\342\60\204Qm\70\247\303A\221\321\33\313h\274\71\226CI\16d\351\60DZ\246" "\306\303\71\7\242jR\33\16\2\221\335\35\313h\134i\230fI\230EY\64\34\244\64\32\264\60\215\222" "Z\66\206[$G\0\221\343\36\313h\134a\32V\262\60J\206C\222E\225h\330\222(\311\22s\242" "\244\221<+\0\222\15\37\313h\134a\32&Je\310\242\332\220\264EIeH\332\242AI\224\242\22" "\225\264h\36\222\64!\313h\134a\32V\242$\213\222!\31\222\60J\206eP\242\254\224$RII" "F)\24C\0\222D\37\313h\134a\32%a\322\30\15\313 \245a\66\34\244\60K\244$S\32\225" ",\221\322\0\222[\42\313h\134Y\22fI\226DI\26i\311 f\71\360\240EY\222(Y$e" "\331\220%\323\240\0\222b\34\313h\134a\32V\262\60\32\236\322l\32\222\266$\212\24e\220\304t\312" "\324\14\222q\37\313h\134i(f\321\60\210\361 \205QiH\242\60jI\224\322R\212\206d\230\22" ")\222\200 \313h\134\71\26\15RR\213\242a\31\222\254\64(\303\22\265\264(Q\246H\241\262$\222" "\30\222\203!\313h\134a\32V\222a\211\222\322\220DZ\62(\303R\314\222(\221\222L\351\244D\311" "\24\12\222\205\42\313h\134\71\246\14K$j\203\62(a\24\15\311\240(\245HI\224dP\222%\214" "\206p\313\4\222\221 \313h\134a\32%a\322\30\15\313 \245a\66\34\244,\211\22)\311\224NJ" "\224L\241\0\222\230\37\313h\134a\32NI\324%J\206$\21\323h\220\322lX$)\261D\221\26" "\255C\0\222\255 \313h\134\241X\211\222l\212\206l\220\266h\33\244!\212\226\212\230)\221\22)\322" "\220#\1\222\355\35\313h\134\265L\352R\12\7i\320JY\62\34\262J\224t\233\222p\210\222)\24" "\222\363 \313h\134a\32\15K-\214\222!\31\262\64\31\16R-\31\6E*IImJ\22Y\1" "\222\374\37\313h\134\71\66\134\42mKZ\206C\224D\321\60\265(\311\222(\211\62\34\242u\12\5\223" "\30\36\313h\134\251\26\215I\26F\303AiK\206\203\322\26%-\303E\211R-\323\206\1\223 \37" "\313h\134a\32\15Kc\22\305\303A\12\263!\251F\311\222(EeH\225D\222B\1\223,\37\313" "h\134a\32\15K-\214\206eXj\321\240\14K-\32\224D\332\24\245\246Ek\6\223/\42\313h" "\134Y\22fI\226$\203T)\15J\61\32\16:\222\15I\42\225\224d\310\244\212\70$\0\223\62 " "\313h\134\71\26\15R\222F\225!\31\304,\32\16R\222E\211\224H\233\242\324\264h\324\0\223[\42" "\313h\134\341\246\64\265\324\242$\31\6EJ\342a\31\242$U\222!\211\206,\234\222DJ\262\0\223" "\226 \313h\134a\252\224\222(Q\212\203\62$Yi\220\226\254\64(\25-Z\6m\211\22I\14\223" "\256 \313h\134a\32\15K-\214\206eH\262\322\240\14[iP\22%\213\224a\210\244\212$\6\223" "\341 \313h\134a\32\15R\22%Y\64\34\224\254\64(\303V\32\224DJ\62\245Q\211\222)\24\224" "\30!\313h\134a\32\15R\22%Y\64\34\224\266hP\206\245\26\15J\242\205\312\260i\231\64\14\1" "\224Q!\314h\134\321\22F\331RY\262H\321\206A\216\262\341 \347P\42\15\222\322MJ*\332\60" "\4\225w\30\273h|\303\232c\203\234c\203\234\3\17Z\22\245\221\274h\253\0\225\200\35\313h\34\203" "\62lI\66,\303\226d\303\62\354\220\16\351\220\16\351\220\16\351\210\0\225\211 \313h\34\203\62lI" "\66,\303\226d\303\62\254\231\62\14\211\250iI&\325\224H\323\21\1\225\213!\313h\34\203\62lI" "\66,\303\226d\303\62\354\220\62\14\211\226d\312\60$RM\311\62\65\22\225\221 \313h\34\203\62l" "I\66,\303\226d\303\62\214\241\62\14\211\30j\233\224\224\224\250\42f\2\225\223 \313h\34\203\62l" "I\66,\303\226d\303\62\354\220\64HR\26I\203$e\221\64H:\42\225\242\42\313h\34\203\62l" "I\66,\303\226d\303\62lI\246\14C\42\206\312\60$Z\222IY\244\304\2\225\243 \313h\34\203" "\62lI\66,\303\226d\303CTS\22Q\252)\303\264DI\42\15\231\216\10\225\245!\313h\34\203" "\62lI\66,\303\226d\303\62LI(%%iX,%\251&%\211)L\2\225\262!\313h\34" "\203\62lI\66,\303\226d\303\62lI&\15\222\224E\322 iI&E\213\22\13\225\330$\313h" "\34\203\62lI\66,\303\226d\303\62,C\224(\321\60$C\224(\221\222HJE\31\22;\42\226" "\62\37\313h\334\341\26&\303!\311B\261\222\15I\324\22%Y\62eI\26&Q\232\24%\0\226;" "\42\273h\34\323\240\224\262\244\224%\332\240\224\262$J\262$J\6%J\262d\312\222\60K\262a\10" "\226D!\313h\274Y\62eI)KZ\206!\12\223d\211\222\246\244S\322\61\221\302$\13\223,S" "\0\226M#\314h\334\351\66DI$UJ\232\250DI\42%S\230E\311 U\242l\31\206$\7" "\262\34\310\0\226P!\273h\34\313 %\265(I\6I\312\242\244\26E\303\24)Q\262DR\226\224" "\62-I\344\0\226[!\313h\34K\224%\245dI\206E\252%\245H\31\242!\311\302$\13\245a" "I\303\64\214\206A\226b \313h\34c\226\14\207D^\206E\311\221d\70$Y\22%Y\22iQ" "\61J\264\212\224\12\226c \314h\374@\270\14CR\254$\303\220H-\225aH\232*\225aH\306" "\322p\210\303\70\4\226d\35\313h\334\341\246%QK\61Q\206E\311\302h\70\25\227\246,\211\222\250" "&\212\0\226e\37\313h\334\341\66$\245,i\213\324,\251\14K\233\322\246T\206!J\62-\311\264" "d\20\226j#\313h\34[\230da\62\14\212\224EI\224d\311pHr\244\62,R\230da\222" "\205I\66,\0\226p \313h\334\341\246%QK\62,J\254$\303R\314\222\341\220dI\244EJ" "\64(u$\1\226s \313h\334\341\360\222\205\311\60(JTI\206AI\244J\62\14\312\264UJ" "\211\24\255!\0\226u!\313h\34c\226$\303\242f\321p\10\223(I\244!\311\302$\33\222\212\226" "\210S\250D\221(\226v \313h\274\351\224&\311\60(\325eX\224\66e\30\22%\313\224.C\62" "(Z\252\3\12\0\226x\37\313h\374@\266\14K\61K\206\203\230DI\324\262\15I\230I\303\22g" "q\26\15\203\0\226z\37\313h\34[\230DI\226\324\242dX\206\260\62\14J\42U\222aP\304\226" "\254\251\232\0\226}$\274h\34\323 %Q\26%\321 i\245d\70(Q\234$\303\220$RRY" "\224(I\263$\223$\0\226\205 \273h\34\313\260tJ*\303\42%QR\31\226Z\230\14\207DJ" "\222%Z\244)\221R\1\226\206 \313h\274\351\64(\25\251\42i\222T\321\222\245\224%\311\260,Q" "\26%\203\22g\331\60\4\226\212\37\313h\274Y\262%Q\222\14\203\222\205\232\224$\213\322\224H\311I" "K\232\244H\316B\21\226\216\42\313h\234Q\266D\221\222\14KS&\225\224D\32\22)L\222aY" "\302$\33\226,L\262a\1\226\217#\313h\334\341\64(\211\24&\225!\21\243$\31\6\245\62%-" "C\262\224\222,I\224(I\223l\20\226\224\42\313h\34\313\60(\71R\31\26)L*\303RG*" "\303\240t\31\22i\310\222E\213\42-J\4\226\233\42\314h\234\71\260\14S\322TQ\22M\252DI" "\62(\25\35P\206AJ\262$[J\335\222P\5\226\234\34\313h\334\341\62,\245\226\341 \205Ie" "X\32\223\312\260\210\225\341\220\206i\10\226\240#\313h\34\333\220$\203\224\364\244\14C\242\3IeX" "\312I\62\14\212\226\64%Q\242D\241\222\15\2\226\243#\313h\234Q\64DI\227aP\262IKZ" "\246H\211\262\244\64\14IEI\206d\30\302,\211\304\4\226\267\36\314h\134i\66(\203\226&\311\360" "\216\224\16\312\240\245Y\322\323\224\364\26\265\210\32\0\226\273\31\313h|\345(\36.Z\230\14\203V\36" "\356\350p\324r`\34\262\1\226\304\42\313h\134a\222\225\222\341 EJ\230\64J\203$%Y\22%" "Y\242\14K\244\204\203\22m\203\0\226\305\42\313h\334Q\62(\265$\31\226\246h\230\322d\320\224(" "T\242,I\6%J\242\64\211Be\30\226\306\35\313h\134Y<\14\222\224&\303\20F\71p\10\243" "t\70\210\263\222HZ\246\246\0\226\307\34\273h<\303!\207\207A\213\263a\320\222,\34.J\24F" "\303\324\226\15C\0\226\314#\313h\134I\324\22%Y\222\14\322\240DI\247\244\62,\235\222NIe" "X\222%J\244$\22\7\1\226\321 \313h<a\224\14Q\222%\311\260\64\225\246\60\32\224a\12\243" "\332\62(\25)\214\212\321\60\226\342$\313h\134Y\224\14C\22)\312\260$K\244(\245A\31\262J" "\64(\245\244\62$\226\322\240\224\262d\20\226\343\37\313h<\265hX\242J\64\274DI\247A\31\244" ",\211\6\245\230\15/Y\224\224\322A\226\350\32\272i\34\17a\16\245\303S\22)\245D\13\247$R" "J\211\26j\231\0\226\352\34\313h<\303\71\35^\224\304\30*J\242\344\360\60\344X\70\14\71\26\16" "C\4\226\360\34\313h\134\303 \247\303\213\222\30KJ\42'\261&)\203\42Fq\226F\42\0\226\362" "\33\313h<\303\71\35\36CEI\224\64\7\16\71<\34\304(\216\266AK\0\226\366\36\313h<\303" "\71\35\36CEI\224\60\211\207!\322\1e\30t \312\201D\7R\0\226\367\33\313h<\303\71\35" "^\224\304\30*J\242\244\361p\312J\303)+\15\27\0\226\373\35\313h<\303\71\35^\242$\222\222" "(\31\16Y)\33\6\255\224\15\203\222\206\361 \227\0\34\313h<\303\71\35\36CEI\224\34\34\16" "Z\216\14\247J\324\22\265$\12\0\227\7\35\313h<\303\71\35\36CEI\224\34\35\16I\216\15\247" "\244\224%\221\226l\12\0\227\12\32\313h<\303\71\35\36CEI\224d\270\303\303\65\211\223VE\33" "\16\2\227\34\36\313h<\303\71\35\36CEI\224(\32\224a+\15\322\222E\312\260\224\262\322\240\0" "\227'\42\313h<\303\71\35^\242$\222\222(I\206dP\242\244\250T\206!J\225AJ\262\244\224" "X\0\227\62\42\313h<\303\71\35^\242$\222\222(I\206h\252D\321\240\210K\224\224\206!Y\242" "D\34\22\0\227R\31\313h\274\361p\316\201C\16\244\303A\13\323a\15\323a\15\323L\2\227Y#" "\314h\134\341\64HI\230%\341p\310\322$\31^\242,\211\206,\211*\203\64da\224\205\211\244\1" "\227^ \313h|Q\16D\341\20\15Z\224\3Q\70DC\30\345@\24\16\321\240Eq\226\206!\0" "\227b\34\273h\34\17j\16\345\300C\22\265DC\224D-\321\20%QK\324\62\34\2\227i\30\313" "h|\265\341\240\225\7\35\211\207SV\32\316\351pPs,\5\227t#\313h<\245$\32\224Z\22" "%\331\22%Q\322\62,\211\322\323\240\24\263$\32\224\246,)e\221\0\227\363\31\313h\274\361p\314" "r \11\207\203N\270\206\351\260\206i\230\16\23\0\227\373$\313h\134\331\220\14JT\211Z\242\341\220" "d\361\240\14I\226D\311\240\14I\226D\311\240\14Q\22k\1\227\377\37\313h\134\311AQZ\224E" "\31\246$JzR\16\7\255\66\34\244a\10\323p\30\42\0\230\2\33\273h\34\17R\26G\203\26e" "\245A\213\262\322\240EYi\320J\221\42\6\230\5\32\273h\234\303K\34\15Z\224\225\6-\312*\303" "\246d\211\66\310R\250\6\230\6!\314h\34Y\16d\303\245\24&\225A\351\226\264\14J\267\244eP" "\272%-\203\222E\225l\14\230\20\32\274h\34\337\252I\64h-\203\62hI-\223\6\255\333\240\205" "Qd\14\230\21\34\273h\274\303A\312\241A\316\206\227R\226T\206\245\224%\211\62(\265\244\250\5\230" "\22!\313h|\71R\32\224\250\30%\303\250\15\313 %\265(I\6)\251%Q\62(Q\245b\13" "\230\30!\313h\134\71\246\14S\22\205\331\260\14I\246\16\207$\213\222d\220\222Z\264\14R\230d\221" "\26\230-!\273h\34\17:\20\16\311\240DI\226D\311\240\14I\246%\203\22%YR\32\64)I" "&-\230;\37\313h|\71R\32\224d\11\223hx\213\262aiS\242aH\332J\203\24&\211\246" "\5\230<!\314h\134\71\30\15Oq\66(\203\222%-\203\322-\31\224A\223\262HI\6\245&e" "\211\32\230L#\314h<\303!j\35\222A\252d\321\220\14:\220%\303A\214\262(\31\6iK\262" "d\310\222t\30\230M!\313h|\71\360\61\11\207dP\242$KJ\303\42eI\224\14oI\224\14" "JT\211\206$\13\230T \313h|\71\360\240DUiP\206-\211\222A\231\262$J\6e\312\264" "d\230\262$\262\5\230U!\273h\34\203\62lQ\66(\303\226d\303\62(\245lI\206AQ\262\244" "\64(\211\224$\223\26\230X$\274h<\303A\211\262pP\206HJ\242hP\206HJ\242hP\206" "(\221JK\62DI\246T\214\1\230^ \313h\134I\234$\303\220l\331p\220\244,Q\222ai" "\213\262\341-\312\6\245\226\324\222,\230g\34\273h\34\203\62\350H\64<j\303C\322\246\14/\65e" "\70$\245$\33\264\0\230\250\36\273h<\303\240eJ\226h\331\260dJ\233\322\66,Y\224%\245\244" "\323\220,Z\24\230\333\35\273h<\303\20e\322\262DI\226D-\331pP\262$\322\242J\324\244U" "\302P\230\337\34\313h\274\71\224\344@R\35\206H\11\267a\15\323aM\262\60J\322E[\5\230\342" "!\313h\134\71&mQRJ,Y\224\324\206\244\26%\265!\251%Q\222EI\237\222!\11\5\230" "\357#\314h\134\71(\15R%M\244\70J\6iH\262\250\22eC\242dI\224\204\221-iJ\226" "b\0\230\362\42\314h\134a\254\245\221\22&\332\240DI\323\220\64ER\70da\222%YT\311\222" "DK\26\65\230\374\37\313h\134\71\246\14K\224*\322\240Di\62$K)i\31\222\236\222\246d\351" "\70\304\2\230\375!\313h\134Y,\245Q\62,C\230D\311\222\14YR\312\222dH\226\246.i\222" "hC\70\4\230\376 \313h\134Y,\245Q\62,J\224E\311\240\14I\247\244eHzJ\232\222d" "i\212\326\10\231\12\34\313h|\265\341\240\306\303\61\251F%eP\264\362\240\204I\224F\342 )\0" "\231\23$\313h\134Y\22*\221\24I\311\240DY\62\14\312\22eI\242T\6)\251\225\222\222\224," "\311\240\210\1\231(\42\313h\134a\32\15Kc\62$C\42M\321\220D-C\64$i\22\15J\224" "dIE\33\262A\231\226\35\313h\134a\34\205\303A\314\221a\10\323p\30\302\64\34\206\60\15\323p" "\30\42\0\231\231\35\313h\374\300\66\350P:\34\304YI$-\223\206!L\303a\10\323p\30\42\0" "\231\254\30\273h\134\303)\213\207A+\17\203V\36\356X\322)i\224\27\0\231\304\37\313h\374@\66" "HY\22f\303K\230\15Y%K\242A)'\245\244)\211\222&%\15\231\305\42\274h\34\203\62(" "\265\312\20eImP\206(\311\222,\311\6\245\16$Q\245\251\226d\231\222\6\231\306\36\273h\34_" "\242,\31\222,)%\225!\211*QiX\252J\244$c\246\3\312\60\231\320\37\313h\334\341 e" "I\62\34\264J\230\15Y%\32\224A\312\201(KJY)U\206\1\232\16 \313h\374@\66$\203" "R\314\206(\211\222(\33\36\224\70\31\6%U\272\14I-\314D\5\232\22!\313h\34\17I)K" "\206(\211\222l\32\226d\211\6eX\252J\227ai\212\264h\210\24-\232\23#\313h\374@\66(" "\245$\312\222\341\242\204\331\220\14J)\251\14\207,\211\262\244$eI\224)a\0\232\60#\313h\234" "Ii\31\226Z\230\14OI\226$\203\224(\225A\32\242$J\262$\32\206\244\213%Y\0\232Z " "\313h\134I\224\15\313\220dI\64(\246\244\323\60(Q\26\17\203V\36.\245$\321\62\5\232\250\32" "\312i\134\303\330\62\204I\24\15\7eX\224\60\211\206\261\70\214m\22\0\232\304(\314h<C\230E" "\321\240$[EI\206C\24\211\311\240DK\224\14I\62$QRJ\206\244\242DJ\232hC\0\232" "\330\31\312i\274\341p\310\321a,\16\323p\320\21i\210\244\222\64D: \232\352\37\313h<\203$" "\205R\62dR(\15C$U\264\341\240\345\320\60DR\35\30\207l\1\233<\34\313h\274\71\224#" "\303\20F\305a\10\243\342\60\304I\71Q\302h\310j\353\20\233B\36\313h\334\71\62,K)\35\326" "$J\6%*\15S\322\213\222(Ke\10\243\222\70\233E\42\314h\134i\30g\203\62(m\331\240" "U\222aH\6iT\224\332RL\206$Lr@\33\6\1\233T!\314h\334\361p\210j\341p\210" "\222\233\322)\31\206,\211j\311\60DaR\321\242H\31\207\0\233Z\35\313h\234\71\66\304Y\232\245" "\303\245\224e\303\240EY\66\14:\34%Q\222E\5\233\256\37\313h\134\265l\251%\311p\220\262\244" "\224\15\207\244)\33\244\70\31\26%\12\223\254\234\1\233\350\37\313h\134a:\134\352\300\240\14I\247d" "P\242\244eH\6-\215\22I\351\247D\226\0\234\345\35\313h\234\71\62\14a\32\16C\230\206\303)" "\307\206;\20%MI)\311t@\1\234\364 \313h\274\71\64HK\26%\311 %\265(I\206\245" "\71I\206C\16dIEKJU\5\235\217\35\313h|J\70\15r\226T\206\245\242c\203\62\354@" "\64\34\324(Kz\324\1\5\236\227\37\313h\34\203\62\350\340\240\14K\257\361pH\242$\212\206S\222" "\205\311)\311\42e\210\6\236\246\30\313h\274\361p\216\207s:\34\304\34\32\66%\312\21\35P\264u" "\236\273\34\313h\334\351pH\242\254\224e\303!\211\262\312)\71)-J\27\255\234E\0\236\304\32\313" "h|\305\341\230e\303A\315\201C\30\25\207!\214\212\303\220f\322,\236\322\34\273h<\303\240EY" "\66\14Z\224e\303 \347\300A\216\207C\224D\225,*\236\331 \313h<\203RJ\232\222A\11\223" "dX\6%\316\264a\12\223p\30\342(\211:iQ\1\237\23\37\313h\134a\66Hi\64(C\226" "c\331pH\262\60\31\266\250RK\262t)i\231\0\237;\33\313h\274\71\62\310Y<\310Y:\14" "aT\34\206\60*\15\7\255(f\0\237b\42\313h|a\226LY\222%\311\260t\32\222!Q\23" "ex\211\24\245\64$J\244D\311a\311\0\0"; #endif /* U8G2_USE_LARGE_FONTS */
102,655
628
// SPDX-License-Identifier: BSD-3-Clause // Copyright Contributors to the OpenColorIO Project. #include <OpenColorIO/OpenColorIO.h> #include "ops/gamma/GammaOpGPU.h" #include "ops/gamma/GammaOpUtils.h" namespace OCIO_NAMESPACE { namespace { // Create shader for basic gamma style void AddBasicFwdShader(GpuShaderCreatorRcPtr & shaderCreator, ConstGammaOpDataRcPtr gamma, GpuShaderText & ss) { const double redGamma = gamma->getRedParams()[0]; const double grnGamma = gamma->getGreenParams()[0]; const double bluGamma = gamma->getBlueParams()[0]; const double alphaGamma = gamma->getAlphaParams()[0]; const std::string pxl(shaderCreator->getPixelName()); ss.declareFloat4( "gamma", redGamma, grnGamma, bluGamma, alphaGamma); ss.newLine() << ss.float4Decl("res") << " = pow( max( " << ss.float4Const(0.0f) << ", " << pxl << " ), gamma );"; ss.newLine() << pxl << ".rgb = " << ss.float3Const("res.x", "res.y", "res.z") << ";"; ss.newLine() << pxl << ".a = res.w;"; } void AddBasicRevShader(GpuShaderCreatorRcPtr & shaderCreator, ConstGammaOpDataRcPtr gamma, GpuShaderText & ss) { const double redGamma = 1. / gamma->getRedParams()[0]; const double grnGamma = 1. / gamma->getGreenParams()[0]; const double bluGamma = 1. / gamma->getBlueParams()[0]; const double alphaGamma = 1. / gamma->getAlphaParams()[0]; const std::string pxl(shaderCreator->getPixelName()); ss.declareFloat4( "gamma", redGamma, grnGamma, bluGamma, alphaGamma); ss.newLine() << ss.float4Decl("res") << " = pow( max( " << ss.float4Const(0.0f) << ", " << pxl << " ), gamma );"; ss.newLine() << pxl << ".rgb = " << ss.float3Const("res.x", "res.y", "res.z") << ";"; ss.newLine() << pxl << ".a = res.w;"; } // Create shader for basic mirror gamma style void AddBasicMirrorFwdShader(GpuShaderCreatorRcPtr & shaderCreator, ConstGammaOpDataRcPtr gamma, GpuShaderText & ss) { const double redGamma = gamma->getRedParams()[0]; const double grnGamma = gamma->getGreenParams()[0]; const double bluGamma = gamma->getBlueParams()[0]; const double alphaGamma = gamma->getAlphaParams()[0]; const std::string pxl(shaderCreator->getPixelName()); ss.declareFloat4("gamma", redGamma, grnGamma, bluGamma, alphaGamma); ss.newLine() << ss.float4Decl("signcol") << " = " << ss.sign(pxl) << ";"; ss.newLine() << ss.float4Decl("res") << " = signcol * pow( abs( " << pxl << " ), gamma );"; ss.newLine() << pxl << ".rgb = " << ss.float3Const("res.x", "res.y", "res.z") << ";"; ss.newLine() << pxl << ".a = res.w;"; } void AddBasicMirrorRevShader(GpuShaderCreatorRcPtr & shaderCreator, ConstGammaOpDataRcPtr gamma, GpuShaderText & ss) { const double redGamma = 1. / gamma->getRedParams()[0]; const double grnGamma = 1. / gamma->getGreenParams()[0]; const double bluGamma = 1. / gamma->getBlueParams()[0]; const double alphaGamma = 1. / gamma->getAlphaParams()[0]; const std::string pxl(shaderCreator->getPixelName()); ss.declareFloat4("gamma", redGamma, grnGamma, bluGamma, alphaGamma); ss.newLine() << ss.float4Decl("signcol") << " = " << ss.sign(pxl) << ";"; ss.newLine() << ss.float4Decl("res") << " = signcol * pow( abs( " << pxl << " ), gamma );"; ss.newLine() << pxl << ".rgb = " << ss.float3Const("res.x", "res.y", "res.z") << ";"; ss.newLine() << pxl << ".a = res.w;"; } // Create shader for basic pass thru gamma style void AddBasicPassThruFwdShader(GpuShaderCreatorRcPtr & shaderCreator, ConstGammaOpDataRcPtr gamma, GpuShaderText & ss) { const double redGamma = gamma->getRedParams()[0]; const double grnGamma = gamma->getGreenParams()[0]; const double bluGamma = gamma->getBlueParams()[0]; const double alphaGamma = gamma->getAlphaParams()[0]; const std::string pxl(shaderCreator->getPixelName()); const std::string pxlrgb(pxl + ".rgb"); ss.declareFloat4("gamma", redGamma, grnGamma, bluGamma, alphaGamma); ss.declareFloat4("breakPnt", 0.f, 0.f, 0.f, 0.f); ss.newLine() << ss.float4Decl("isAboveBreak") << " = " << ss.float4GreaterThan(pxl, "breakPnt") << ";"; ss.newLine() << ss.float4Decl("powSeg") << " = pow(max( " << ss.float4Const(0.0f) << ", " << pxl << " ), gamma);"; ss.newLine() << ss.float4Decl("res") << " = isAboveBreak * powSeg + ( " << ss.float4Const(1.0f) << " - isAboveBreak ) * " << pxl << ";"; ss.newLine() << pxl << ".rgb = " << ss.float3Const("res.x", "res.y", "res.z") << ";"; ss.newLine() << pxl << ".a = res.w;"; } void AddBasicPassThruRevShader(GpuShaderCreatorRcPtr & shaderCreator, ConstGammaOpDataRcPtr gamma, GpuShaderText & ss) { const double redGamma = 1. / gamma->getRedParams()[0]; const double grnGamma = 1. / gamma->getGreenParams()[0]; const double bluGamma = 1. / gamma->getBlueParams()[0]; const double alphaGamma = 1. / gamma->getAlphaParams()[0]; const std::string pxl(shaderCreator->getPixelName()); const std::string pxlrgb(pxl + ".rgb"); ss.declareFloat4("gamma", redGamma, grnGamma, bluGamma, alphaGamma); ss.declareFloat4("breakPnt", 0.f, 0.f, 0.f, 0.f); ss.newLine() << ss.float4Decl("isAboveBreak") << " = " << ss.float4GreaterThan(pxl, "breakPnt") << ";"; ss.newLine() << ss.float4Decl("powSeg") << " = pow(max( " << ss.float4Const(0.0f) << ", " << pxl << " ), gamma);"; ss.newLine() << ss.float4Decl("res") << " = isAboveBreak * powSeg + ( " << ss.float4Const(1.0f) << " - isAboveBreak ) * " << pxl << ";"; ss.newLine() << pxl << ".rgb = " << ss.float3Const("res.x", "res.y", "res.z") << ";"; ss.newLine() << pxl << ".a = res.w;"; } // Create shader for moncurveFwd style void AddMoncurveFwdShader(GpuShaderCreatorRcPtr & shaderCreator, ConstGammaOpDataRcPtr gamma, GpuShaderText & ss) { RendererParams red, green, blue, alpha; ComputeParamsFwd(gamma->getRedParams(), red); ComputeParamsFwd(gamma->getGreenParams(), green); ComputeParamsFwd(gamma->getBlueParams(), blue); ComputeParamsFwd(gamma->getAlphaParams(), alpha); const std::string pxl(shaderCreator->getPixelName()); const std::string pxlrgb(pxl + ".rgb"); // Even if all components are the same, on OS X, a vec4 needs to be // declared. This code will work in both cases. ss.declareFloat4( "breakPnt", red.breakPnt, green.breakPnt, blue.breakPnt, alpha.breakPnt); ss.declareFloat4( "slope" , red.slope, green.slope, blue.slope, alpha.slope); ss.declareFloat4( "scale" , red.scale, green.scale, blue.scale, alpha.scale); ss.declareFloat4( "offset", red.offset, green.offset, blue.offset, alpha.offset); ss.declareFloat4( "gamma" , red.gamma, green.gamma, blue.gamma, alpha.gamma); ss.newLine() << ss.float4Decl("isAboveBreak") << " = " << ss.float4GreaterThan(pxl, "breakPnt") << ";"; ss.newLine() << ss.float4Decl("linSeg") << " = " << pxl << " * slope;"; ss.newLine() << ss.float4Decl("powSeg") << " = pow( max( " << ss.float4Const(0.0f) << ", scale * " << pxl << " + offset), gamma);"; ss.newLine() << ss.float4Decl("res") << " = isAboveBreak * powSeg + ( " << ss.float4Const(1.0f) << " - isAboveBreak ) * linSeg;"; ss.newLine() << pxl << ".rgb = " << ss.float3Const("res.x", "res.y", "res.z") << ";"; ss.newLine() << pxl << ".a = res.w;"; } // Create shader for moncurveRev style void AddMoncurveRevShader(GpuShaderCreatorRcPtr & shaderCreator, ConstGammaOpDataRcPtr gamma, GpuShaderText & ss) { RendererParams red, green, blue, alpha; ComputeParamsRev(gamma->getRedParams(), red); ComputeParamsRev(gamma->getGreenParams(), green); ComputeParamsRev(gamma->getBlueParams(), blue); ComputeParamsRev(gamma->getAlphaParams(), alpha); const std::string pxl(shaderCreator->getPixelName()); const std::string pxlrgb(pxl + ".rgb"); // Even if all components are the same, on OS X, a vec4 needs to be // declared. This code will work in both cases. ss.declareFloat4( "breakPnt", red.breakPnt, green.breakPnt, blue.breakPnt, alpha.breakPnt); ss.declareFloat4( "slope" , red.slope, green.slope, blue.slope, alpha.slope); ss.declareFloat4( "scale" , red.scale, green.scale, blue.scale, alpha.scale); ss.declareFloat4( "offset", red.offset, green.offset, blue.offset, alpha.offset); ss.declareFloat4( "gamma" , red.gamma, green.gamma, blue.gamma, alpha.gamma); ss.newLine() << ss.float4Decl("isAboveBreak") << " = " << ss.float4GreaterThan(pxl, "breakPnt") << ";"; ss.newLine() << ss.float4Decl("linSeg") << " = " << pxl << " * slope;"; ss.newLine() << ss.float4Decl("powSeg") << " = pow( max( " << ss.float4Const(0.0f) << ", " << pxl << " ), gamma ) * scale - offset;"; ss.newLine() << ss.float4Decl("res") << " = isAboveBreak * powSeg + ( " << ss.float4Const(1.0f) << " - isAboveBreak ) * linSeg;"; ss.newLine() << pxl << ".rgb = " << ss.float3Const("res.x", "res.y", "res.z") << ";"; ss.newLine() << pxl << ".a = res.w;"; } // Create shader for moncurveMirrorFwd style void AddMoncurveMirrorFwdShader(GpuShaderCreatorRcPtr & shaderCreator, ConstGammaOpDataRcPtr gamma, GpuShaderText & ss) { RendererParams red, green, blue, alpha; ComputeParamsFwd(gamma->getRedParams(), red); ComputeParamsFwd(gamma->getGreenParams(), green); ComputeParamsFwd(gamma->getBlueParams(), blue); ComputeParamsFwd(gamma->getAlphaParams(), alpha); const std::string pxl(shaderCreator->getPixelName()); // Even if all components are the same, on OS X, a vec4 needs to be // declared. This code will work in both cases. ss.declareFloat4("breakPnt", red.breakPnt, green.breakPnt, blue.breakPnt, alpha.breakPnt); ss.declareFloat4("slope", red.slope, green.slope, blue.slope, alpha.slope); ss.declareFloat4("scale", red.scale, green.scale, blue.scale, alpha.scale); ss.declareFloat4("offset", red.offset, green.offset, blue.offset, alpha.offset); ss.declareFloat4("gamma", red.gamma, green.gamma, blue.gamma, alpha.gamma); ss.newLine() << ss.float4Decl("signcol") << " = " << ss.sign(pxl) << ";"; ss.newLine() << pxl << " = abs( " << pxl << " );"; ss.newLine() << ss.float4Decl("isAboveBreak") << " = " << ss.float4GreaterThan(pxl, "breakPnt") << ";"; ss.newLine() << ss.float4Decl("linSeg") << " = " << pxl << " * slope;"; // Max() not needed since offset cannot be negative. ss.newLine() << ss.float4Decl("powSeg") << " = pow( scale * " << pxl << " + offset, gamma);"; ss.newLine() << ss.float4Decl("res") << " = isAboveBreak * powSeg + ( " << ss.float4Const(1.0f) << " - isAboveBreak ) * linSeg;"; ss.newLine() << "res = signcol * res;"; ss.newLine() << pxl << ".rgb = " << ss.float3Const("res.x", "res.y", "res.z") << ";"; ss.newLine() << pxl << ".a = res.w;"; } // Create shader for moncurveMirrorRev style void AddMoncurveMirrorRevShader(GpuShaderCreatorRcPtr & shaderCreator, ConstGammaOpDataRcPtr gamma, GpuShaderText & ss) { RendererParams red, green, blue, alpha; ComputeParamsRev(gamma->getRedParams(), red); ComputeParamsRev(gamma->getGreenParams(), green); ComputeParamsRev(gamma->getBlueParams(), blue); ComputeParamsRev(gamma->getAlphaParams(), alpha); const std::string pxl(shaderCreator->getPixelName()); // Even if all components are the same, on OS X, a vec4 needs to be // declared. This code will work in both cases. ss.declareFloat4("breakPnt", red.breakPnt, green.breakPnt, blue.breakPnt, alpha.breakPnt); ss.declareFloat4("slope", red.slope, green.slope, blue.slope, alpha.slope); ss.declareFloat4("scale", red.scale, green.scale, blue.scale, alpha.scale); ss.declareFloat4("offset", red.offset, green.offset, blue.offset, alpha.offset); ss.declareFloat4("gamma", red.gamma, green.gamma, blue.gamma, alpha.gamma); ss.newLine() << ss.float4Decl("signcol") << " = " << ss.sign(pxl) << ";"; ss.newLine() << pxl << " = abs( " << pxl << " );"; ss.newLine() << ss.float4Decl("isAboveBreak") << " = " << ss.float4GreaterThan(pxl, "breakPnt") << ";"; ss.newLine() << ss.float4Decl("linSeg") << " = " << pxl << " * slope;"; ss.newLine() << ss.float4Decl("powSeg") << " = pow( " << pxl << ", gamma ) * scale - offset;"; ss.newLine() << ss.float4Decl("res") << " = isAboveBreak * powSeg + ( " << ss.float4Const(1.0f) << " - isAboveBreak ) * linSeg;"; ss.newLine() << "res = signcol * res;"; ss.newLine() << pxl << ".rgb = " << ss.float3Const("res.x", "res.y", "res.z") << ";"; ss.newLine() << pxl << ".a = res.w;"; } } // Anon namespace void GetGammaGPUShaderProgram(GpuShaderCreatorRcPtr & shaderCreator, ConstGammaOpDataRcPtr & gammaData) { GpuShaderText ss(shaderCreator->getLanguage()); ss.indent(); ss.newLine() << ""; ss.newLine() << "// Add Gamma '" << GammaOpData::ConvertStyleToString(gammaData->getStyle()) << "' processing"; ss.newLine() << ""; ss.newLine() << "{"; ss.indent(); switch (gammaData->getStyle()) { case GammaOpData::MONCURVE_FWD: { AddMoncurveFwdShader(shaderCreator, gammaData, ss); break; } case GammaOpData::MONCURVE_REV: { AddMoncurveRevShader(shaderCreator, gammaData, ss); break; } case GammaOpData::MONCURVE_MIRROR_FWD: { AddMoncurveMirrorFwdShader(shaderCreator, gammaData, ss); break; } case GammaOpData::MONCURVE_MIRROR_REV: { AddMoncurveMirrorRevShader(shaderCreator, gammaData, ss); break; } case GammaOpData::BASIC_FWD: { AddBasicFwdShader(shaderCreator, gammaData, ss); break; } case GammaOpData::BASIC_REV: { AddBasicRevShader(shaderCreator, gammaData, ss); break; } case GammaOpData::BASIC_MIRROR_FWD: { AddBasicMirrorFwdShader(shaderCreator, gammaData, ss); break; } case GammaOpData::BASIC_MIRROR_REV: { AddBasicMirrorRevShader(shaderCreator, gammaData, ss); break; } case GammaOpData::BASIC_PASS_THRU_FWD: { AddBasicPassThruFwdShader(shaderCreator, gammaData, ss); break; } case GammaOpData::BASIC_PASS_THRU_REV: { AddBasicPassThruRevShader(shaderCreator, gammaData, ss); break; } } ss.dedent(); ss.newLine() << "}"; ss.dedent(); shaderCreator->addToFunctionShaderCode(ss.string().c_str()); } } // namespace OCIO_NAMESPACE
7,144
852
<reponame>ckamtsikis/cmssw import FWCore.ParameterSet.Config as cms process = cms.Process("test_NoiseFromExampleXmlFile") process.load("DQM.SiStripCommon.MessageLogger_cfi") process.load("OnlineDB.SiStripESSources.NoiseFromExampleXmlFile_cff") process.load("IORawData.SiStripInputSources.EmptySource_cff") process.test = cms.EDAnalyzer("test_NoiseBuilder") process.p = cms.Path(process.test) process.maxEvents.input = 2
158
501
# encoding: utf-8 import math import random import torchvision.transforms as T def build_transforms(cfg): normalize_transform = T.Normalize(mean=cfg.INPUT.PIXEL_MEAN, std=cfg.INPUT.PIXEL_STD) transforms = {} if cfg.TEST.PARTIAL_REID == 'off': transforms['train'] = T.Compose([ T.Resize(cfg.INPUT.IMG_SIZE), T.RandomHorizontalFlip(p=cfg.INPUT.PROB), T.Pad(cfg.INPUT.PADDING), T.RandomCrop(cfg.INPUT.IMG_SIZE), T.ToTensor(), normalize_transform, RandomErasing(probability=cfg.INPUT.RE_PROB, mean=cfg.INPUT.PIXEL_MEAN) ]) else: transforms['train'] = T.Compose([ T.Resize(cfg.INPUT.IMG_SIZE), T.RandomHorizontalFlip(p=cfg.INPUT.PROB), T.RandomResizedCrop(size=256, scale=(0.5, 1.0), ratio=(1.0, 3.0)), T.Resize(cfg.INPUT.IMG_SIZE), T.ToTensor(), normalize_transform, RandomErasing(probability=cfg.INPUT.RE_PROB, mean=cfg.INPUT.PIXEL_MEAN) ]) transforms['eval'] = T.Compose([ T.Resize(cfg.INPUT.IMG_SIZE), T.ToTensor(), normalize_transform ]) return transforms class RandomErasing(object): """ Randomly selects a rectangle region in an image and erases its pixels. 'Random Erasing Data Augmentation' by Zhong et al. See https://arxiv.org/pdf/1708.04896.pdf Args: probability: The probability that the Random Erasing operation will be performed. sl: Minimum proportion of erased area against input image. sh: Maximum proportion of erased area against input image. r1: Minimum aspect ratio of erased area. mean: Erasing value. """ def __init__(self, probability=0.5, sl=0.02, sh=0.4, r1=0.3, mean=(0.4914, 0.4822, 0.4465)): self.probability = probability self.mean = mean self.sl = sl self.sh = sh self.r1 = r1 def __call__(self, img): if random.uniform(0, 1) >= self.probability: return img for attempt in range(100): area = img.size()[1] * img.size()[2] target_area = random.uniform(self.sl, self.sh) * area aspect_ratio = random.uniform(self.r1, 1 / self.r1) h = int(round(math.sqrt(target_area * aspect_ratio))) w = int(round(math.sqrt(target_area / aspect_ratio))) if w < img.size()[2] and h < img.size()[1]: x1 = random.randint(0, img.size()[1] - h) y1 = random.randint(0, img.size()[2] - w) if img.size()[0] == 3: img[0, x1:x1 + h, y1:y1 + w] = self.mean[0] img[1, x1:x1 + h, y1:y1 + w] = self.mean[1] img[2, x1:x1 + h, y1:y1 + w] = self.mean[2] else: img[0, x1:x1 + h, y1:y1 + w] = self.mean[0] return img return img
1,547
813
<gh_stars>100-1000 /* * Copyright 2013-2019 the original author or 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 * * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.springframework.cloud.consul.discovery; import com.ecwid.consul.v1.ConsulClient; import com.ecwid.consul.v1.OperationException; import com.ecwid.consul.v1.agent.model.NewService; import org.junit.Before; import org.junit.Test; import org.mockito.ArgumentCaptor; import org.springframework.cloud.commons.util.InetUtils; import org.springframework.cloud.commons.util.InetUtilsProperties; import org.springframework.cloud.consul.discovery.TtlScheduler.ConsulHeartbeatTask; import static org.assertj.core.api.Assertions.assertThat; import static org.assertj.core.api.Assertions.assertThatThrownBy; import static org.mockito.BDDMockito.given; import static org.mockito.Mockito.atLeastOnce; import static org.mockito.Mockito.mock; import static org.mockito.Mockito.verify; /** * Test for ConsulHeartbeatTask * * @author <NAME> */ public class ConsulHeartbeatTaskTests { String serviceId = "service-A"; HeartbeatProperties heartbeatProperties; ConsulDiscoveryProperties discoveryProperties; ConsulClient consulClient; @Before public void setUp() { this.heartbeatProperties = new HeartbeatProperties(); this.discoveryProperties = new ConsulDiscoveryProperties(new InetUtils(new InetUtilsProperties())); this.consulClient = mock(ConsulClient.class); } @Test public void enableReRegistration() { TtlScheduler ttlScheduler = new TtlScheduler(heartbeatProperties, discoveryProperties, consulClient, ReregistrationPredicate.DEFAULT); ConsulHeartbeatTask consulHeartbeatTask = new ConsulHeartbeatTask(serviceId, ttlScheduler); heartbeatProperties.setReregisterServiceOnFailure(true); NewService service = new NewService(); service.setId(serviceId); ttlScheduler.add(service); given(consulClient.agentCheckPass("service:" + serviceId)).willThrow(new OperationException(500, "Internal Server Error", "CheckID \"service:service-A\" does not have associated TTL")); consulHeartbeatTask.run(); ArgumentCaptor<NewService> serviceCaptor = ArgumentCaptor.forClass(NewService.class); ArgumentCaptor<String> tokenCaptor = ArgumentCaptor.forClass(String.class); verify(consulClient, atLeastOnce()).agentServiceRegister(serviceCaptor.capture(), tokenCaptor.capture()); assertThat(serviceCaptor.getValue()).isSameAs(service); } @Test public void notEligibleForReRegistration() { TtlScheduler ttlScheduler = new TtlScheduler(heartbeatProperties, discoveryProperties, consulClient, ReregistrationPredicate.DEFAULT); ConsulHeartbeatTask consulHeartbeatTask = new ConsulHeartbeatTask(serviceId, ttlScheduler); heartbeatProperties.setReregisterServiceOnFailure(true); NewService service = new NewService(); service.setId(serviceId); ttlScheduler.add(service); OperationException operationException = new OperationException(400, "Internal Server Error", "CheckID \"service:service-A\" does not have associated TTL"); given(consulClient.agentCheckPass("service:" + serviceId)).willThrow(operationException); assertThatThrownBy(consulHeartbeatTask::run).isSameAs(operationException); } @Test public void enableReRegistrationWithCustomPredicate() { TtlScheduler ttlScheduler = new TtlScheduler(heartbeatProperties, discoveryProperties, consulClient, e -> e.getStatusContent().endsWith("does not have associated TTL")); ConsulHeartbeatTask consulHeartbeatTask = new ConsulHeartbeatTask(serviceId, ttlScheduler); heartbeatProperties.setReregisterServiceOnFailure(true); NewService service = new NewService(); service.setId(serviceId); ttlScheduler.add(service); given(consulClient.agentCheckPass("service:" + serviceId)).willThrow(new OperationException(400, "Internal Server Error", "CheckID \"service:service-A\" does not have associated TTL")); consulHeartbeatTask.run(); ArgumentCaptor<NewService> serviceCaptor = ArgumentCaptor.forClass(NewService.class); ArgumentCaptor<String> tokenCaptor = ArgumentCaptor.forClass(String.class); verify(consulClient, atLeastOnce()).agentServiceRegister(serviceCaptor.capture(), tokenCaptor.capture()); assertThat(serviceCaptor.getValue()).isSameAs(service); } @Test public void disableReRegistration() { TtlScheduler ttlScheduler = new TtlScheduler(heartbeatProperties, discoveryProperties, consulClient, ReregistrationPredicate.DEFAULT); ConsulHeartbeatTask consulHeartbeatTask = new ConsulHeartbeatTask(serviceId, ttlScheduler); heartbeatProperties.setReregisterServiceOnFailure(false); NewService service = new NewService(); service.setId(serviceId); ttlScheduler.add(service); OperationException operationException = new OperationException(500, "Internal Server Error", "CheckID \"service:service-A\" does not have associated TTL"); given(consulClient.agentCheckPass("service:" + serviceId)).willThrow(operationException); assertThatThrownBy(consulHeartbeatTask::run).isSameAs(operationException); } }
1,739
892
{ "schema_version": "1.2.0", "id": "GHSA-h95q-936x-2qhf", "modified": "2022-05-13T01:31:17Z", "published": "2022-05-13T01:31:17Z", "aliases": [ "CVE-2019-3712" ], "details": "Dell WES Wyse Device Agent versions prior to 172.16.31.10 and Dell Wyse ThinLinux HAgent versions prior to 5.4.55 00.10 contain a buffer overflow vulnerability. An unauthenticated attacker may potentially exploit this vulnerability to execute arbitrary code on the system with privileges of the FTP client by sending specially crafted input data to the affected system. The FTP code that contained the vulnerability has been removed.", "severity": [ { "type": "CVSS_V3", "score": "CVSS:3.0/AV:A/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H" } ], "affected": [ ], "references": [ { "type": "ADVISORY", "url": "https://nvd.nist.gov/vuln/detail/CVE-2019-3712" }, { "type": "WEB", "url": "https://www.dell.com/support/article/us/en/19/sln316391" }, { "type": "WEB", "url": "http://www.securityfocus.com/bid/107376" } ], "database_specific": { "cwe_ids": [ "CWE-119" ], "severity": "HIGH", "github_reviewed": false } }
522
354
<gh_stars>100-1000 /*------------------------------------------------------------------------- * drawElements Quality Program Tester Core * ---------------------------------------- * * Copyright 2014 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * *//*! * \file * \brief Render target info. *//*--------------------------------------------------------------------*/ #include "tcuRenderTarget.hpp" namespace tcu { RenderTarget::RenderTarget (void) : m_width (0) , m_height (0) , m_pixelFormat (PixelFormat(0, 0, 0, 0)) , m_depthBits (0) , m_stencilBits (0) , m_numSamples (0) { } RenderTarget::RenderTarget (int width, int height, const PixelFormat& format, int depthBits, int stencilBits, int numSamples) : m_width (width) , m_height (height) , m_pixelFormat (format) , m_depthBits (depthBits) , m_stencilBits (stencilBits) , m_numSamples (numSamples) { } } // namespace tcu
446
6,989
#pragma once #include <util/generic/flags.h> #include <util/generic/string.h> #include <util/generic/yexception.h> namespace NFs { enum EFilePermission { FP_ALL_EXEC = 01, FP_ALL_WRITE = 02, FP_ALL_READ = 04, FP_GROUP_READ = 040, FP_GROUP_WRITE = 020, FP_GROUP_EXEC = 010, FP_OWNER_READ = 0400, FP_OWNER_WRITE = 0200, FP_OWNER_EXEC = 0100, FP_COMMON_FILE = 0777, FP_SECRET_FILE = 0700, FP_NONSECRET_FILE = 0744, }; Y_DECLARE_FLAGS(EFilePermissions, EFilePermission); /// Remove a file or empty directory /// /// @param[in] path Path to file or directory /// @returns true on success or false otherwise /// LastSystemError() is set in case of failure bool Remove(const TString& path); /// Remove a file or directory with contents /// /// @param[in] path Path to file or directory /// @throws void RemoveRecursive(const TString& path); /// Creates directory /// /// @param[in] path Path to the directory /// @param[in] mode Access permissions field; NOTE: ignored on win /// @returns true on success or false otherwise bool MakeDirectory(const TString& path, EFilePermissions mode); /// Creates directory /// /// @param[in] path Path to the directory /// @returns true on success or false otherwise /// NOTE: access permissions is set to 0777 inline bool MakeDirectory(const TString& path) { return MakeDirectory(path, FP_COMMON_FILE); } /// Creates directory and all non-existings parents /// /// @param[in] path Path to be created /// @param[in] mode Access permissions field; NOTE: ignored on win /// @param[in] alwaysCreate Throw if path already exists or failed to create /// @returns true if target path created or exists (and directory) bool MakeDirectoryRecursive(const TString& path, EFilePermissions mode, bool alwaysCreate); /// Creates directory and all non-existings parents /// /// @param[in] path Path to be created /// @param[in] mode Access permissions field; NOTE: ignored on win /// @returns true if target path created or exists (and directory) inline bool MakeDirectoryRecursive(const TString& path, EFilePermissions mode) { return MakeDirectoryRecursive(path, mode, false); } /// Creates directory and all non-existings parents /// /// @param[in] path Path to be created /// @returns true if target path created or exists (and directory) inline bool MakeDirectoryRecursive(const TString& path) { return MakeDirectoryRecursive(path, FP_COMMON_FILE, false); } /// Rename a file or directory. /// Removes newPath if it exists /// /// @param[in] oldPath Path to file or directory to rename /// @param[in] newPath New path of file or directory /// @returns true on success or false otherwise /// LastSystemError() is set in case of failure bool Rename(const TString& oldPath, const TString& newPath); /// Creates a new directory entry for a file /// or creates a new one with the same content /// /// @param[in] existingPath Path to an existing file /// @param[in] newPath New path of file void HardLinkOrCopy(const TString& existingPath, const TString& newPath); /// Creates a new directory entry for a file /// /// @param[in] existingPath Path to an existing file /// @param[in] newPath New path of file /// @returns true if new link was created or false otherwise /// LastSystemError() is set in case of failure bool HardLink(const TString& existingPath, const TString& newPath); /// Creates a symlink to a file /// /// @param[in] targetPath Path to a target file /// @param[in] linkPath Path of symlink /// @returns true if new link was created or false otherwise /// LastSystemError() is set in case of failure bool SymLink(const TString& targetPath, const TString& linkPath); /// Reads value of a symbolic link /// /// @param[in] path Path to a symlink /// @returns File path that a symlink points to TString ReadLink(const TString& path); /// Append contents of a file to a new file /// /// @param[in] dstPath Path to a destination file /// @param[in] srcPath Path to a source file void Cat(const TString& dstPath, const TString& srcPath); /// Copy contents of a file to a new file /// /// @param[in] existingPath Path to an existing file /// @param[in] newPath New path of file void Copy(const TString& existingPath, const TString& newPath); /// Returns path to the current working directory /// /// Note: is not threadsafe TString CurrentWorkingDirectory(); /// Changes current working directory /// /// @param[in] path Path for new cwd /// Note: is not threadsafe void SetCurrentWorkingDirectory(TString path); /// Checks if file exists /// /// @param[in] path Path to check bool Exists(const TString& path); /// Ensures that file exists /// /// @param[in] path Path to check /// @returns input argument inline const TString& EnsureExists(const TString& path) { Y_ENSURE_EX(Exists(path), TFileError{} << "Path " << path << " does not exists (checked from cwd:" << NFs::CurrentWorkingDirectory() << ")"); return path; } } Y_DECLARE_OPERATORS_FOR_FLAGS(NFs::EFilePermissions)
2,141
335
{ "word": "Dough", "definitions": [ "A thick, malleable mixture of flour and liquid, used for baking into bread or pastry.", "Money." ], "parts-of-speech": "Noun" }
83
12,718
<filename>lib/libc/musl/src/unistd/isatty.c<gh_stars>1000+ #include <unistd.h> #include <errno.h> #include <sys/ioctl.h> #include "syscall.h" int isatty(int fd) { struct winsize wsz; unsigned long r = syscall(SYS_ioctl, fd, TIOCGWINSZ, &wsz); if (r == 0) return 1; if (errno != EBADF) errno = ENOTTY; return 0; }
156
335
<reponame>Safal08/Hacktoberfest-1 { "word": "Vulvovaginitis", "definitions": [ "Inflammation of the vulva and vagina." ], "parts-of-speech": "Noun" }
83
575
<reponame>Yannic/chromium // Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "ui/views/examples/textfield_example.h" #include <stddef.h> #include <memory> #include <utility> #include "base/strings/utf_string_conversions.h" #include "ui/base/l10n/l10n_util.h" #include "ui/events/event.h" #include "ui/gfx/color_palette.h" #include "ui/gfx/range/range.h" #include "ui/gfx/render_text.h" #include "ui/views/controls/button/label_button.h" #include "ui/views/controls/label.h" #include "ui/views/controls/textfield/textfield.h" #include "ui/views/examples/examples_window.h" #include "ui/views/examples/grit/views_examples_resources.h" #include "ui/views/layout/grid_layout.h" #include "ui/views/view.h" using l10n_util::GetStringUTF16; using l10n_util::GetStringUTF8; namespace views { namespace examples { namespace { template <class K, class T> T* MakeRow(GridLayout* layout, std::unique_ptr<K> view1, std::unique_ptr<T> view2) { layout->StartRowWithPadding(0, 0, 0, 5); if (view1) layout->AddView(std::move(view1)); return layout->AddView(std::move(view2)); } } // namespace TextfieldExample::TextfieldExample() : ExampleBase(GetStringUTF8(IDS_TEXTFIELD_SELECT_LABEL).c_str()) {} TextfieldExample::~TextfieldExample() = default; void TextfieldExample::CreateExampleView(View* container) { auto name = std::make_unique<Textfield>(); name->set_controller(this); auto password = std::make_unique<Textfield>(); password->SetTextInputType(ui::TEXT_INPUT_TYPE_PASSWORD); password->SetPlaceholderText( GetStringUTF16(IDS_TEXTFIELD_PASSWORD_PLACEHOLDER)); password->set_controller(this); auto disabled = std::make_unique<Textfield>(); disabled->SetEnabled(false); disabled->SetText(GetStringUTF16(IDS_TEXTFIELD_DISABLED_PLACEHOLDER)); auto read_only = std::make_unique<Textfield>(); read_only->SetReadOnly(true); read_only->SetText(GetStringUTF16(IDS_TEXTFFIELD_READ_ONLY_PLACEHOLDER)); auto invalid = std::make_unique<Textfield>(); invalid->SetInvalid(true); auto rtl = std::make_unique<Textfield>(); rtl->ChangeTextDirectionAndLayoutAlignment(base::i18n::RIGHT_TO_LEFT); GridLayout* layout = container->SetLayoutManager(std::make_unique<views::GridLayout>()); ColumnSet* column_set = layout->AddColumnSet(0); column_set->AddColumn(GridLayout::LEADING, GridLayout::FILL, 0.2f, GridLayout::ColumnSize::kUsePreferred, 0, 0); column_set->AddColumn(GridLayout::FILL, GridLayout::FILL, 0.8f, GridLayout::ColumnSize::kUsePreferred, 0, 0); name_ = MakeRow( layout, std::make_unique<Label>(GetStringUTF16(IDS_TEXTFIELD_NAME_LABEL)), std::move(name)); password_ = MakeRow( layout, std::make_unique<Label>(GetStringUTF16(IDS_TEXTFIELD_PASSWORD_LABEL)), std::move(password)); disabled_ = MakeRow( layout, std::make_unique<Label>(GetStringUTF16(IDS_TEXTFIELD_DISABLED_LABEL)), std::move(disabled)); read_only_ = MakeRow( layout, std::make_unique<Label>(GetStringUTF16(IDS_TEXTFIELD_READ_ONLY_LABEL)), std::move(read_only)); invalid_ = MakeRow( layout, std::make_unique<Label>(GetStringUTF16(IDS_TEXTFIELD_INVALID_LABEL)), std::move(invalid)); rtl_ = MakeRow( layout, std::make_unique<Label>(GetStringUTF16(IDS_TEXTFIELD_RTL_LABEL)), std::move(rtl)); MakeRow<View, Label>( layout, nullptr, std::make_unique<Label>(GetStringUTF16(IDS_TEXTFIELD_NAME_LABEL))); show_password_ = MakeRow<View, LabelButton>( layout, nullptr, std::make_unique<LabelButton>( base::BindRepeating( [](TextfieldExample* example) { PrintStatus( "Password [%s]", base::UTF16ToUTF8(example->password_->GetText()).c_str()); }, base::Unretained(this)), GetStringUTF16(IDS_TEXTFIELD_SHOW_PASSWORD_LABEL))); set_background_ = MakeRow<View, LabelButton>( layout, nullptr, std::make_unique<LabelButton>( base::BindRepeating(&Textfield::SetBackgroundColor, base::Unretained(password_), gfx::kGoogleRed300), GetStringUTF16(IDS_TEXTFIELD_BACKGROUND_LABEL))); clear_all_ = MakeRow<View, LabelButton>( layout, nullptr, std::make_unique<LabelButton>( base::BindRepeating(&TextfieldExample::ClearAllButtonPressed, base::Unretained(this)), GetStringUTF16(IDS_TEXTFIELD_CLEAR_LABEL))); append_ = MakeRow<View, LabelButton>( layout, nullptr, std::make_unique<LabelButton>( base::BindRepeating(&TextfieldExample::AppendButtonPressed, base::Unretained(this)), GetStringUTF16(IDS_TEXTFIELD_APPEND_LABEL))); set_ = MakeRow<View, LabelButton>( layout, nullptr, std::make_unique<LabelButton>( base::BindRepeating(&TextfieldExample::SetButtonPressed, base::Unretained(this)), GetStringUTF16(IDS_TEXTFIELD_SET_LABEL))); set_style_ = MakeRow<View, LabelButton>( layout, nullptr, std::make_unique<LabelButton>( base::BindRepeating(&TextfieldExample::SetStyleButtonPressed, base::Unretained(this)), GetStringUTF16(IDS_TEXTFIELD_SET_STYLE_LABEL))); } bool TextfieldExample::HandleKeyEvent(Textfield* sender, const ui::KeyEvent& key_event) { return false; } bool TextfieldExample::HandleMouseEvent(Textfield* sender, const ui::MouseEvent& mouse_event) { PrintStatus("HandleMouseEvent click count=%d", mouse_event.GetClickCount()); return false; } void TextfieldExample::ClearAllButtonPressed() { name_->SetText(std::u16string()); password_->SetText(std::u16string()); disabled_->SetText(std::u16string()); read_only_->SetText(std::u16string()); invalid_->SetText(std::u16string()); rtl_->SetText(std::u16string()); } void TextfieldExample::AppendButtonPressed() { const std::u16string append_text = GetStringUTF16(IDS_TEXTFIELD_APPEND_UPDATE_TEXT); name_->AppendText(append_text); password_->AppendText(append_text); disabled_->SetText(append_text); read_only_->AppendText(append_text); invalid_->AppendText(append_text); rtl_->AppendText(append_text); } void TextfieldExample::SetButtonPressed() { const std::u16string set_text = GetStringUTF16(IDS_TEXTFIELD_SET_UPDATE_TEXT); name_->SetText(set_text); password_->SetText(set_text); disabled_->SetText(set_text); read_only_->SetText(set_text); invalid_->SetText(set_text); rtl_->SetText(set_text); } void TextfieldExample::SetStyleButtonPressed() { if (name_->GetText().empty()) return; name_->SetColor(SK_ColorGREEN); const size_t fifth = name_->GetText().length() / 5; if (!fifth) return; const gfx::Range big_range(1 * fifth, 4 * fifth); name_->ApplyStyle(gfx::TEXT_STYLE_UNDERLINE, true, big_range); name_->ApplyColor(SK_ColorBLUE, big_range); const gfx::Range small_range(2 * fifth, 3 * fifth); name_->ApplyStyle(gfx::TEXT_STYLE_ITALIC, true, small_range); name_->ApplyStyle(gfx::TEXT_STYLE_UNDERLINE, false, small_range); name_->ApplyColor(SK_ColorRED, small_range); } } // namespace examples } // namespace views
3,123
310
<filename>gear/software/d/djay-pro.json<gh_stars>100-1000 { "name": "<NAME>", "description": "DJ software for the Mac.", "url": "https://www.algoriddim.com/djay-pro-mac" }
73
4,812
<gh_stars>1000+ #!/usr/bin/env python import sys import time if len(sys.argv) != 2: raise ValueError("unexpected number of args") if sys.argv[1] == "--gtest_list_tests": print("""\ FirstTest. subTestA subTestB subTestC """) sys.exit(0) elif not sys.argv[1].startswith("--gtest_filter="): raise ValueError("unexpected argument: %r" % (sys.argv[1])) test_name = sys.argv[1].split('=',1)[1] if test_name == 'FirstTest.subTestA': print('I am subTest A, I PASS') print('[ PASSED ] 1 test.') sys.exit(0) elif test_name == 'FirstTest.subTestB': print('I am subTest B, I am slow') time.sleep(6) print('[ PASSED ] 1 test.') sys.exit(0) elif test_name == 'FirstTest.subTestC': print('I am subTest C, I will hang') while True: pass else: raise SystemExit("error: invalid test name: %r" % (test_name,))
375
335
{ "word": "Torque", "definitions": [ "Apply torque or a twisting force to (an object)" ], "parts-of-speech": "Verb" }
63
2,027
<reponame>giuseppe/quay<filename>endpoints/api/subscribe_models_pre_oci.py<gh_stars>1000+ from data.model.notification import create_unique_notification, delete_notifications_by_kind from data.model.user import get_private_repo_count, get_user_or_org from endpoints.api.subscribe_models_interface import SubscribeInterface class PreOCIModel(SubscribeInterface): """ PreOCIModel implements the data model for build triggers using a database schema before it was changed to support the OCI specification. """ def get_private_repo_count(self, username): return get_private_repo_count(username) def create_unique_notification(self, kind_name, target_username, metadata={}): target = get_user_or_org(target_username) create_unique_notification(kind_name, target, metadata) def delete_notifications_by_kind(self, target_username, kind_name): target = get_user_or_org(target_username) delete_notifications_by_kind(target, kind_name) data_model = PreOCIModel()
348
6,160
<reponame>nll/jmeter<gh_stars>1000+ /* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to you under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT 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 org.apache.jmeter.gui; import java.awt.event.ActionEvent; import java.awt.event.KeyEvent; import java.util.HashSet; import java.util.Set; import javax.swing.JMenu; import javax.swing.JMenuItem; import javax.swing.MenuElement; import org.apache.jmeter.exceptions.IllegalUserActionException; import org.apache.jmeter.gui.action.AbstractAction; import org.apache.jmeter.gui.action.ActionNames; import org.apache.jmeter.gui.action.ActionRouter; import org.apache.jmeter.gui.plugin.MenuCreator; import org.apache.jmeter.util.JMeterUtils; public class HtmlReportAction extends AbstractAction implements MenuCreator { private static Set<String> commands = new HashSet<>(); private HtmlReportUI htmlReportPanel; static { commands.add(ActionNames.HTML_REPORT); } public HtmlReportAction() { super(); } @Override public void doAction(ActionEvent e) throws IllegalUserActionException { htmlReportPanel = new HtmlReportUI(); htmlReportPanel.showInputDialog(getParentFrame(e)); } @Override public Set<String> getActionNames() { return commands; } @Override public JMenuItem[] getMenuItemsAtLocation(MENU_LOCATION location) { if (location != MENU_LOCATION.TOOLS) { return new JMenuItem[0]; } // Use the action name as resource key because the action name is used by JMeterMenuBar too when changing languages. JMenuItem menuItem = new JMenuItem(JMeterUtils.getResString(ActionNames.HTML_REPORT), KeyEvent.VK_UNDEFINED); menuItem.setName(ActionNames.HTML_REPORT); menuItem.setActionCommand(ActionNames.HTML_REPORT); menuItem.setAccelerator(null); menuItem.addActionListener(ActionRouter.getInstance()); return new JMenuItem[] { menuItem }; } @Override public JMenu[] getTopLevelMenus() { return new JMenu[0]; } @Override public boolean localeChanged(MenuElement menu) { return false; } @Override public void localeChanged() { // NOOP } public HtmlReportUI getHtmlReportPanel() { return htmlReportPanel; } }
1,018
19,920
/* * Copyright (C) 2017 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT 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 com.google.android.exoplayer2.metadata.id3; import static com.google.android.exoplayer2.util.Util.castNonNull; import android.os.Parcel; import androidx.annotation.Nullable; import com.google.android.exoplayer2.util.Util; import java.util.Arrays; /** Chapter table of contents ID3 frame. */ public final class ChapterTocFrame extends Id3Frame { public static final String ID = "CTOC"; public final String elementId; public final boolean isRoot; public final boolean isOrdered; public final String[] children; private final Id3Frame[] subFrames; public ChapterTocFrame( String elementId, boolean isRoot, boolean isOrdered, String[] children, Id3Frame[] subFrames) { super(ID); this.elementId = elementId; this.isRoot = isRoot; this.isOrdered = isOrdered; this.children = children; this.subFrames = subFrames; } /* package */ ChapterTocFrame(Parcel in) { super(ID); this.elementId = castNonNull(in.readString()); this.isRoot = in.readByte() != 0; this.isOrdered = in.readByte() != 0; this.children = castNonNull(in.createStringArray()); int subFrameCount = in.readInt(); subFrames = new Id3Frame[subFrameCount]; for (int i = 0; i < subFrameCount; i++) { subFrames[i] = in.readParcelable(Id3Frame.class.getClassLoader()); } } /** Returns the number of sub-frames. */ public int getSubFrameCount() { return subFrames.length; } /** Returns the sub-frame at {@code index}. */ public Id3Frame getSubFrame(int index) { return subFrames[index]; } @Override public boolean equals(@Nullable Object obj) { if (this == obj) { return true; } if (obj == null || getClass() != obj.getClass()) { return false; } ChapterTocFrame other = (ChapterTocFrame) obj; return isRoot == other.isRoot && isOrdered == other.isOrdered && Util.areEqual(elementId, other.elementId) && Arrays.equals(children, other.children) && Arrays.equals(subFrames, other.subFrames); } @Override public int hashCode() { int result = 17; result = 31 * result + (isRoot ? 1 : 0); result = 31 * result + (isOrdered ? 1 : 0); result = 31 * result + (elementId != null ? elementId.hashCode() : 0); return result; } @Override public void writeToParcel(Parcel dest, int flags) { dest.writeString(elementId); dest.writeByte((byte) (isRoot ? 1 : 0)); dest.writeByte((byte) (isOrdered ? 1 : 0)); dest.writeStringArray(children); dest.writeInt(subFrames.length); for (Id3Frame subFrame : subFrames) { dest.writeParcelable(subFrame, 0); } } public static final Creator<ChapterTocFrame> CREATOR = new Creator<ChapterTocFrame>() { @Override public ChapterTocFrame createFromParcel(Parcel in) { return new ChapterTocFrame(in); } @Override public ChapterTocFrame[] newArray(int size) { return new ChapterTocFrame[size]; } }; }
1,310
852
#include "DataFormats/ForwardDetId/interface/HGCEEDetId.h" #include "FWCore/Utilities/interface/Exception.h" #include <ostream> #include <iostream> const HGCEEDetId HGCEEDetId::Undefined(ForwardEmpty, 0, 0, 0, 0, 0); HGCEEDetId::HGCEEDetId() : DetId() {} HGCEEDetId::HGCEEDetId(uint32_t rawid) : DetId(rawid) {} HGCEEDetId::HGCEEDetId(ForwardSubdetector subdet, int zp, int lay, int sec, int subsec, int cell) : DetId(Forward, subdet) { id_ |= ((cell & kHGCEECellMask) << kHGCEECellOffset); id_ |= ((sec & kHGCEESectorMask) << kHGCEESectorOffset); if (subsec < 0) subsec = 0; id_ |= ((subsec & kHGCEESubSectorMask) << kHGCEESubSectorOffset); id_ |= ((lay & kHGCEELayerMask) << kHGCEELayerOffset); if (zp > 0) id_ |= ((zp & kHGCEEZsideMask) << kHGCEEZsideOffset); } HGCEEDetId::HGCEEDetId(const DetId& gen) { if (!gen.null()) { ForwardSubdetector subdet = (ForwardSubdetector(gen.subdetId())); if (gen.det() != Forward || (subdet != HGCEE)) { throw cms::Exception("Invalid DetId") << "Cannot initialize HGCEEDetId from " << std::hex << gen.rawId() << std::dec; } } id_ = gen.rawId(); } HGCEEDetId& HGCEEDetId::operator=(const DetId& gen) { if (!gen.null()) { ForwardSubdetector subdet = (ForwardSubdetector(gen.subdetId())); if (gen.det() != Forward || (subdet != HGCEE)) { throw cms::Exception("Invalid DetId") << "Cannot assign HGCEEDetId from " << std::hex << gen.rawId() << std::dec; } } id_ = gen.rawId(); return (*this); } std::ostream& operator<<(std::ostream& s, const HGCEEDetId& id) { switch (id.subdet()) { case (HGCEE): return s << "isEE=" << id.isEE() << " zpos=" << id.zside() << " layer=" << id.layer() << " phi subSector=" << id.subsector() << " sector=" << id.sector() << " cell=" << id.cell(); default: return s << id.rawId(); } }
817
679
<reponame>Grosskopf/openoffice<gh_stars>100-1000 /************************************************************** * * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. * *************************************************************/ #ifndef _MMCONFIGITEM_HXX #define _MMCONFIGITEM_HXX #include <com/sun/star/uno/Sequence.hxx> #include <com/sun/star/uno/Reference.hxx> #include <tools/resary.hxx> #include <swdbdata.hxx> #include "swdllapi.h" #include "sharedconnection.hxx" namespace com{namespace sun{namespace star{ namespace sdbc{ class XDataSource; class XConnection; class XResultSet; } namespace sdbcx{ class XColumnsSupplier; } }}} class SwMailMergeConfigItem_Impl; class SwView; /*-- 06.04.2004 10:43:35--------------------------------------------------- -----------------------------------------------------------------------*/ struct SwDocMergeInfo { long nStartPageInTarget; long nEndPageInTarget; long nDBRow; }; class SW_DLLPUBLIC SwMailMergeConfigItem { // com::sun::star::uno::Sequence< ::rtl::OUString> m_aSavedDocuments; SwMailMergeConfigItem_Impl* m_pImpl; //session information - not stored in configuration bool m_bAddressInserted; bool m_bMergeDone; bool m_bGreetingInserted; sal_Int32 m_nGreetingMoves; ::rtl::OUString m_rAddressBlockFrame; ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any> m_aSelection; sal_uInt16 m_nStartPrint; sal_uInt16 m_nEndPrint; ::rtl::OUString m_sSelectedPrinter; SwView* m_pSourceView; SwView* m_pTargetView; public: SwMailMergeConfigItem(); ~SwMailMergeConfigItem(); enum Gender { FEMALE, MALE, NEUTRAL }; void Commit(); const ResStringArray& GetDefaultAddressHeaders() const; void SetCurrentConnection( ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XDataSource> xSource, SharedConnection xConnection, ::com::sun::star::uno::Reference< ::com::sun::star::sdbcx::XColumnsSupplier> xColumnsSupplier, const SwDBData& rDBData); ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XDataSource> GetSource(); SharedConnection GetConnection(); ::com::sun::star::uno::Reference< ::com::sun::star::sdbcx::XColumnsSupplier> GetColumnsSupplier(); ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XResultSet> GetResultSet() const; void DisposeResultSet(); ::rtl::OUString& GetFilter() const; void SetFilter(::rtl::OUString&); ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any> GetSelection()const; void SetSelection(::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any > rSelection); void SetCurrentDBData( const SwDBData& rDBData); const SwDBData& GetCurrentDBData() const; // move absolute, nTarget == -1 -> goto last record sal_Int32 MoveResultSet(sal_Int32 nTarget); sal_Int32 GetResultSetPosition()const; bool IsResultSetFirstLast(bool& bIsFirst, bool& bIsLast); bool IsRecordExcluded(sal_Int32 nRecord); void ExcludeRecord(sal_Int32 nRecord, bool bExclude); const com::sun::star::uno::Sequence< ::rtl::OUString>& GetSavedDocuments() const; void AddSavedDocument(::rtl::OUString rName); sal_Bool IsOutputToLetter()const; void SetOutputToLetter(sal_Bool bSet); sal_Bool IsAddressBlock()const; void SetAddressBlock(sal_Bool bSet); sal_Bool IsHideEmptyParagraphs() const; void SetHideEmptyParagraphs(sal_Bool bSet); const com::sun::star::uno::Sequence< ::rtl::OUString> GetAddressBlocks() const; void SetAddressBlocks(const com::sun::star::uno::Sequence< ::rtl::OUString>& rBlocks); void SetCurrentAddressBlockIndex( sal_Int32 nSet ); sal_Int32 GetCurrentAddressBlockIndex() const; sal_Bool IsIncludeCountry() const; rtl::OUString& GetExcludeCountry() const; void SetCountrySettings(sal_Bool bSet, const rtl::OUString& sCountry); sal_Bool IsIndividualGreeting(sal_Bool bInEMail) const; void SetIndividualGreeting(sal_Bool bSet, sal_Bool bInEMail); sal_Bool IsGreetingLine(sal_Bool bInEMail) const; void SetGreetingLine(sal_Bool bSet, sal_Bool bInEMail); const com::sun::star::uno::Sequence< ::rtl::OUString> GetGreetings(Gender eType) const; void SetGreetings(Gender eType, const com::sun::star::uno::Sequence< ::rtl::OUString>& rBlocks); sal_Int32 GetCurrentGreeting(Gender eType) const; void SetCurrentGreeting(Gender eType, sal_Int32 nIndex); //the content of the gender column that marks it as female const ::rtl::OUString& GetFemaleGenderValue() const; void SetFemaleGenderValue(const ::rtl::OUString rValue); //returns the assignment in the order of the default headers (GetDefaultAddressHeaders()) com::sun::star::uno::Sequence< ::rtl::OUString > GetColumnAssignment( const SwDBData& rDBData ) const; void SetColumnAssignment( const SwDBData& rDBData, const com::sun::star::uno::Sequence< ::rtl::OUString>& ); bool IsAddressFieldsAssigned() const; bool IsGreetingFieldsAssigned() const; //e-Mail settings: ::rtl::OUString GetMailDisplayName() const; void SetMailDisplayName(const ::rtl::OUString& rName); ::rtl::OUString GetMailAddress() const; void SetMailAddress(const ::rtl::OUString& rAddress); sal_Bool IsMailReplyTo() const; void SetMailReplyTo(sal_Bool bSet); ::rtl::OUString GetMailReplyTo() const; void SetMailReplyTo(const ::rtl::OUString& rReplyTo); ::rtl::OUString GetMailServer() const; void SetMailServer(const ::rtl::OUString& rAddress); sal_Int16 GetMailPort() const; void SetMailPort(sal_Int16 nSet); sal_Bool IsSecureConnection() const; void SetSecureConnection(sal_Bool bSet); sal_Bool IsAuthentication() const; void SetAuthentication(sal_Bool bSet); ::rtl::OUString GetMailUserName() const; void SetMailUserName(const ::rtl::OUString& rName); ::rtl::OUString GetMailPassword() const; void SetMailPassword(const ::rtl::OUString& rPassword); sal_Bool IsSMTPAfterPOP() const; void SetSMTPAfterPOP(sal_Bool bSet); ::rtl::OUString GetInServerName() const; void SetInServerName(const ::rtl::OUString& rServer); sal_Int16 GetInServerPort() const; void SetInServerPort(sal_Int16 nSet); sal_Bool IsInServerPOP() const; void SetInServerPOP(sal_Bool bSet); ::rtl::OUString GetInServerUserName() const; void SetInServerUserName(const ::rtl::OUString& rName); ::rtl::OUString GetInServerPassword() const; void SetInServerPassword(const ::rtl::OUString& rPassword); //session information bool IsAddressInserted() const { return m_bAddressInserted; } void SetAddressInserted(const ::rtl::OUString& rFrameName) { m_bAddressInserted = true; m_rAddressBlockFrame = rFrameName; } bool IsGreetingInserted() const { return m_bGreetingInserted; } void SetGreetingInserted() { m_bGreetingInserted = true; } // counts the moves in the layout page void MoveGreeting( sal_Int32 nMove) { m_nGreetingMoves += nMove;} sal_Int32 GetGreetingMoves() const { return m_nGreetingMoves;} bool IsMergeDone() const { return m_bMergeDone;} void SetMergeDone( ) { m_bMergeDone = true; } // new source document - reset some flags void DocumentReloaded(); bool IsMailAvailable() const; // notify a completed merge, provid the appropriate e-Mail address if available void AddMergedDocument(SwDocMergeInfo& rInfo); //returns the page and database cursor information of each merged document SwDocMergeInfo& GetDocumentMergeInfo(sal_uInt32 nDocument); sal_uInt32 GetMergedDocumentCount() const; void SetPrintRange( sal_uInt16 nStartDocument, sal_uInt16 nEndDocument) {m_nStartPrint = nStartDocument; m_nEndPrint = nEndDocument;} sal_uInt16 GetPrintRangeStart() const {return m_nStartPrint;} sal_uInt16 GetPrintRangeEnd() const {return m_nEndPrint;} const ::rtl::OUString& GetSelectedPrinter() const {return m_sSelectedPrinter;} void SetSelectedPrinter(const ::rtl::OUString& rSet ) {m_sSelectedPrinter = rSet;} SwView* GetTargetView(); void SetTargetView(SwView* pView); SwView* GetSourceView(); void SetSourceView(SwView* pView); //helper methods ::rtl::OUString GetAssignedColumn(sal_uInt32 nColumn)const; }; #endif
5,543
945
/*========================================================================= * * Copyright NumFOCUS * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0.txt * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * *=========================================================================*/ #ifndef itkQuadEdgeMeshEulerOperatorFlipEdgeFunction_hxx #define itkQuadEdgeMeshEulerOperatorFlipEdgeFunction_hxx #include "itkQuadEdgeMeshEulerOperatorFlipEdgeFunction.h" #include "itkQuadEdgeMeshEulerOperatorJoinFacetFunction.h" #include "itkQuadEdgeMeshEulerOperatorSplitFacetFunction.h" namespace itk { template <typename TMesh, typename TQEType> QuadEdgeMeshEulerOperatorFlipEdgeFunction<TMesh, TQEType>::QuadEdgeMeshEulerOperatorFlipEdgeFunction() : Superclass() {} template <typename TMesh, typename TQEType> void QuadEdgeMeshEulerOperatorFlipEdgeFunction<TMesh, TQEType>::PrintSelf(std::ostream & os, Indent indent) const { Superclass::PrintSelf(os, indent); os << indent << "m_EdgeStatus: "; switch (m_EdgeStatus) { default: case EdgeStatusEnum::STANDARD_CONFIG: os << "STANDARD_CONFIG" << std::endl; break; case EdgeStatusEnum::EDGE_NULL: os << "EDGE_NULL" << std::endl; break; case EdgeStatusEnum::MESH_NULL: os << "MESH_NULL" << std::endl; break; case EdgeStatusEnum::NON_INTERNAL_EDGE: os << "NON_INTERNAL_EDGE" << std::endl; break; case EdgeStatusEnum::NON_TRIANGULAR_RIGHT_FACE: os << "NON_TRIANGULAR_RIGHT_FACE" << std::endl; break; case EdgeStatusEnum::NON_TRIANGULAR_LEFT_FACE: os << "NON_TRIANGULAR_LEFT_FACE" << std::endl; break; case EdgeStatusEnum::EXISTING_OPPOSITE_EDGE: os << "EXISTING_OPPOSITE_EDGE" << std::endl; break; } } template <typename TMesh, typename TQEType> void QuadEdgeMeshEulerOperatorFlipEdgeFunction<TMesh, TQEType>::CheckStatus(QEType * h) { #ifndef NDEBUG if (h == (QEType *)nullptr) { m_EdgeStatus = EdgeStatusEnum::EDGE_NULL; return; } if (!this->m_Mesh) { m_EdgeStatus = EdgeStatusEnum::MESH_NULL; return; } #endif if (!h->IsInternal()) { m_EdgeStatus = EdgeStatusEnum::NON_INTERNAL_EDGE; return; } if (!h->IsLnextOfTriangle()) { m_EdgeStatus = EdgeStatusEnum::NON_TRIANGULAR_LEFT_FACE; return; } if (!h->GetSym()->IsLnextOfTriangle()) { m_EdgeStatus = EdgeStatusEnum::NON_TRIANGULAR_RIGHT_FACE; return; } if (this->m_Mesh->FindEdge(h->GetOnext()->GetDestination(), h->GetSym()->GetOnext()->GetDestination()) != nullptr) { m_EdgeStatus = EdgeStatusEnum::EXISTING_OPPOSITE_EDGE; return; } m_EdgeStatus = EdgeStatusEnum::STANDARD_CONFIG; } template <typename TMesh, typename TQEType> auto QuadEdgeMeshEulerOperatorFlipEdgeFunction<TMesh, TQEType>::Evaluate(QEType * h) -> OutputType { // // X ---<-G---- X X ---<-G---- X // | / | | \ | // | / | | \ | // | / | | \ | // | / | | \ | // | ^ | | \ | // | h | | newEdge | // | / | | \ | // | / | | \ | // | / | | \ | // | / | | \ | // X ---H->---- X X ---H->---- X // CheckStatus(h); switch (m_EdgeStatus) { default: case EdgeStatusEnum::STANDARD_CONFIG: return Process(h); case EdgeStatusEnum::EDGE_NULL: itkDebugMacro("No Edge to flip."); return ((QEType *)nullptr); case EdgeStatusEnum::MESH_NULL: itkDebugMacro("No mesh present."); return ((QEType *)nullptr); case EdgeStatusEnum::NON_INTERNAL_EDGE: itkDebugMacro("Can only flip internal edge."); return ((QEType *)nullptr); case EdgeStatusEnum::NON_TRIANGULAR_LEFT_FACE: itkDebugMacro("Can only flip edge for triangles."); return ((QEType *)nullptr); case EdgeStatusEnum::NON_TRIANGULAR_RIGHT_FACE: itkDebugMacro("Can only flip edge for triangles."); return ((QEType *)nullptr); case EdgeStatusEnum::EXISTING_OPPOSITE_EDGE: itkDebugMacro("The opposite edge already exists."); return ((QEType *)nullptr); } } template <typename TMesh, typename TQEType> auto QuadEdgeMeshEulerOperatorFlipEdgeFunction<TMesh, TQEType>::Process(QEType * h) -> OutputType { // The following is not optimum, since we create a new face (with JoinFacet) // that is immediately deleted (with SplitFacet). Still we chose to write it // that way in the sake of maintenance simplicity (as long as JoinFacet and // SplitFacet are working, this operator does it job). using JoinFacet = QuadEdgeMeshEulerOperatorJoinFacetFunction<MeshType, QEType>; using SplitFacet = QuadEdgeMeshEulerOperatorSplitFacetFunction<MeshType, QEType>; QEType * G = h->GetLnext(); typename JoinFacet::Pointer joinFacet = JoinFacet::New(); joinFacet->SetInput(this->m_Mesh); QEType * H = joinFacet->Evaluate(h)->GetLnext(); typename SplitFacet::Pointer splitFacet = SplitFacet::New(); splitFacet->SetInput(this->m_Mesh); return (splitFacet->Evaluate(H, G)); } } // end namespace itk #endif
2,492
927
// // Reg.cpp // // Created by <NAME> on 1/16/21. // #include <iostream> #include <cmath> #include "Cost.hpp" #include "LinAlg/LinAlg.hpp" #include "Regularization/Reg.hpp" namespace MLPP{ double Cost::MSE(std::vector <double> y_hat, std::vector<double> y){ double sum = 0; for(int i = 0; i < y_hat.size(); i++){ sum += (y_hat[i] - y[i]) * (y_hat[i] - y[i]); } return sum / 2 * y_hat.size(); } double Cost::MSE(std::vector<std::vector<double>> y_hat, std::vector<std::vector<double>> y){ double sum = 0; for(int i = 0; i < y_hat.size(); i++){ for(int j = 0; j < y_hat[i].size(); j++){ sum += (y_hat[i][j] - y[i][j]) * (y_hat[i][j] - y[i][j]); } } return sum / 2 * y_hat.size(); } std::vector<double> Cost::MSEDeriv(std::vector <double> y_hat, std::vector<double> y){ LinAlg alg; return alg.subtraction(y_hat, y); } std::vector<std::vector<double>> Cost::MSEDeriv(std::vector<std::vector<double>> y_hat, std::vector<std::vector<double>> y){ LinAlg alg; return alg.subtraction(y_hat, y); } double Cost::RMSE(std::vector <double> y_hat, std::vector<double> y){ double sum = 0; for(int i = 0; i < y_hat.size(); i++){ sum += (y_hat[i] - y[i]) * (y_hat[i] - y[i]); } return sqrt(sum / y_hat.size()); } double Cost::RMSE(std::vector<std::vector<double>> y_hat, std::vector<std::vector<double>> y){ double sum = 0; for(int i = 0; i < y_hat.size(); i++){ for(int j = 0; j < y_hat[i].size(); j++){ sum += (y_hat[i][j] - y[i][j]) * (y_hat[i][j] - y[i][j]); } } return sqrt(sum / y_hat.size()); } std::vector<double> Cost::RMSEDeriv(std::vector <double> y_hat, std::vector<double> y){ LinAlg alg; return alg.scalarMultiply(1/(2*sqrt(MSE(y_hat, y))), MSEDeriv(y_hat, y)); } std::vector<std::vector<double>> Cost::RMSEDeriv(std::vector<std::vector<double>> y_hat, std::vector<std::vector<double>> y){ LinAlg alg; return alg.scalarMultiply(1/(2/sqrt(MSE(y_hat, y))), MSEDeriv(y_hat, y)); } double Cost::MAE(std::vector <double> y_hat, std::vector<double> y){ double sum = 0; for(int i = 0; i < y_hat.size(); i++){ sum += abs((y_hat[i] - y[i])); } return sum / y_hat.size(); } double Cost::MAE(std::vector<std::vector<double>> y_hat, std::vector<std::vector<double>> y){ double sum = 0; for(int i = 0; i < y_hat.size(); i++){ for(int j = 0; j < y_hat[i].size(); j++){ sum += abs((y_hat[i][j] - y[i][j])); } } return sum / y_hat.size(); } std::vector<double> Cost::MAEDeriv(std::vector <double> y_hat, std::vector <double> y){ std::vector<double> deriv; deriv.resize(y_hat.size()); for(int i = 0; i < deriv.size(); i++){ if(y_hat[i] < 0){ deriv[i] = -1; } else if(y_hat[i] == 0){ deriv[i] = 0; } else{ deriv[i] = 1; } } return deriv; } std::vector<std::vector<double>> Cost::MAEDeriv(std::vector<std::vector<double>> y_hat, std::vector<std::vector<double>> y){ std::vector<std::vector<double>> deriv; deriv.resize(y_hat.size()); for(int i = 0; i < deriv.size(); i++){ deriv.resize(y_hat[i].size()); } for(int i = 0; i < deriv.size(); i++){ for(int j = 0; j < deriv[i].size(); j++){ if(y_hat[i][j] < 0){ deriv[i][j] = -1; } else if(y_hat[i][j] == 0){ deriv[i][j] = 0; } else{ deriv[i][j] = 1; } } } return deriv; } double Cost::MBE(std::vector <double> y_hat, std::vector<double> y){ double sum = 0; for(int i = 0; i < y_hat.size(); i++){ sum += (y_hat[i] - y[i]); } return sum / y_hat.size(); } double Cost::MBE(std::vector<std::vector<double>> y_hat, std::vector<std::vector<double>> y){ double sum = 0; for(int i = 0; i < y_hat.size(); i++){ for(int j = 0; j < y_hat[i].size(); j++){ sum += (y_hat[i][j] - y[i][j]); } } return sum / y_hat.size(); } std::vector<double> Cost::MBEDeriv(std::vector <double> y_hat, std::vector<double> y){ LinAlg alg; return alg.onevec(y_hat.size()); } std::vector<std::vector<double>> Cost::MBEDeriv(std::vector<std::vector<double>> y_hat, std::vector<std::vector<double>> y){ LinAlg alg; return alg.onemat(y_hat.size(), y_hat[0].size()); } double Cost::LogLoss(std::vector <double> y_hat, std::vector<double> y){ double sum = 0; double eps = 1e-8; for(int i = 0; i < y_hat.size(); i++){ sum += -(y[i] * std::log(y_hat[i] + eps) + (1 - y[i]) * std::log(1 - y_hat[i] + eps)); } return sum / y_hat.size(); } double Cost::LogLoss(std::vector <std::vector<double>> y_hat, std::vector <std::vector<double>> y){ double sum = 0; double eps = 1e-8; for(int i = 0; i < y_hat.size(); i++){ for(int j = 0; j < y_hat[i].size(); j++){ sum += -(y[i][j] * std::log(y_hat[i][j] + eps) + (1 - y[i][j]) * std::log(1 - y_hat[i][j] + eps)); } } return sum / y_hat.size(); } std::vector<double> Cost::LogLossDeriv(std::vector <double> y_hat, std::vector<double> y){ LinAlg alg; return alg.addition(alg.scalarMultiply(-1, alg.elementWiseDivision(y, y_hat)), alg.elementWiseDivision(alg.scalarMultiply(-1, alg.scalarAdd(-1, y)), alg.scalarMultiply(-1, alg.scalarAdd(-1, y_hat)))); } std::vector<std::vector<double>> Cost::LogLossDeriv(std::vector<std::vector<double>> y_hat, std::vector<std::vector<double>> y){ LinAlg alg; return alg.addition(alg.scalarMultiply(-1, alg.elementWiseDivision(y, y_hat)), alg.elementWiseDivision(alg.scalarMultiply(-1, alg.scalarAdd(-1, y)), alg.scalarMultiply(-1, alg.scalarAdd(-1, y_hat)))); } double Cost::CrossEntropy(std::vector<double> y_hat, std::vector<double> y){ double sum = 0; for(int i = 0; i < y_hat.size(); i++){ sum += y[i] * std::log(y_hat[i]); } return -1 * sum; } double Cost::CrossEntropy(std::vector<std::vector<double>> y_hat, std::vector<std::vector<double>> y){ double sum = 0; for(int i = 0; i < y_hat.size(); i++){ for(int j = 0; j < y_hat[i].size(); j++){ sum += y[i][j] * std::log(y_hat[i][j]); } } return -1 * sum; } std::vector<double> Cost::CrossEntropyDeriv(std::vector<double> y_hat, std::vector<double> y){ LinAlg alg; return alg.scalarMultiply(-1, alg.elementWiseDivision(y, y_hat)); } std::vector<std::vector<double>> Cost::CrossEntropyDeriv(std::vector<std::vector<double>> y_hat, std::vector<std::vector<double>> y){ LinAlg alg; return alg.scalarMultiply(-1, alg.elementWiseDivision(y, y_hat)); } double Cost::HuberLoss(std::vector <double> y_hat, std::vector<double> y, double delta){ LinAlg alg; double sum = 0; for(int i = 0; i < y_hat.size(); i++){ if(abs(y[i] - y_hat[i]) <= delta){ sum += (y[i] - y_hat[i]) * (y[i] - y_hat[i]); } else{ sum += 2 * delta * abs(y[i] - y_hat[i]) - delta * delta; } } return sum; } double Cost::HuberLoss(std::vector<std::vector<double>> y_hat, std::vector<std::vector<double>> y, double delta){ LinAlg alg; double sum = 0; for(int i = 0; i < y_hat.size(); i++){ for(int j = 0; j < y_hat[i].size(); j++){ if(abs(y[i][j] - y_hat[i][j]) <= delta){ sum += (y[i][j] - y_hat[i][j]) * (y[i][j] - y_hat[i][j]); } else{ sum += 2 * delta * abs(y[i][j] - y_hat[i][j]) - delta * delta; } } } return sum; } std::vector<double> Cost::HuberLossDeriv(std::vector <double> y_hat, std::vector<double> y, double delta){ LinAlg alg; double sum = 0; std::vector<double> deriv; deriv.resize(y_hat.size()); for(int i = 0; i < y_hat.size(); i++){ if(abs(y[i] - y_hat[i]) <= delta){ deriv.push_back(-(y[i] - y_hat[i])); } else{ if(y_hat[i] > 0 || y_hat[i] < 0){ deriv.push_back(2 * delta * (y_hat[i]/abs(y_hat[i]))); } else{ deriv.push_back(0); } } } return deriv; } std::vector<std::vector<double>> Cost::HuberLossDeriv(std::vector<std::vector<double>> y_hat, std::vector<std::vector<double>> y, double delta){ LinAlg alg; double sum = 0; std::vector<std::vector<double>> deriv; deriv.resize(y_hat.size()); for(int i = 0; i < deriv.size(); i++){ deriv[i].resize(y_hat[i].size()); } for(int i = 0; i < y_hat.size(); i++){ for(int j = 0; j < y_hat[i].size(); j++){ if(abs(y[i][j] - y_hat[i][j]) <= delta){ deriv[i].push_back(-(y[i][j] - y_hat[i][j])); } else{ if(y_hat[i][j] > 0 || y_hat[i][j] < 0){ deriv[i].push_back(2 * delta * (y_hat[i][j]/abs(y_hat[i][j]))); } else{ deriv[i].push_back(0); } } } } return deriv; } double Cost::HingeLoss(std::vector <double> y_hat, std::vector<double> y){ double sum = 0; for(int i = 0; i < y_hat.size(); i++){ sum += fmax(0, 1 - y[i] * y_hat[i]); } return sum / y_hat.size(); } double Cost::HingeLoss(std::vector<std::vector<double>> y_hat, std::vector<std::vector<double>> y){ double sum = 0; for(int i = 0; i < y_hat.size(); i++){ for(int j = 0; j < y_hat[i].size(); j++){ sum += fmax(0, 1 - y[i][j] * y_hat[i][j]); } } return sum / y_hat.size(); } std::vector<double> Cost::HingeLossDeriv(std::vector <double> y_hat, std::vector<double> y){ std::vector<double> deriv; deriv.resize(y_hat.size()); for(int i = 0; i < y_hat.size(); i++){ if(1 - y[i] * y_hat[i] > 0){ deriv[i] = -y[i]; } else{ deriv[i] = 0; } } return deriv; } std::vector<std::vector<double>> Cost::HingeLossDeriv(std::vector<std::vector<double>> y_hat, std::vector<std::vector<double>> y){ std::vector<std::vector<double>> deriv; for(int i = 0; i < y_hat.size(); i++){ for(int j = 0; j < y_hat[i].size(); j++){ if(1 - y[i][j] * y_hat[i][j] > 0){ deriv[i][j] = -y[i][j]; } else{ deriv[i][j] = 0; } } } return deriv; } double Cost::WassersteinLoss(std::vector <double> y_hat, std::vector<double> y){ double sum = 0; for(int i = 0; i < y_hat.size(); i++){ sum += y_hat[i] * y[i]; } return -sum / y_hat.size(); } double Cost::WassersteinLoss(std::vector<std::vector<double>> y_hat, std::vector<std::vector<double>> y){ double sum = 0; for(int i = 0; i < y_hat.size(); i++){ for(int j = 0; j < y_hat[i].size(); j++){ sum += y_hat[i][j] * y[i][j]; } } return -sum / y_hat.size(); } std::vector<double> Cost::WassersteinLossDeriv(std::vector<double> y_hat, std::vector<double> y){ LinAlg alg; return alg.scalarMultiply(-1, y); // Simple. } std::vector<std::vector<double>> Cost::WassersteinLossDeriv(std::vector<std::vector<double>> y_hat, std::vector<std::vector<double>> y){ LinAlg alg; return alg.scalarMultiply(-1, y); // Simple. } double Cost::HingeLoss(std::vector <double> y_hat, std::vector<double> y, std::vector<double> weights, double C){ LinAlg alg; Reg regularization; return C * HingeLoss(y_hat, y) + regularization.regTerm(weights, 1, 0, "Ridge"); } double Cost::HingeLoss(std::vector<std::vector<double>> y_hat, std::vector<std::vector<double>> y, std::vector<std::vector<double>> weights, double C){ LinAlg alg; Reg regularization; return C * HingeLoss(y_hat, y) + regularization.regTerm(weights, 1, 0, "Ridge"); } std::vector<double> Cost::HingeLossDeriv(std::vector <double> y_hat, std::vector<double> y, double C){ LinAlg alg; Reg regularization; return alg.scalarMultiply(C, HingeLossDeriv(y_hat, y)); } std::vector<std::vector<double>> Cost::HingeLossDeriv(std::vector<std::vector<double>> y_hat, std::vector<std::vector<double>> y, double C){ LinAlg alg; Reg regularization; return alg.scalarMultiply(C, HingeLossDeriv(y_hat, y)); } double Cost::dualFormSVM(std::vector<double> alpha, std::vector<std::vector<double>> X, std::vector<double> y){ LinAlg alg; std::vector<std::vector<double>> Y = alg.diag(y); // Y is a diagnoal matrix. Y[i][j] = y[i] if i = i, else Y[i][j] = 0. Yt = Y. std::vector<std::vector<double>> K = alg.matmult(X, alg.transpose(X)); // TO DO: DON'T forget to add non-linear kernelizations. std::vector<std::vector<double>> Q = alg.matmult(alg.matmult(alg.transpose(Y), K), Y); double alphaQ = alg.matmult(alg.matmult({alpha}, Q), alg.transpose({alpha}))[0][0]; std::vector<double> one = alg.onevec(alpha.size()); return -alg.dot(one, alpha) + 0.5 * alphaQ; } std::vector<double> Cost::dualFormSVMDeriv(std::vector<double> alpha, std::vector<std::vector<double>> X, std::vector<double> y){ LinAlg alg; std::vector<std::vector<double>> Y = alg.zeromat(y.size(), y.size()); for(int i = 0; i < y.size(); i++){ Y[i][i] = y[i]; // Y is a diagnoal matrix. Y[i][j] = y[i] if i = i, else Y[i][j] = 0. Yt = Y. } std::vector<std::vector<double>> K = alg.matmult(X, alg.transpose(X)); // TO DO: DON'T forget to add non-linear kernelizations. std::vector<std::vector<double>> Q = alg.matmult(alg.matmult(alg.transpose(Y), K), Y); std::vector<double> alphaQDeriv = alg.mat_vec_mult(Q, alpha); std::vector<double> one = alg.onevec(alpha.size()); return alg.subtraction(alphaQDeriv, one); } }
8,235
2,542
<gh_stars>1000+ // ------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License (MIT). See License.txt in the repo root for license information. // ------------------------------------------------------------ #pragma once namespace FabricTest { class FabricTestClientsTracker { DENY_COPY(FabricTestClientsTracker) public: FabricTestClientsTracker(__in FabricTestFederation &); virtual ~FabricTestClientsTracker(); std::shared_ptr<Common::FabricNodeConfig> GetFabricNodeConfig(std::wstring const &); Api::IClientFactoryPtr CreateClientFactoryOnNode(std::wstring const & nodeIdString); Api::IClientFactoryPtr CreateCachedClientFactoryOnNode(CommandLineParser const &); private: FabricTestFederation & testFederation_; std::unordered_map<std::wstring, Api::IClientFactoryPtr> clientFactories_; }; }
312
311
<filename>src/main/java/org/javacs/debug/proto/ThreadEvent.java package org.javacs.debug.proto; /** Event message for 'thread' event type. The event indicates that a thread has started or exited. */ public class ThreadEvent extends Event { // event: 'thread'; public ThreadEventBody body; }
92
839
/** * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT 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 org.apache.cxf.tools.wadlto; import java.io.InputStream; import java.io.OutputStream; import java.util.Arrays; import java.util.List; import org.apache.cxf.common.util.StringUtils; import org.apache.cxf.tools.common.CommandInterfaceUtils; import org.apache.cxf.tools.common.ToolContext; import org.apache.cxf.tools.common.ToolException; import org.apache.cxf.tools.common.toolspec.ToolContainer; import org.apache.cxf.tools.common.toolspec.ToolRunner; import org.apache.cxf.tools.wadlto.jaxrs.JAXRSContainer; public class WADLToJava { private String[] args; public WADLToJava() { args = new String[0]; } public WADLToJava(String[] pargs) { args = pargs; } private boolean isExitOnFinish() { String exit = System.getProperty("exitOnFinish", "true"); if (StringUtils.isEmpty(exit)) { return false; } return "YES".equalsIgnoreCase(exit) || "TRUE".equalsIgnoreCase(exit); } public void run(ToolContext context) throws Exception { run(context, null); } public void run(ToolContext context, OutputStream os) throws Exception { Class<? extends ToolContainer> containerClass = JAXRSContainer.class; InputStream toolspecStream = getResourceAsStream(containerClass, "jaxrs-toolspec.xml"); ToolRunner.runTool(containerClass, toolspecStream, false, args, isExitOnFinish(), context, os); } protected boolean isVerbose() { return isSet(new String[]{"-V", "-verbose"}); } private boolean isSet(String[] keys) { if (args == null) { return false; } List<String> pargs = Arrays.asList(args); for (String key : keys) { if (pargs.contains(key)) { return true; } } return false; } public static void main(String[] pargs) { System.setProperty("org.apache.cxf.JDKBugHacks.defaultUsesCaches", "true"); CommandInterfaceUtils.commandCommonMain(); WADLToJava w2j = new WADLToJava(pargs); try { w2j.run(new ToolContext()); } catch (ToolException ex) { System.err.println(); System.err.println("WADLToJava Error: " + ex.getMessage()); System.err.println(); if (w2j.isVerbose()) { ex.printStackTrace(); } if (w2j.isExitOnFinish()) { System.exit(1); } } catch (Exception ex) { System.err.println("WADLToJava Error: " + ex.getMessage()); System.err.println(); if (w2j.isVerbose()) { ex.printStackTrace(); } if (w2j.isExitOnFinish()) { System.exit(1); } } } private static InputStream getResourceAsStream(Class<?> clz, String file) { return clz.getResourceAsStream(file); } }
1,679
825
// // HMMeasureRenderObject.h // Hummer // // Created by 唐佳诚 on 2020/10/23. // #import <Hummer/HMRenderObject.h> #import <Hummer/HMYogaUtility.h> NS_ASSUME_NONNULL_BEGIN FOUNDATION_EXTERN YOGA_TYPE_WRAPPER(YGSize) HMCompatibleMeasure(YOGA_TYPE_WRAPPER(YGNodeRef) node, float width, YOGA_TYPE_WRAPPER(YGMeasureMode) widthMode, float height, YOGA_TYPE_WRAPPER(YGMeasureMode) heightMode); FOUNDATION_EXTERN CGFloat HMSanitizeMeasurement(CGFloat constrainedSize, CGFloat measuredSize, YOGA_TYPE_WRAPPER(YGMeasureMode) measureMode); /** * 兼容 YogaKit 而用 */ @interface HMCompatibleRenderObject : HMRenderObject @end NS_ASSUME_NONNULL_END
267
310
{ "name": "<NAME>", "description": "A tiny flash drive.", "url": "https://www.amazon.com/SanDisk-Cruzer-Low-Profile-Drive-SDCZ33-016G-B35/dp/B005FYNSZA" }
68
7,899
#include "bitmap_find.h" #include "../base/UTHashTable_c.h" #include <assert.h> /* Node to be used in hash table. */ struct shiftNode { UTHashNode_HEAD /* Make structure hashable */ MMRGBHex color; /* Key */ MMPoint offset; /* Value */ }; /* --- Hash table helper functions --- */ /* Adds hex-color/offset pair to jump table. */ static void addNodeToTable(UTHashTable *table, MMRGBHex color, MMPoint offset); /* Returns node associated with color in jump table, or NULL if it * doesn't exist. */ static struct shiftNode *nodeForColor(UTHashTable *table, MMRGBHex color); /* Returns nonzero (true) if table has key, or zero (false) if not. */ #define tableHasKey(table, color) (nodeForColor(table, color) != NULL) /* --- Boyer-Moore helper functions --- */ /* Calculates the first table for use in a Boyer-Moore search algorithm. * Table is in the form [colors: shift_values], where colors are those in * |needle|, and the shift values are each color's distance from the rightmost * offset. All other colors are assumed to have a shift value equal to the * length of needle. */ static void initBadShiftTable(UTHashTable *jumpTable, MMBitmapRef needle); /* Frees memory occupied by calling initBadShiftTable(). * Currently this is just an alias for destroyHashTable(). */ #define destroyBadShiftTable(jumpTable) destroyHashTable(jumpTable) /* Returns true if |needle| is found in |haystack| at |offset|. */ static int needleAtOffset(MMBitmapRef needle, MMBitmapRef haystack, MMPoint offset, float tolerance); /* --- --- */ /* An modification of the Boyer-Moore-Horspool Algorithm, only applied to * bitmaps and colors instead of strings and characters. * * TODO: The Boyer-Moore algorithm (with the second jump table) would probably * be more efficient, but this was simpler (for now). * * The jump table (|badShiftTable|) is passed as a parameter to avoid being * recalculated each time. It should be a pointer to a UTHashTable init'd with * initBadShiftTable(). * * Returns 0 and sets |point| to the starting point of |needle| in |haystack| * if |needle| was found in |haystack|, or returns -1 if not. */ static int findBitmapInRectAt(MMBitmapRef needle, MMBitmapRef haystack, MMPoint *point, MMRect rect, float tolerance, MMPoint startPoint, UTHashTable *badShiftTable) { const size_t scanHeight = rect.size.height - needle->height; const size_t scanWidth = rect.size.width - needle->width; MMPoint pointOffset = startPoint; /* const MMPoint lastPoint = MMPointMake(needle->width - 1, needle->height - 1); */ /* Sanity check */ if (needle->height > haystack->height || needle->width > haystack->width || !MMBitmapRectInBounds(haystack, rect)) { return -1; } assert(point != NULL); assert(needle != NULL); assert(needle->height > 0 && needle->width > 0); assert(haystack != NULL); assert(haystack->height > 0 && haystack->width > 0); assert(badShiftTable != NULL); /* Search |haystack|, while |needle| can still be within it. */ while (pointOffset.y <= scanHeight) { /* struct shiftNode *node = NULL; MMRGBHex lastColor; */ while (pointOffset.x <= scanWidth) { /* Check offset in |haystack| for |needle|. */ if (needleAtOffset(needle, haystack, pointOffset, tolerance)) { // ++pointOffset.x; // ++pointOffset.y; *point = pointOffset; return 0; } /* Otherwise, calculate next x offset to check. */ /* * Note that here we are getting the skip value based on the last * color of |needle|, no matter where we didn't match. The * alternative of pretending that the mismatched color was the previous * color is slower in the normal case. */ /* lastColor = MMRGBHexAtPoint(haystack, pointOffset.x + lastPoint.x, pointOffset.y + lastPoint.y); */ /* TODO: This fails on certain edge cases (issue#7). */ /* When a color is encountered that does not occur in |needle|, we can * safely skip ahead for the whole length of |needle|. * Otherwise, use the value stored in the jump table. */ /* node = nodeForColor(badShiftTable, lastColor); pointOffset.x += (node == NULL) ? needle->width : (node->offset).x; */ /* For now, be naive. */ ++pointOffset.x; } pointOffset.x = rect.origin.x; /* lastColor = MMRGBHexAtPoint(haystack, pointOffset.x + lastPoint.x, pointOffset.y + lastPoint.y); node = nodeForColor(badShiftTable, lastColor); pointOffset.y += node == NULL ? lastPoint.y : (node->offset).y; */ /* TODO: The above commented out code fails at certain edge cases, e.g.: * Needle: [B, b * b, b, * B, b] * Haystack: [w, w, w, w, w * w, w, w, w, b * w, w, w, b, b * w, w, w, w, b] * The previous algorithm noticed that the first 3 x 3 block had nothing * in common with the image, and thus, after scanning the first row, * skipped three blocks downward to scan the next (which didn't exist, * so the loop ended). However, the needle was hidden IN-BETWEEN this * jump -- skipping was appropriate for scanning the column but not * the row. * * I need to figure out a more optimal solution; temporarily I am just * scanning every single y coordinate, only skipping on x's. This * always works, but is probably not optimal. */ ++pointOffset.y; } return -1; } int findBitmapInRect(MMBitmapRef needle, MMBitmapRef haystack, MMPoint *point, MMRect rect, float tolerance) { UTHashTable badShiftTable; int ret; initBadShiftTable(&badShiftTable, needle); ret = findBitmapInRectAt(needle, haystack, point, rect, tolerance, MMPointZero, &badShiftTable); destroyBadShiftTable(&badShiftTable); return ret; } MMPointArrayRef findAllBitmapInRect(MMBitmapRef needle, MMBitmapRef haystack, MMRect rect, float tolerance) { MMPointArrayRef pointArray = createMMPointArray(0); MMPoint point = MMPointZero; UTHashTable badShiftTable; initBadShiftTable(&badShiftTable, needle); while (findBitmapInRectAt(needle, haystack, &point, rect, tolerance, point, &badShiftTable) == 0) { const size_t scanWidth = (haystack->width - needle->width) + 1; MMPointArrayAppendPoint(pointArray, point); ITER_NEXT_POINT(point, scanWidth, 0); } destroyBadShiftTable(&badShiftTable); return pointArray; } size_t countOfBitmapInRect(MMBitmapRef needle, MMBitmapRef haystack, MMRect rect, float tolerance) { size_t count = 0; MMPoint point = MMPointZero; UTHashTable badShiftTable; initBadShiftTable(&badShiftTable, needle); while (findBitmapInRectAt(needle, haystack, &point, rect, tolerance, point, &badShiftTable) == 0) { const size_t scanWidth = (haystack->width - needle->width) + 1; ++count; ITER_NEXT_POINT(point, scanWidth, 0); } destroyBadShiftTable(&badShiftTable); return count; } /* --- Boyer-Moore helper functions --- */ static void initBadShiftTable(UTHashTable *jumpTable, MMBitmapRef needle) { const MMPoint lastPoint = MMPointMake(needle->width - 1, needle->height - 1); const size_t maxColors = needle->width * needle->height; MMPoint scan; /* Allocate max size initially to avoid a million calls to malloc(). */ initHashTable(jumpTable, maxColors, sizeof(struct shiftNode)); /* Populate jumpTable with analysis of |needle|. */ for (scan.y = lastPoint.y; ; --scan.y) { for (scan.x = lastPoint.x; ; --scan.x) { MMRGBHex color = MMRGBHexAtPoint(needle, scan.x, scan.y); if (!tableHasKey(jumpTable, color)) { addNodeToTable(jumpTable, color, MMPointMake(needle->width - scan.x, needle->height - scan.y)); } if (scan.x == 0) break; /* Avoid infinite loop from unsigned type. */ } if (scan.y == 0) break; } } static int needleAtOffset(MMBitmapRef needle, MMBitmapRef haystack, MMPoint offset, float tolerance) { const MMPoint lastPoint = MMPointMake(needle->width - 1, needle->height - 1); MMPoint scan; /* Note that |needle| is searched backwards, in accordance with the * Boyer-Moore search algorithm. */ for (scan.y = lastPoint.y; ; --scan.y) { for (scan.x = lastPoint.x; ; --scan.x) { MMRGBHex ncolor = MMRGBHexAtPoint(needle, scan.x, scan.y); MMRGBHex hcolor = MMRGBHexAtPoint(haystack, offset.x + scan.x, offset.y + scan.y); if (!MMRGBHexSimilarToColor(ncolor, hcolor, tolerance)) return 0; if (scan.x == 0) break; /* Avoid infinite loop from unsigned type. */ } if (scan.y == 0) break; } return 1; } /* --- Hash table helper functions --- */ static void addNodeToTable(UTHashTable *table, MMRGBHex hexColor, MMPoint offset) { struct shiftNode *node = getNewNode(table); node->color = hexColor; node->offset = offset; UTHASHTABLE_ADD_INT(table, color, node, struct shiftNode); } static struct shiftNode *nodeForColor(UTHashTable *table, MMRGBHex color) { struct shiftNode *uttable = table->uttable; struct shiftNode *node; HASH_FIND_INT(uttable, &color, node); return node; }
3,747
925
/***************************************************************************** * * * PrimeSense PSCommon Library * * Copyright (C) 2012 PrimeSense Ltd. * * * * This file is part of PSCommon. * * * * Licensed under the Apache License, Version 2.0 (the "License"); * * you may not use this file except in compliance with the License. * * You may obtain a copy of the License at * * * * http://www.apache.org/licenses/LICENSE-2.0 * * * * Unless required by applicable law or agreed to in writing, software * * distributed under the License is distributed on an "AS IS" BASIS, * * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * * See the License for the specific language governing permissions and * * limitations under the License. * * * *****************************************************************************/ #ifndef _XN_MATH_H_ #define _XN_MATH_H_ #include <math.h> #include <XnPlatform.h> namespace xnl { namespace Math { inline XnInt32 Abs(XnInt32 i) { return abs(i); } inline XnFloat Abs(XnFloat f) { return fabs(f); } template <class T> XnBool IsZero(T value, T tolerance) { return Abs(value) < tolerance; } inline XnFloat Sqr(XnFloat f) { return f*f; } inline XnFloat Sqrt(XnFloat f) { return sqrt(f); } inline XnDouble Sqrt(XnDouble f) { return sqrt(f); } template <class T> T Min(T value1, T value2) { return value1 < value2 ? value1 : value2; } template <class T> T Max(T value1, T value2) { return value1 > value2 ? value1 : value2; } template<class T> T Max(const T a, const T b, const T c) { return Max(a, Max(b,c)); } template<class T> T Max(const T a, const T b, const T c, const T d) { return Max(a, Max(b,c,d)); } template <class T> T Crop(T value, T upper, T lower) { return Min(upper, Max(lower, value)); } template <class T> XnBool IsBetween(T value, T upper, T lower) { return value < upper && value > lower; } template<class T> XnInt32 ArgMax(const T a, const T b) { return (a>b) ? 0 : 1; } template<class T> XnInt32 ArgMax(const T a, const T b, const T c) { return (a>b) ? ((a>c) ? 0 : 2) : ((b>c) ? 1 : 2); } template<class T> XnInt32 ArgMax(const T a, const T b, const T c, const T d) { return (a>d) ? ArgMax(a,b,c) : ArgMax(b,c,d)+1; } template<class T> XnInt32 ArgMin(const T a, const T b) { return (a<b) ? 0 : 1; } template<class T> XnInt32 ArgMin(const T a, const T b, const T c) { return (a<b) ? ((a<c) ? 0 : 2) : ((b<c) ? 1 : 2); } template<class T> T MaxAbs(const T a, const T b) { return Max(Abs(a),Abs(b)); } template<class T> T MaxAbs(const T a, const T b, const T c) { return Max(Abs(a),Abs(b),Abs(c)); } template<class T> T MaxAbs(const T a, const T b, const T c, const T d) { return Max(Abs(a),Abs(b),Abs(c),Abs(d)); } template<class T> void Exchange(T &a, T &b) { T c=a; a=b; b=c; } template<class T> void Swap(T &a, T &b) { T c=a; a=b; b=c; } template<class T> void ExchangeSort(T &a, T &b) { if(a > b) Exchange(a,b); } template<class T> void ExchangeSort(T &a, T &b, T &c) { if(a > b) Exchange(a,b); if(b > c) Exchange(b,c); if(a > b) Exchange(a,b); } template<class T> struct OneOverSqrtHelper { static T OneOverSqrt(T MagSq) {return T(1.0)/Sqrt(MagSq); } }; template<class T> inline XnBool IsNaN(const T& scalar) { #if defined(_WIN32) return _isnan(scalar)!=0; #elif defined(_ARC) return (scalar != scalar); // return isnan(scalar); #else return isnan(scalar); #endif } #define round(x) ((XnInt32)floor((x)+0.5f)) #ifndef M_PI #define M_PI 3.14159265358979323846 #endif static const XnFloat ONE_THIRD = (XnFloat)(1.0f/3.0f); static const XnFloat ONE_SIXTH = (XnFloat)(1.0f/6.0f); static const XnFloat ROOT_TWO = (XnFloat)Sqrt(2.0f); static const XnFloat ROOT_THREE = (XnFloat)Sqrt(3.0f); static const XnFloat PI = (XnFloat)M_PI; static const XnFloat HALF_PI = (XnFloat)(0.5f*M_PI); static const XnFloat TWO_PI = (XnFloat)(2.0f*M_PI); static const XnFloat ROOT_TWO_PI = (XnFloat)Sqrt(2.0f*M_PI); static const XnFloat DTR = (XnFloat)(M_PI / 180.0f); static const XnFloat RTD = (XnFloat)(180.0f / M_PI); static const XnFloat PHI = (XnFloat)((-1.0f + Sqrt(5.0f)) / 2.0f); } // Math } // xnl #endif // _XN_MATH_H_
2,684
421
<reponame>profelis/daScript<filename>src/builtin/module_builtin_vector_ctor.cpp<gh_stars>100-1000 #include "daScript/misc/platform.h" #include "module_builtin.h" #include "daScript/ast/ast_interop.h" #include "daScript/simulate/simulate_nodes.h" #include "daScript/ast/ast_policy_types.h" #include "daScript/simulate/simulate_visit_op.h" #include "daScript/simulate/sim_policy.h" namespace das { // VECTOR C-TOR template <typename TT, typename Policy, int vecS> struct SimNode_VecCtor; #if defined(_MSC_VER) #pragma warning(push) #pragma warning(disable:4244) #endif template <typename TT, typename Policy> struct SimNode_VecCtor<TT,Policy,1> : SimNode_CallBase { SimNode_VecCtor(const LineInfo & at) : SimNode_CallBase(at) {} virtual SimNode * visit ( SimVisitor & vis ) override { V_BEGIN(); V_OP(VecCtor_1); V_SUB(arguments[0]); V_END(); } virtual vec4f eval(Context & context) override { DAS_PROFILE_NODE vec4f argValue; evalArgs(context, &argValue); return Policy::splats(cast<TT>::to(argValue)); } }; template <typename TT, typename Policy> struct SimNode_VecCtor<TT,Policy,2> : SimNode_CallBase { SimNode_VecCtor(const LineInfo & at) : SimNode_CallBase(at) {} virtual SimNode * visit ( SimVisitor & vis ) override { V_BEGIN(); V_OP(VecCtor_2); V_SUB(arguments[0]); V_SUB(arguments[1]); V_END(); } virtual vec4f eval(Context & context) override { DAS_PROFILE_NODE vec4f argValues[2]; evalArgs(context, argValues); alignas(16) TT ret[2]; ret[0] = cast<TT>::to(argValues[0]); ret[1] = cast<TT>::to(argValues[1]); return Policy::setXY(ret); } }; template <typename TT, typename Policy> struct SimNode_VecCtor<TT,Policy,3> : SimNode_CallBase { SimNode_VecCtor(const LineInfo & at) : SimNode_CallBase(at) {} virtual SimNode * visit ( SimVisitor & vis ) override { V_BEGIN(); V_OP(VecCtor_3); V_SUB(arguments[0]); V_SUB(arguments[1]); V_SUB(arguments[2]); V_END(); } virtual vec4f eval(Context & context) override { DAS_PROFILE_NODE vec4f argValues[3]; evalArgs(context, argValues); alignas(16) TT ret[4]; ret[0] = cast<TT>::to(argValues[0]); ret[1] = cast<TT>::to(argValues[1]); ret[2] = cast<TT>::to(argValues[2]); ret[3] = 0; return Policy::setAligned(ret); } }; template <typename TT, typename Policy> struct SimNode_VecCtor<TT,Policy,4> : SimNode_CallBase { SimNode_VecCtor(const LineInfo & at) : SimNode_CallBase(at) {} virtual SimNode * visit ( SimVisitor & vis ) override { V_BEGIN(); V_OP(VecCtor_4); V_SUB(arguments[0]); V_SUB(arguments[1]); V_SUB(arguments[2]); V_SUB(arguments[3]); V_END(); } virtual vec4f eval(Context & context) override { DAS_PROFILE_NODE vec4f argValues[4]; evalArgs(context, argValues); alignas(16) TT ret[4]; ret[0] = cast<TT>::to(argValues[0]); ret[1] = cast<TT>::to(argValues[1]); ret[2] = cast<TT>::to(argValues[2]); ret[3] = cast<TT>::to(argValues[3]); return Policy::setAligned(ret); } }; template <typename TT, typename Policy> struct SimNode_Range1Ctor: SimNode_CallBase { SimNode_Range1Ctor(const LineInfo & at) : SimNode_CallBase(at) {} virtual SimNode * visit ( SimVisitor & vis ) override { V_BEGIN(); V_OP(Range1Ctor); V_SUB(arguments[0]); V_END(); } virtual vec4f eval(Context & context) override { DAS_PROFILE_NODE vec4f argValue; evalArgs(context, &argValue); alignas(16) TT ret[2]; ret[0] = 0; ret[1] = cast<TT>::to(argValue); return Policy::setXY(ret); } }; #if defined(_MSC_VER) #pragma warning(pop) #endif #define ADD_VEC_CTOR_1(VTYPE,VNAME) \ addFunction ( make_smart<BuiltInFn<SimNode_Zero,VTYPE>> (#VTYPE,lib,"v_zero",false) ); \ addFunction ( make_smart<BuiltInFn<SimNode_VecCtor<float, SimPolicy<VTYPE>,1>,VTYPE,float>> (#VTYPE,lib,VNAME,false) ); \ addFunction ( make_smart<BuiltInFn<SimNode_VecCtor<int32_t, SimPolicy<VTYPE>,1>,VTYPE,int32_t>> (#VTYPE,lib,VNAME,false) ); \ addFunction ( make_smart<BuiltInFn<SimNode_VecCtor<uint32_t,SimPolicy<VTYPE>,1>,VTYPE,uint32_t>>(#VTYPE,lib,VNAME,false) ); #define ADD_RANGE_CTOR_1(VTYPE,VNAME) \ addFunction ( make_smart<BuiltInFn<SimNode_Zero,VTYPE>> (#VTYPE,lib,"v_zero",false) ); \ addFunction ( make_smart<BuiltInFn<SimNode_Range1Ctor<float, SimPolicy<VTYPE>>,VTYPE,float>> (#VTYPE,lib,"mk_" VNAME,false) ); \ addFunction ( make_smart<BuiltInFn<SimNode_Range1Ctor<double, SimPolicy<VTYPE>>,VTYPE,double>> (#VTYPE,lib,"mk_" VNAME,false) ); \ addFunction ( make_smart<BuiltInFn<SimNode_Range1Ctor<int32_t, SimPolicy<VTYPE>>,VTYPE,int32_t>> (#VTYPE,lib,"mk_" VNAME,false) ); \ addFunction ( make_smart<BuiltInFn<SimNode_Range1Ctor<uint32_t,SimPolicy<VTYPE>>,VTYPE,uint32_t>>(#VTYPE,lib,"mk_" VNAME,false) ); #define ADD_VEC_CTOR_2(VTYPE,VNAME) \ addFunction ( make_smart<BuiltInFn<SimNode_VecCtor<float, SimPolicy<VTYPE>,2>,VTYPE,float,float>> (#VTYPE,lib,VNAME,false) ); \ addFunction ( make_smart<BuiltInFn<SimNode_VecCtor<double, SimPolicy<VTYPE>,2>,VTYPE,double,double>> (#VTYPE,lib,VNAME,false) ); \ addFunction ( make_smart<BuiltInFn<SimNode_VecCtor<int32_t, SimPolicy<VTYPE>,2>,VTYPE,int32_t,int32_t>> (#VTYPE,lib,VNAME,false) ); \ addFunction ( make_smart<BuiltInFn<SimNode_VecCtor<uint32_t,SimPolicy<VTYPE>,2>,VTYPE,uint32_t,uint32_t>>(#VTYPE,lib,VNAME,false) ); #define ADD_VEC_CTOR_3(VTYPE,VNAME) \ addFunction ( make_smart<BuiltInFn<SimNode_VecCtor<float, SimPolicy<VTYPE>,3>,VTYPE,float,float,float>> (#VTYPE,lib,VNAME,false) ); \ addFunction ( make_smart<BuiltInFn<SimNode_VecCtor<double, SimPolicy<VTYPE>,3>,VTYPE,double,double,double>> (#VTYPE,lib,VNAME,false) ); \ addFunction ( make_smart<BuiltInFn<SimNode_VecCtor<int32_t, SimPolicy<VTYPE>,3>,VTYPE,int32_t,int32_t,int32_t>> (#VTYPE,lib,VNAME,false) ); \ addFunction ( make_smart<BuiltInFn<SimNode_VecCtor<uint32_t,SimPolicy<VTYPE>,3>,VTYPE,uint32_t,uint32_t,uint32_t>>(#VTYPE,lib,VNAME,false) ); #define ADD_VEC_CTOR_4(VTYPE,VNAME) \ addFunction ( make_smart<BuiltInFn<SimNode_VecCtor<float, SimPolicy<VTYPE>,4>,VTYPE,float,float,float,float>> (#VTYPE,lib,VNAME,false) ); \ addFunction ( make_smart<BuiltInFn<SimNode_VecCtor<double, SimPolicy<VTYPE>,4>,VTYPE,double,double,double,double>> (#VTYPE,lib,VNAME,false) ); \ addFunction ( make_smart<BuiltInFn<SimNode_VecCtor<int32_t, SimPolicy<VTYPE>,4>,VTYPE,int32_t,int32_t,int32_t,int32_t>> (#VTYPE,lib,VNAME,false) ); \ addFunction ( make_smart<BuiltInFn<SimNode_VecCtor<uint32_t,SimPolicy<VTYPE>,4>,VTYPE,uint32_t,uint32_t,uint32_t,uint32_t>>(#VTYPE,lib,VNAME,false) ); struct SimNode_Int4ToFloat4 : SimNode_CallBase { SimNode_Int4ToFloat4(const LineInfo & at) : SimNode_CallBase(at) {} virtual SimNode * visit ( SimVisitor & vis ) override { V_BEGIN(); V_OP(Int4ToFloat4); V_SUB(arguments[0]); V_END(); } virtual vec4f eval(Context & context) override { DAS_PROFILE_NODE vec4f i4 = arguments[0]->eval(context); return v_cvt_vec4f(v_cast_vec4i(i4)); } }; struct SimNode_UInt4ToFloat4 : SimNode_CallBase { SimNode_UInt4ToFloat4(const LineInfo & at) : SimNode_CallBase(at) {} virtual SimNode * visit ( SimVisitor & vis ) override { V_BEGIN(); V_OP(UInt4ToFloat4); V_SUB(arguments[0]); V_END(); } virtual vec4f eval(Context & context) override { DAS_PROFILE_NODE vec4f i4 = arguments[0]->eval(context); return v_cvt_vec4f(v_cast_vec4i(i4)); // todo: replace wrong cast } }; struct SimNode_Float4ToInt4 : SimNode_CallBase { SimNode_Float4ToInt4(const LineInfo & at) : SimNode_CallBase(at) {} virtual SimNode * visit ( SimVisitor & vis ) override { V_BEGIN(); V_OP(Float4ToInt4); V_SUB(arguments[0]); V_END(); } virtual vec4f eval(Context & context) override { DAS_PROFILE_NODE vec4f f4 = arguments[0]->eval(context); return v_cast_vec4f(v_cvt_vec4i(f4)); } }; struct SimNode_Float4ToUInt4 : SimNode_CallBase { SimNode_Float4ToUInt4(const LineInfo & at) : SimNode_CallBase(at) {} virtual SimNode * visit ( SimVisitor & vis ) override { V_BEGIN(); V_OP(Float4ToUInt4); V_SUB(arguments[0]); V_END(); } virtual vec4f eval(Context & context) override { DAS_PROFILE_NODE vec4f f4 = arguments[0]->eval(context); return v_cast_vec4f(v_cvt_vec4i(f4)); } }; struct SimNode_AnyIntToAnyInt : SimNode_CallBase { SimNode_AnyIntToAnyInt(const LineInfo & at) : SimNode_CallBase(at) {} virtual SimNode * visit ( SimVisitor & vis ) override { V_BEGIN(); V_OP(AnyIntToAnyInt); V_SUB(arguments[0]); V_END(); } virtual vec4f eval(Context & context) override { DAS_PROFILE_NODE return arguments[0]->eval(context); } }; void Module_BuiltIn::addVectorCtor(ModuleLibrary & lib) { // float2 ADD_VEC_CTOR_1(float2,"v_splats"); ADD_VEC_CTOR_2(float2,"float2"); addFunction( make_smart<BuiltInFn<SimNode_Int4ToFloat4, float2, int2>>("float2",lib,"cvt_float2",false) ); addFunction( make_smart<BuiltInFn<SimNode_UInt4ToFloat4,float2,uint2>>("float2",lib,"cvt_float2",false) ); // float3 ADD_VEC_CTOR_1(float3,"v_splats"); ADD_VEC_CTOR_3(float3,"float3"); addFunction( make_smart<BuiltInFn<SimNode_Int4ToFloat4, float3, int3>>("float3",lib,"cvt_float3",false) ); addFunction( make_smart<BuiltInFn<SimNode_UInt4ToFloat4,float3,uint3>>("float3",lib,"cvt_float3",false) ); addExtern<DAS_BIND_FUN(float3_from_xy_z)> (*this, lib, "float3", SideEffects::none, "float3_from_xy_z"); addExtern<DAS_BIND_FUN(float3_from_x_yz)> (*this, lib, "float3", SideEffects::none, "float3_from_x_yz"); // float4 ADD_VEC_CTOR_1(float4,"v_splats"); ADD_VEC_CTOR_4(float4,"float4"); addFunction( make_smart<BuiltInFn<SimNode_Int4ToFloat4, float4, int4>>("float4",lib,"cvt_float4",false) ); addFunction( make_smart<BuiltInFn<SimNode_UInt4ToFloat4,float4,uint4>>("float4",lib,"cvt_float4",false) ); addExtern<DAS_BIND_FUN(float4_from_xyz_w)> (*this, lib, "float4", SideEffects::none, "float4_from_xyz_w"); addExtern<DAS_BIND_FUN(float4_from_x_yzw)> (*this, lib, "float4", SideEffects::none, "float4_from_x_yzw"); addExtern<DAS_BIND_FUN(float4_from_xy_zw)> (*this, lib, "float4", SideEffects::none, "float4_from_xy_zw"); addExtern<DAS_BIND_FUN(float4_from_xy_z_w)> (*this, lib, "float4", SideEffects::none, "float4_from_xy_z_w"); addExtern<DAS_BIND_FUN(float4_from_x_yz_w)> (*this, lib, "float4", SideEffects::none, "float4_from_x_yz_w"); addExtern<DAS_BIND_FUN(float4_from_x_y_zw)> (*this, lib, "float4", SideEffects::none, "float4_from_x_y_zw"); // int2 ADD_VEC_CTOR_1(int2,"int2"); ADD_VEC_CTOR_2(int2,"int2"); addFunction( make_smart<BuiltInFn<SimNode_Float4ToInt4, int2, float2>>("int2",lib,"cvt_int2",false) ); addFunction( make_smart<BuiltInFn<SimNode_AnyIntToAnyInt,int2, uint2>>("int2",lib,"cvt_pass",false) ); // int3 ADD_VEC_CTOR_1(int3,"int3"); ADD_VEC_CTOR_3(int3,"int3"); addFunction( make_smart<BuiltInFn<SimNode_Float4ToInt4, int3, float3>>("int3",lib,"cvt_int3",false) ); addFunction( make_smart<BuiltInFn<SimNode_AnyIntToAnyInt,int3, uint3>>("int3",lib,"cvt_pass",false) ); // int4 ADD_VEC_CTOR_1(int4,"int4"); ADD_VEC_CTOR_4(int4,"int4"); addFunction( make_smart<BuiltInFn<SimNode_Float4ToInt4, int4, float4>>("int4",lib,"cvt_int4",false) ); addFunction( make_smart<BuiltInFn<SimNode_AnyIntToAnyInt,int4, uint4>>("int4",lib,"cvt_pass",false) ); // uint2 ADD_VEC_CTOR_1(uint2,"uint2"); ADD_VEC_CTOR_2(uint2,"uint2"); addFunction( make_smart<BuiltInFn<SimNode_Float4ToUInt4,uint2,float2>>("uint2",lib,"cvt_uint2",false) ); addFunction( make_smart<BuiltInFn<SimNode_AnyIntToAnyInt,uint2, int2>>("uint2",lib,"cvt_pass",false) ); // uint3 ADD_VEC_CTOR_1(uint3,"uint3"); ADD_VEC_CTOR_3(uint3,"uint3"); addFunction( make_smart<BuiltInFn<SimNode_Float4ToUInt4,uint3,float3>>("uint3",lib,"cvt_uint3",false) ); addFunction( make_smart<BuiltInFn<SimNode_AnyIntToAnyInt,uint3, int3>>("uint3",lib,"cvt_pass",false) ); // uint4 ADD_VEC_CTOR_1(uint4,"uint4"); ADD_VEC_CTOR_4(uint4,"uint4"); addFunction( make_smart<BuiltInFn<SimNode_Float4ToUInt4,uint4,float4>>("uint4",lib,"cvt_uint4",false) ); addFunction( make_smart<BuiltInFn<SimNode_AnyIntToAnyInt,uint4, int4>>("uint4",lib,"cvt_pass",false) ); // range ADD_RANGE_CTOR_1(range,"range"); ADD_VEC_CTOR_2(range,"range"); // urange ADD_RANGE_CTOR_1(urange,"urange"); ADD_VEC_CTOR_2(urange,"urange"); } }
6,992
713
from collections import Counter class Solution(object): def numSubmatrixSumTarget(self, matrix, target): """ :type matrix: List[List[int]] :type target: int :rtype: int """ if not matrix or not matrix[0]: return 0 rowCount, columnCount = len(matrix), len(matrix[0]) submatricesCount = 0 # For this double-for loop, we are calculating the prefix sum for each row in the matrix, which will be used later for row in range(rowCount): for column in range(1, columnCount): matrix[row][column] += matrix[row][column - 1] for columnStart in range(columnCount): for columnEnd in range(columnStart, columnCount): prefixSumCounter = Counter() prefixSumCounter[0] = 1 currentSumOfSubmatrix = 0 for row in range(rowCount): submatrixEnd = matrix[row][columnEnd] if columnStart: submatrixStart = matrix[row][columnStart - 1] else: submatrixStart = 0 currentSumOfSubmatrix += submatrixEnd - submatrixStart # increment current sum prefixSumOfSubmatrix = currentSumOfSubmatrix - target if prefixSumOfSubmatrix in prefixSumCounter: # check if there is a prefix subarray we can take out to reach target submatricesCount += prefixSumCounter[prefixSumOfSubmatrix] prefixSumCounter[currentSumOfSubmatrix] += 1 # add current sum to sum count return submatricesCount sol = Solution() matrix = [[0,1,0],[1,1,1],[0,1,0]] target = 0 out = sol.numSubmatrixSumTarget(matrix,target) print("Res: ", out)
848
562
<gh_stars>100-1000 #include <taglib/tlist.h> #include <taglib/fileref.h> int main() { TagLib::List<TagLib::FileRef> fileList; return 0; }
66
5,169
{ "name": "ImpactTutorial", "version": "0.0.1", "summary": "A step-based tutorial framework with functionality similar to Snapchat/Instagram Stories.", "platforms": { "ios": "10.0" }, "homepage": "https://github.com/joeynelson42/impactTutorial", "license": { "type": "MIT", "file": "LICENSE" }, "authors": { "Joey": "<EMAIL>" }, "source": { "git": "https://github.com/joeynelson42/impactTutorial.git", "tag": "0.0.1" }, "frameworks": "UIKit", "source_files": "ImpactTutorial/**/*.{swift}", "requires_arc": true, "swift_version": "4.2" }
247
480
<gh_stars>100-1000 # # Collective Knowledge (some common operations for all CK) # # See CK LICENSE.txt for licensing details # See CK COPYRIGHT.txt for copyright details # # Developer: <NAME>, <EMAIL>, http://cTuning.org/lab/people/gfursin # cfg = {} # Will be updated by CK (meta description of this module) work = {} # Will be updated by CK (temporal data) ck = None # Will be updated by CK (initialized CK kernel) # Local settings ############################################################################## # Initialize module def init(i): """ Input: {} Output: { return - return code = 0, if successful > 0, if error (error) - error text if return > 0 } """ return {'return': 0} ############################################################################## # update CK and all repos def pull(i): """ Input: { (kernel) - if 'yes', pull kernel too (unless installed as a package) (install) - if 'yes', install CK kernel as python module (via python setup.py install) } Output: { return - return code = 0, if successful > 0, if error (error) - error text if return > 0 } """ import os o = i.get('out', '') kernel = i.get('kernel', '') install = i.get('install', '') if kernel == 'yes' or install == 'yes': ck_root = ck.work['env_root'] if not os.path.isdir(ck_root): return {'return': 1, 'error': 'Can\'t find CK in '+ck_root+' - please check CK_ROOT env'} os.chdir(ck_root) if kernel == 'yes': cont = True if not os.path.isdir(os.path.join(ck_root, '.git')) and i.get('force', '') != 'yes': ck.out( 'WARNING: seems like your CK_ROOT installation is not from GitHub - skipping kernel update ...') ck.out('') cont = False if cont: if o == 'con': ck.out('Updating CK from GitHub ...') ck.out('') ck.out(' cd '+ck_root) ck.out(' git pull') ck.out('') rx = os.system('git pull') if rx > 0: return {'return': 1, 'error': 'CK update failed'} if o == 'con': ck.out('') if install == 'yes': c = ck.cfg['install_ck_as_lib'] py = os.getenv('CK_PYTHON', '') if py != '': c = c.replace('python ', py+' ') ck.out('') ck.out('Installing CK kernel as python module ...') ck.out('') ck.out(' cd '+ck_root) # Get OS r = ck.get_os_ck({}) if r['return'] > 0: return r plat = r['platform'] if plat != 'win': c = ck.cfg.get('linux_sudo', '')+' '+c ck.out(' '+c) ck.out('') os.system(c) return ck.access({'action': 'pull', 'module_uoa': 'repo', 'out': o})
1,562
385
#include "types.h" #include "sead/tree.h" #include "sead/string.h" #pragma once namespace Lp { namespace Sys { class Actor{ public: Actor(); virtual ~Actor(); u64 LpActor_x8; sead::TreeNode mTreeNodes[2]; char LpActor_x60[0xB8]; u64 LpActor_x118; u64 LpActor_x120; u64 LpActor_x128; u64 LpActor_x130; u64 LpActor_x138; u64 LpActor_x140; u64 LpActor_x148; u64 LpActor_x150[16]; char LpActor_x1D0[136]; u32 LpActor_x258; u32 LpActor_x25C; u64 mSystemTick; // _260 _QWORD LpActor_x268; sead::BufferedSafeStringBase<char> mLpActorStr; char LpActor_x288[64]; u64 LpActor_x2C8; u64 LpActor_x2D0; u64 LpActor_x2D8; u64 LpActor_x2E0; }; }; };
557
831
/* * Copyright (C) 2017 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT 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 com.android.tools.idea.welcome.wizard; import javax.swing.*; import java.awt.*; import java.awt.event.KeyEvent; import java.awt.event.WindowAdapter; import java.awt.event.WindowEvent; public class ConfirmFirstRunWizardCloseDialog extends JDialog { private boolean myWasCanceled; public enum Result { DoNotClose, Rerun, Skip } private JPanel contentPane; private JButton buttonOK; private JButton buttonCancel; private JRadioButton myRun; private JRadioButton myDoNotRun; public ConfirmFirstRunWizardCloseDialog() { setContentPane(contentPane); setModal(true); getRootPane().setDefaultButton(buttonOK); buttonOK.addActionListener(e -> onOK()); buttonCancel.addActionListener(e -> onCancel()); setDefaultCloseOperation(DO_NOTHING_ON_CLOSE); addWindowListener(new WindowAdapter() { @Override public void windowClosing(WindowEvent e) { onCancel(); } }); contentPane.registerKeyboardAction(e -> onCancel(), KeyStroke.getKeyStroke(KeyEvent.VK_ESCAPE, 0), JComponent.WHEN_ANCESTOR_OF_FOCUSED_COMPONENT); myRun.setSelected(true); } private void onOK() { dispose(); } private void onCancel() { myWasCanceled = true; dispose(); } public Result open() { pack(); Dimension size = getSize(); Rectangle screen = getGraphicsConfiguration().getBounds(); setLocation(screen.x + (screen.width - size.width)/2, screen.y + (screen.height - size.height)/2); setVisible(true); if (myWasCanceled) { return Result.DoNotClose; } else if (myRun.isSelected()) { return Result.Rerun; } else { return Result.Skip; } } }
833
874
<filename>src/main/java/com/jnape/palatable/lambda/functor/builtin/Exchange.java package com.jnape.palatable.lambda.functor.builtin; import com.jnape.palatable.lambda.functions.Fn1; import com.jnape.palatable.lambda.functor.Profunctor; import com.jnape.palatable.lambda.optics.Iso; /** * A profunctor used to extract the isomorphic functions an {@link Iso} is composed of. * * @param <A> the smaller viewed value of an {@link Iso} * @param <B> the smaller viewing value of an {@link Iso} * @param <S> the larger viewing value of an {@link Iso} * @param <T> the larger viewed value of an {@link Iso} */ public final class Exchange<A, B, S, T> implements Profunctor<S, T, Exchange<A, B, ?, ?>> { private final Fn1<? super S, ? extends A> sa; private final Fn1<? super B, ? extends T> bt; public Exchange(Fn1<? super S, ? extends A> sa, Fn1<? super B, ? extends T> bt) { this.sa = sa; this.bt = bt; } /** * Extract the mapping <code>S -&gt; A</code>. * * @return an <code>{@link Fn1}&lt;S, A&gt;</code> */ public Fn1<? super S, ? extends A> sa() { return sa; } /** * Extract the mapping <code>B -&gt; T</code>. * * @return an <code>{@link Fn1}&lt;B, T&gt;</code> */ public Fn1<? super B, ? extends T> bt() { return bt; } /** * {@inheritDoc} */ @Override public <Z, C> Exchange<A, B, Z, C> diMap(Fn1<? super Z, ? extends S> lFn, Fn1<? super T, ? extends C> rFn) { return new Exchange<>(lFn.fmap(sa), bt.fmap(rFn)); } /** * {@inheritDoc} */ @Override public <Z> Exchange<A, B, Z, T> diMapL(Fn1<? super Z, ? extends S> fn) { return (Exchange<A, B, Z, T>) Profunctor.super.<Z>diMapL(fn); } /** * {@inheritDoc} */ @Override public <C> Exchange<A, B, S, C> diMapR(Fn1<? super T, ? extends C> fn) { return (Exchange<A, B, S, C>) Profunctor.super.<C>diMapR(fn); } /** * {@inheritDoc} */ @Override public <Z> Exchange<A, B, Z, T> contraMap(Fn1<? super Z, ? extends S> fn) { return (Exchange<A, B, Z, T>) Profunctor.super.<Z>contraMap(fn); } }
1,046
1,364
/* Copyright (c) 2006, <NAME> * * You may distribute this software under the terms of the license * specified in the file "License" */ package kilim.nio; import java.nio.channels.spi.AbstractSelectableChannel; import kilim.Mailbox; public class SockEvent { public SockEvent(Mailbox<SockEvent> aReplyTo, AbstractSelectableChannel ach, int ops) { ch = ach; interestOps = ops; replyTo = aReplyTo; } public int interestOps; // SelectionKey.OP_* .. public AbstractSelectableChannel ch; public Mailbox<SockEvent> replyTo; }
187
609
#include <sys/types.h> #include <utmp.h> #include <stdio.h> /* The login_tty() function prepares for a login on the terminal fd (which may be a real terminal device, or the slave of a pseudoterminal as returned by openpty()) by creating a new session, making fd the controlling terminal for the calling process, setting fd to be the standard input, output, and error streams of the current process, and closing fd. */ int login_tty (int fd) { debug_print ("login_tty: [TODO]\n"); return -1; }
186
1,779
// // Copyright 2019 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. // #ifndef ZETASQL_ANALYZER_REWRITE_RESOLVED_AST_H_ #define ZETASQL_ANALYZER_REWRITE_RESOLVED_AST_H_ #include "zetasql/analyzer/rewriters/rewriter_interface.h" #include "zetasql/public/analyzer_options.h" #include "zetasql/public/analyzer_output.h" #include "zetasql/public/catalog.h" #include "zetasql/public/types/type_factory.h" #include "absl/status/status.h" #include "absl/strings/string_view.h" #include "absl/types/span.h" namespace zetasql { // Similar to RewriteResolvedAst() overload in analyzer.h, except that it allows // the caller to supply an explicit list of rewriters, rather than being // constrained to a predefined set. // // TODO: Move this to analyzer.h once it's stable enough to no longer // require BUILD visibility restrictions. absl::Status RewriteResolvedAst(const AnalyzerOptions& analyzer_options, absl::Span<const Rewriter* const> rewriters, absl::string_view sql, Catalog* catalog, TypeFactory* type_factory, AnalyzerOutput& analyzer_output); } // namespace zetasql #endif // ZETASQL_ANALYZER_REWRITE_RESOLVED_AST_H_
664
568
<filename>src/main/java/com/fincatto/documentofiscal/mdfe3/classes/nota/MDFRespTec.java /* * Copyright 2019 <NAME>.. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT 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 com.fincatto.documentofiscal.mdfe3.classes.nota; import org.simpleframework.xml.Element; /** * * @author <NAME> on 07/10/19. */ public class MDFRespTec { @Element(name = "CNPJ", required = true) private String cnpj; @Element(required = true) private String xContato; @Element(required = true) private String email; @Element(required = true) private String fone; @Element private String idCSRT; @Element private byte[] hashCSRT; /** * Obtém o valor da propriedade cnpj. * * @return possible object is {@link String } * */ public String getCNPJ() { return cnpj; } /** * Define o valor da propriedade cnpj. * * @param value allowed object is {@link String } * */ public void setCNPJ(String value) { this.cnpj = value; } /** * Obtém o valor da propriedade xContato. * * @return possible object is {@link String } * */ public String getXContato() { return xContato; } /** * Define o valor da propriedade xContato. * * @param value allowed object is {@link String } * */ public void setXContato(String value) { this.xContato = value; } /** * Obtém o valor da propriedade email. * * @return possible object is {@link String } * */ public String getEmail() { return email; } /** * Define o valor da propriedade email. * * @param value allowed object is {@link String } * */ public void setEmail(String value) { this.email = value; } /** * Obtém o valor da propriedade fone. * * @return possible object is {@link String } * */ public String getFone() { return fone; } /** * Define o valor da propriedade fone. * * @param value allowed object is {@link String } * */ public void setFone(String value) { this.fone = value; } /** * Obtém o valor da propriedade idCSRT. * * @return possible object is {@link String } * */ public String getIdCSRT() { return idCSRT; } /** * Define o valor da propriedade idCSRT. * * @param value allowed object is {@link String } * */ public void setIdCSRT(String value) { this.idCSRT = value; } /** * Obtém o valor da propriedade hashCSRT. * * @return possible object is byte[] */ public byte[] getHashCSRT() { return hashCSRT; } /** * Define o valor da propriedade hashCSRT. * * @param value allowed object is byte[] */ public void setHashCSRT(byte[] value) { this.hashCSRT = value; } }
1,622
4,283
/* * Copyright (c) 2008-2021, Hazelcast, Inc. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.hazelcast.jet.impl.config; import com.hazelcast.jet.config.InstanceConfig; import com.hazelcast.jet.config.JetConfig; import javax.annotation.Nonnull; /** * This class is used to delegate the deprecated {@link InstanceConfig} method * calls to {@link JetConfig}. */ public final class DelegatingInstanceConfig extends InstanceConfig { private final JetConfig jetConfig; public DelegatingInstanceConfig(JetConfig jetConfig) { this.jetConfig = jetConfig; } @Nonnull @Override public InstanceConfig setCooperativeThreadCount(int size) { super.setCooperativeThreadCount(size); jetConfig.setCooperativeThreadCount(size); return this; } @Override public int getCooperativeThreadCount() { return jetConfig.getCooperativeThreadCount(); } @Nonnull @Override public InstanceConfig setFlowControlPeriodMs(int flowControlPeriodMs) { super.setFlowControlPeriodMs(flowControlPeriodMs); jetConfig.setFlowControlPeriodMs(flowControlPeriodMs); return this; } @Override public int getFlowControlPeriodMs() { return jetConfig.getFlowControlPeriodMs(); } @Nonnull @Override public InstanceConfig setBackupCount(int newBackupCount) { super.setBackupCount(newBackupCount); jetConfig.setBackupCount(newBackupCount); return this; } @Override public int getBackupCount() { return jetConfig.getBackupCount(); } @Override public InstanceConfig setScaleUpDelayMillis(long millis) { super.setScaleUpDelayMillis(millis); jetConfig.setScaleUpDelayMillis(millis); return this; } @Override public long getScaleUpDelayMillis() { return jetConfig.getScaleUpDelayMillis(); } @Override public InstanceConfig setLosslessRestartEnabled(boolean enabled) { super.setLosslessRestartEnabled(enabled); jetConfig.setLosslessRestartEnabled(enabled); return this; } @Override public boolean isLosslessRestartEnabled() { return jetConfig.isLosslessRestartEnabled(); } @Override public InstanceConfig setMaxProcessorAccumulatedRecords(long maxProcessorAccumulatedRecords) { super.setMaxProcessorAccumulatedRecords(maxProcessorAccumulatedRecords); jetConfig.setMaxProcessorAccumulatedRecords(maxProcessorAccumulatedRecords); return this; } @Override public long getMaxProcessorAccumulatedRecords() { return jetConfig.getMaxProcessorAccumulatedRecords(); } public void set(InstanceConfig instanceConfig) { setMaxProcessorAccumulatedRecords(instanceConfig.getMaxProcessorAccumulatedRecords()); setLosslessRestartEnabled(instanceConfig.isLosslessRestartEnabled()); setScaleUpDelayMillis(instanceConfig.getScaleUpDelayMillis()); setBackupCount(instanceConfig.getBackupCount()); setFlowControlPeriodMs(instanceConfig.getFlowControlPeriodMs()); setCooperativeThreadCount(instanceConfig.getCooperativeThreadCount()); } }
1,313
346
/*--------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { "schemas/kits-schema.json.": "Sady CMake", "schemas/kits-schema.json.items": "Sada", "schemas/kits-schema.json.items.properties.name": "Název této sady", "schemas/kits-schema.json.items.properties.vendor": "Název dodavatele této sady", "schemas/kits-schema.json.items.properties.triple": "Cílová trojice této sady", "schemas/kits-schema.json.items.properties.version": "Verze této sady", "schemas/kits-schema.json.items.properties.versionRuntime": "Verze modulu runtime jazyka C pro sadu", "schemas/kits-schema.json.items.properties.keep": "Pokud je nastavena hodnota true, bude tato sada zachována i v případě, kdy už bude neaktuální.", "schemas/kits-schema.json.items.properties.compilers.patternProperties.\\w+": "Cesta ke kompilátoru pro tento jazyk", "schemas/kits-schema.json.items.properties.toolchainFile": "Cesta k souboru sady nástrojů", "schemas/kits-schema.json.items.properties.visualStudio": "ID instance produktu Visual Studio", "schemas/kits-schema.json.items.properties.visualStudioArchitecture": "Cílená architektura", "schemas/kits-schema.json.items.properties.environmentSetupScript": "Absolutní cesta ke skriptu, který upravuje prostředí pro sadu", "schemas/kits-schema.json.items.properties.environmentVariables.patternProperties..*": "Hodnota pro proměnnou prostředí", "schemas/kits-schema.json.items.properties.cmakeSettings.patternProperties..*": "Hodnota pro nastavení CMake", "schemas/kits-schema.json.items.properties.preferredGenerator": "Nastavit preferovaný generátor CMake pro tuto sadu", "schemas/kits-schema.json.items.properties.preferredGenerator.properties.name": "Název generátoru, který se má použít", "schemas/kits-schema.json.items.properties.preferredGenerator.properties.platform": "Platforma CMake pro argument -A", "schemas/kits-schema.json.items.properties.preferredGenerator.properties.toolset": "Sada nástrojů CMake pro argument -T" }
819
5,169
<filename>Specs/4/7/9/VIUMiddlewareGP/0.0.5/VIUMiddlewareGP.podspec.json { "name": "VIUMiddlewareGP", "version": "0.0.5", "summary": "Module for VIU", "description": "Module for VIU", "homepage": "https://bitbucket.org/JINGPri/viumiddlewaregp/src/main/", "license": "MIT", "authors": { "jingpri": "<EMAIL>" }, "platforms": { "ios": "9.0" }, "source": { "git": "https://[email protected]/JINGPri/viumiddlewaregp.git", "tag": "0.0.5" }, "source_files": "ViuMiddleware/*.{h,m}", "frameworks": "Foundation", "requires_arc": true }
259
2,151
// Copyright 2017 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef ASH_SYSTEM_MESSAGE_CENTER_ARC_ARC_NOTIFICATION_SURFACE_MANAGER_IMPL_H_ #define ASH_SYSTEM_MESSAGE_CENTER_ARC_ARC_NOTIFICATION_SURFACE_MANAGER_IMPL_H_ #include <map> #include <string> #include "ash/system/message_center/arc/arc_notification_surface_manager.h" #include "base/macros.h" #include "base/observer_list.h" #include "components/exo/notification_surface_manager.h" namespace ash { class ArcNotificationSurface; class ArcNotificationSurfaceImpl; class ArcNotificationSurfaceManagerImpl : public ArcNotificationSurfaceManager, public exo::NotificationSurfaceManager { public: ArcNotificationSurfaceManagerImpl(); ~ArcNotificationSurfaceManagerImpl() override; // ArcNotificationSurfaceManager: ArcNotificationSurface* GetArcSurface( const std::string& notification_id) const override; void AddObserver(Observer* observer) override; void RemoveObserver(Observer* observer) override; // exo::NotificationSurfaceManager: exo::NotificationSurface* GetSurface( const std::string& notification_id) const override; void AddSurface(exo::NotificationSurface* surface) override; void RemoveSurface(exo::NotificationSurface* surface) override; private: using NotificationSurfaceMap = std::unordered_map<std::string, std::unique_ptr<ArcNotificationSurfaceImpl>>; NotificationSurfaceMap notification_surface_map_; base::ObserverList<Observer> observers_; DISALLOW_COPY_AND_ASSIGN(ArcNotificationSurfaceManagerImpl); }; } // namespace ash #endif // ASH_SYSTEM_MESSAGE_CENTER_ARC_ARC_NOTIFICATION_SURFACE_MANAGER_IMPL_H_
609
511
<gh_stars>100-1000 /***************************************************************************** * * Copyright 2017 Samsung Electronics All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific * language governing permissions and limitations under the License. * ****************************************************************************/ /* Note: this is an auto-generated file. */ #ifndef SLSI_MIB_H__ #define SLSI_MIB_H__ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <sys/types.h> struct slsi_mib_data { u32 dataLength; u8 *data; }; #define SLSI_MIB_MAX_INDEXES 2 #define SLSI_MIB_TYPE_BOOL 0 #define SLSI_MIB_TYPE_UINT 1 #define SLSI_MIB_TYPE_INT 2 #define SLSI_MIB_TYPE_OCTET 3 #define SLSI_MIB_TYPE_NONE 4 struct slsi_mib_value { u8 type; union { bool boolValue; s32 intValue; u32 uintValue; struct slsi_mib_data octetValue; } u; }; struct slsi_mib_entry { u16 psid; u16 index[SLSI_MIB_MAX_INDEXES]; /* 0 = no Index */ struct slsi_mib_value value; }; struct slsi_mib_get_entry { u16 psid; u16 index[SLSI_MIB_MAX_INDEXES]; /* 0 = no Index */ }; #define SLSI_MIB_STATUS_SUCCESS 0x0000 #define SLSI_MIB_STATUS_UNKNOWN_PSID 0x0001 #define SLSI_MIB_STATUS_INVALID_INDEX 0x0002 #define SLSI_MIB_STATUS_OUT_OF_RANGE 0x0003 #define SLSI_MIB_STATUS_WRITE_ONLY 0x0004 #define SLSI_MIB_STATUS_READ_ONLY 0x0005 #define SLSI_MIB_STATUS_UNKNOWN_INTERFACE_TAG 0x0006 #define SLSI_MIB_STATUS_INVALID_NUMBER_OF_INDICES 0x0007 #define SLSI_MIB_STATUS_ERROR 0x0008 #define SLSI_MIB_STATUS_UNSUPPORTED_ON_INTERFACE 0x0009 #define SLSI_MIB_STATUS_UNAVAILABLE 0x000A #define SLSI_MIB_STATUS_NOT_FOUND 0x000B #define SLSI_MIB_STATUS_INCOMPATIBLE 0x000C #define SLSI_MIB_STATUS_OUT_OF_MEMORY 0x000D #define SLSI_MIB_STATUS_TO_MANY_REQUESTED_VARIABLES 0x000E #define SLSI_MIB_STATUS_NOT_TRIED 0x000F #define SLSI_MIB_STATUS_FAILURE 0xFFFF /******************************************************************************* * * NAME * slsi_mib_encode_get Functions * * DESCRIPTION * For use when getting data from the Wifi Stack. * These functions append the encoded data to the "buffer". * * index == 0 where there is no index required * * EXAMPLE * { * static const struct slsi_mib_get_entry getValues[] = { * { PSID1, { 0, 0 } }, * { PSID2, { 3, 0 } }, * }; * struct slsi_mib_data buffer; * slsi_mib_encode_get_list(&buffer, * sizeof(getValues) / sizeof(struct slsi_mib_get_entry), * getValues); * } * or * { * struct slsi_mib_data buffer = {0, NULL}; * slsi_mib_encode_get(&buffer, PSID1, 0); * slsi_mib_encode_get(&buffer, PSID2, 3); * } * RETURN * SlsiResult: See SLSI_MIB_STATUS_* * *******************************************************************************/ void slsi_mib_encode_get(struct slsi_mib_data *buffer, u16 psid, u16 index); int slsi_mib_encode_get_list(struct slsi_mib_data *buffer, u16 psidsLength, const struct slsi_mib_get_entry *psids); /******************************************************************************* * * NAME * SlsiWifiMibdEncode Functions * * DESCRIPTION * For use when getting data from the Wifi Stack. * * index == 0 where there is no index required * * EXAMPLE * { * static const struct slsi_mib_get_entry getValues[] = { * { PSID1, { 0, 0 } }, * { PSID2, { 3, 0 } }, * }; * struct slsi_mib_data buffer = rxMibData; # Buffer with encoded Mib Data * * getValues = slsi_mib_decode_get_list(&buffer, * sizeof(getValues) / sizeof(struct slsi_mib_get_entry), * getValues); * * print("PSID1 = %d\n", getValues[0].u.uintValue); * print("PSID2.3 = %s\n", getValues[1].u.boolValue?"TRUE":"FALSE"); * * kmm_free(getValues); * * } * or * { * u8* buffer = rxMibData; # Buffer with encoded Mib Data * size_t offset=0; * struct slsi_mib_entry value; * * offset += slsi_mib_decode(&buffer[offset], &value); * print("PSID1 = %d\n", value.u.uintValue); * * offset += slsi_mib_decode(&buffer[offset], &value); * print("PSID2.3 = %s\n", value.u.boolValue?"TRUE":"FALSE"); * * } * *******************************************************************************/ size_t slsi_mib_decode(struct slsi_mib_data *buffer, struct slsi_mib_entry *value); struct slsi_mib_value *slsi_mib_decode_get_list(struct slsi_mib_data *buffer, u16 psidsLength, const struct slsi_mib_get_entry *psids); /******************************************************************************* * * NAME * slsi_mib_encode Functions * * DESCRIPTION * For use when setting data in the Wifi Stack. * These functions append the encoded data to the "buffer". * * index == 0 where there is no index required * * EXAMPLE * { * u8 octets[2] = {0x00, 0x01}; * struct slsi_mib_data buffer = {0, NULL}; * slsi_mib_encode_bool(&buffer, PSID1, TRUE, 0); # Boolean set with no index * slsi_mib_encode_int(&buffer, PSID2, -1234, 1); # Signed Integer set with on index 1 * slsi_mib_encode_uint(&buffer, PSID2, 1234, 3); # Unsigned Integer set with on index 3 * slsi_mib_encode_octet(&buffer, PSID3, sizeof(octets), octets, 0); # Octet set with no index * } * or * { # Unsigned Integer set with on index 3 # struct slsi_mib_data buffer = {0, NULL}; # struct slsi_mib_entry value; # value.psid = psid; # value.index[0] = 3; # value.index[1] = 0; # value.value.type = SLSI_MIB_TYPE_UINT; # value.value.u.uintValue = 1234; # slsi_mib_encode(buffer, &value); # } # RETURN # See SLSI_MIB_STATUS_* # *******************************************************************************/ u16 slsi_mib_encode(struct slsi_mib_data *buffer, struct slsi_mib_entry *value); u16 slsi_mib_encode_bool(struct slsi_mib_data *buffer, u16 psid, bool value, u16 index); u16 slsi_mib_encode_int(struct slsi_mib_data *buffer, u16 psid, s32 value, u16 index); u16 slsi_mib_encode_uint(struct slsi_mib_data *buffer, u16 psid, u32 value, u16 index); u16 slsi_mib_encode_octet(struct slsi_mib_data *buffer, u16 psid, size_t dataLength, const u8 *data, u16 index); /******************************************************************************* * * NAME * SlsiWifiMib Low level Encode/Decode functions * *******************************************************************************/ size_t slsi_mib_encode_uint32(u8 *buffer, u32 value); size_t slsi_mib_encode_int32(u8 *buffer, s32 signedValue); size_t slsi_mib_encode_octet_str(u8 *buffer, struct slsi_mib_data *octetValue); size_t slsi_mib_decodeUint32(u8 *buffer, u32 *value); size_t slsi_mib_decodeInt32(u8 *buffer, s32 *value); size_t slsi_mib_decode_octet_str(u8 *buffer, struct slsi_mib_data *octetValue); /******************************************************************************* * * NAME * SlsiWifiMib Helper Functions * *******************************************************************************/ /* Find a the offset to psid data in an encoded buffer * { * struct slsi_mib_data buffer = rxMibData; # Buffer with encoded Mib Data * struct slsi_mib_get_entry value = {PSID1, {0x01, 0x00}}; # Find value for PSID1.1 * u8* mibdata = slsi_mib_find(&buffer, &value); * if(mibdata) {print("Mib Data for PSID1.1 Found\n"); * } */ u8 *slsi_mib_find(struct slsi_mib_data *buffer, const struct slsi_mib_get_entry *entry); /* Append data to a Buffer */ void slsi_mib_buf_append(struct slsi_mib_data *dst, size_t bufferLength, u8 *buffer); /******************************************************************************* * * PSID Definitions * *******************************************************************************/ /******************************************************************************* * NAME : Dot11TdlsPeerUapsdIndicationWindow * PSID : 53 (0x0035) * PER INTERFACE?: NO * TYPE : SlsiUint16 * UNITS : beacon intervals * MIN : 0 * MAX : 65535 * DEFAULT : 1 * DESCRIPTION : * The minimum time that needs to pass after the most recent TPU SP, before * a RAME_TPU_SP indication can be sent to MLME *******************************************************************************/ #define SLSI_PSID_DOT11_TDLS_PEER_UAPSD_INDICATION_WINDOW 0x0035 /******************************************************************************* * NAME : Dot11AssociationSaQueryMaximumTimeout * PSID : 100 (0x0064) * PER INTERFACE?: NO * TYPE : SlsiUint32 * UNITS : TU * MIN : 0 * MAX : 4294967295 * DEFAULT : 1000 * DESCRIPTION : * This attribute specifies the number of time units (TUs) that an AP can * wait, from the scheduling of the first SA Query Request to allow * association process to be started without starting additional SA Query * procedure if a successful SA Query Response is not received. *******************************************************************************/ #define SLSI_PSID_DOT11_ASSOCIATION_SA_QUERY_MAXIMUM_TIMEOUT 0x0064 /******************************************************************************* * NAME : Dot11AssociationSaQueryRetryTimeout * PSID : 101 (0x0065) * PER INTERFACE?: NO * TYPE : SlsiUint32 * UNITS : TU * MIN : 1 * MAX : 4294967295 * DEFAULT : 201 * DESCRIPTION : * This attribute specifies the number of time units (TUs) that an AP waits * between issuing two subsequent SA Query Request frames. *******************************************************************************/ #define SLSI_PSID_DOT11_ASSOCIATION_SA_QUERY_RETRY_TIMEOUT 0x0065 /******************************************************************************* * NAME : Dot11PowerCapabilityMaxImplemented * PSID : 112 (0x0070) * PER INTERFACE?: NO * TYPE : SlsiInt16 * UNITS : dBm * MIN : -32768 * MAX : 32767 * DEFAULT : * DESCRIPTION : * This attribute indicates the maximum transmit Power Capability of this * station. *******************************************************************************/ #define SLSI_PSID_DOT11_POWER_CAPABILITY_MAX_IMPLEMENTED 0x0070 /******************************************************************************* * NAME : Dot11PowerCapabilityMinImplemented * PSID : 113 (0x0071) * PER INTERFACE?: NO * TYPE : SlsiInt16 * UNITS : dBm * MIN : -32768 * MAX : 32767 * DEFAULT : * DESCRIPTION : * This attribute indicates the minimum transmit Power Capability of this * station. *******************************************************************************/ #define SLSI_PSID_DOT11_POWER_CAPABILITY_MIN_IMPLEMENTED 0x0071 /******************************************************************************* * NAME : Dot11RtsThreshold * PSID : 121 (0x0079) * PER INTERFACE?: NO * TYPE : SlsiUint16 * UNITS : octet * MIN : 0 * MAX : 65536 * DEFAULT : 9000 * DESCRIPTION : * This attribute shall indicate the size of an MPDU, below which an RTS/CTS * handshake shall not be performed, except as RTS/CTS is used as a cross * modulation protection mechanism as defined in 9.10. An RTS/CTS handshake * shall be performed at the beginning of any frame exchange sequence where * the MPDU is of type Data or Management, the MPDU has an individual * address in the Address1 field, and the length of the MPDU is greater than * this threshold. (For additional details, refer to Table 21 in 9.7.) * Setting this attribute to be larger than the maximum MSDU size shall have * the effect of turning off the RTS/CTS handshake for frames of Data or * Management type transmitted by this STA. Setting this attribute to zero * shall have the effect of turning on the RTS/CTS handshake for all frames * of Data or Management type transmitted by this STA. *******************************************************************************/ #define SLSI_PSID_DOT11_RTS_THRESHOLD 0x0079 /******************************************************************************* * NAME : Dot11ShortRetryLimit * PSID : 122 (0x007A) * PER INTERFACE?: NO * TYPE : SlsiUint16 * MIN : 1 * MAX : 255 * DEFAULT : 15 * DESCRIPTION : * This attribute shall indicate the maximum number of transmission attempts * of a frame, the length of which is less than or equal to * dot11RTSThreshold, that shall be made before a failure condition is * indicated. *******************************************************************************/ #define SLSI_PSID_DOT11_SHORT_RETRY_LIMIT 0x007A /******************************************************************************* * NAME : Dot11LongRetryLimit * PSID : 123 (0x007B) * PER INTERFACE?: NO * TYPE : SlsiUint16 * MIN : 1 * MAX : 255 * DEFAULT : 4 * DESCRIPTION : * This attribute shall indicate the maximum number of transmission attempts * of a frame, the length of which is greater than dot11RTSThreshold, that * shall be made before a failure condition is indicated. *******************************************************************************/ #define SLSI_PSID_DOT11_LONG_RETRY_LIMIT 0x007B /******************************************************************************* * NAME : Dot11FragmentationThreshold * PSID : 124 (0x007C) * PER INTERFACE?: NO * TYPE : SlsiUint16 * MIN : 256 * MAX : 11500 * DEFAULT : 3000 * DESCRIPTION : * This attribute specifies the current maximum size, in octets, of the MPDU * that may be delivered to the security encapsulation. This maximum size * does not apply when an MSDU is transmitted using an HT-immediate or * HTdelayed Block Ack agreement, or when an MSDU or MMPDU is carried in an * AMPDU that does not contain a VHT single MPDU. Fields added to the frame * by security encapsulation are not counted against the limit specified by * this attribute. Except as described above, an MSDU or MMPDU is fragmented * when the resulting frame has an individual address in the Address1 field, * and the length of the frame is larger than this threshold, excluding * security encapsulation fields. The default value for this attribute is * the lesser of 11500 or the aMPDUMaxLength or the aPSDUMaxLength of the * attached PHY and the value never exceeds the lesser of 11500 or the * aMPDUMaxLength or the aPSDUMaxLength of the attached PHY. *******************************************************************************/ #define SLSI_PSID_DOT11_FRAGMENTATION_THRESHOLD 0x007C /******************************************************************************* * NAME : Dot11MaxTransmitMsduLifetime * PSID : 125 (0x007D) * PER INTERFACE?: NO * TYPE : SlsiUint32 * UNITS : TU * MIN : 1 * MAX : 4294967295 * DEFAULT : 512 * DESCRIPTION : * The elapsed time, after the initial transmission of an MSDU, after which * further attempts to transmit the MSDU shall be terminated. *******************************************************************************/ #define SLSI_PSID_DOT11_MAX_TRANSMIT_MSDU_LIFETIME 0x007D /******************************************************************************* * NAME : Dot11MaxReceiveLifetime * PSID : 126 (0x007E) * PER INTERFACE?: NO * TYPE : SlsiUint32 * UNITS : TU * MIN : 1 * MAX : 4294967295 * DEFAULT : 512 * DESCRIPTION : * The elapsed time, after the initial reception of a fragmented MMPDU or * MSDU, after which further attempts to reassemble the MMPDU or MSDU shall * be terminated. *******************************************************************************/ #define SLSI_PSID_DOT11_MAX_RECEIVE_LIFETIME 0x007E /******************************************************************************* * NAME : Dot11TransmittedFragmentCount * PSID : 140 (0x008C) * PER INTERFACE?: NO * TYPE : INT64 * MIN : 0 * MAX : 4294967295 * DEFAULT : * DESCRIPTION : * This counter shall be incremented for an acknowledged MPDU with an * individual address in the address 1 field or an MPDU with a multicast * address in the address 1 field of type Data or Management. *******************************************************************************/ #define SLSI_PSID_DOT11_TRANSMITTED_FRAGMENT_COUNT 0x008C /******************************************************************************* * NAME : Dot11MulticastTransmittedFrameCount * PSID : 141 (0x008D) * PER INTERFACE?: NO * TYPE : INT64 * MIN : 0 * MAX : 4294967295 * DEFAULT : * DESCRIPTION : * This counter shall increment only when the multicast bit is set in the * destination MAC address of a successfully transmitted MSDU. When * operating as a STA in an ESS, where these frames are directed to the AP, * this implies having received an acknowledgment to all associated MPDUs. *******************************************************************************/ #define SLSI_PSID_DOT11_MULTICAST_TRANSMITTED_FRAME_COUNT 0x008D /******************************************************************************* * NAME : Dot11FailedCount * PSID : 142 (0x008E) * PER INTERFACE?: NO * TYPE : INT64 * MIN : 0 * MAX : 4294967295 * DEFAULT : * DESCRIPTION : * This counter shall increment when an MSDU is not transmitted successfully * due to the number of transmit attempts exceeding either the * dot11ShortRetryLimit or dot11LongRetryLimit. *******************************************************************************/ #define SLSI_PSID_DOT11_FAILED_COUNT 0x008E /******************************************************************************* * NAME : Dot11RetryCount * PSID : 143 (0x008F) * PER INTERFACE?: NO * TYPE : INT64 * MIN : 0 * MAX : 4294967295 * DEFAULT : * DESCRIPTION : * This counter shall increment when an MSDU is successfully transmitted * after one or more retransmissions. *******************************************************************************/ #define SLSI_PSID_DOT11_RETRY_COUNT 0x008F /******************************************************************************* * NAME : Dot11MultipleRetryCount * PSID : 144 (0x0090) * PER INTERFACE?: NO * TYPE : INT64 * MIN : 0 * MAX : 4294967295 * DEFAULT : * DESCRIPTION : * This counter shall increment when an MSDU is successfully transmitted * after more than one retransmission. *******************************************************************************/ #define SLSI_PSID_DOT11_MULTIPLE_RETRY_COUNT 0x0090 /******************************************************************************* * NAME : Dot11FrameDuplicateCount * PSID : 145 (0x0091) * PER INTERFACE?: NO * TYPE : INT64 * MIN : 0 * MAX : 4294967295 * DEFAULT : * DESCRIPTION : * This counter shall increment when a frame is received that the Sequence * Control field indicates is a duplicate. *******************************************************************************/ #define SLSI_PSID_DOT11_FRAME_DUPLICATE_COUNT 0x0091 /******************************************************************************* * NAME : Dot11RtsSuccessCount * PSID : 146 (0x0092) * PER INTERFACE?: NO * TYPE : INT64 * MIN : 0 * MAX : 4294967295 * DEFAULT : * DESCRIPTION : * This counter shall increment when a CTS is received in response to an * RTS. *******************************************************************************/ #define SLSI_PSID_DOT11_RTS_SUCCESS_COUNT 0x0092 /******************************************************************************* * NAME : Dot11RtsFailureCount * PSID : 147 (0x0093) * PER INTERFACE?: NO * TYPE : INT64 * MIN : 0 * MAX : 4294967295 * DEFAULT : * DESCRIPTION : * This counter shall increment when a CTS is not received in response to an * RTS. *******************************************************************************/ #define SLSI_PSID_DOT11_RTS_FAILURE_COUNT 0x0093 /******************************************************************************* * NAME : Dot11ReceivedFragmentCount * PSID : 149 (0x0095) * PER INTERFACE?: NO * TYPE : INT64 * MIN : 0 * MAX : 4294967295 * DEFAULT : * DESCRIPTION : * This counter shall be incremented for each successfully received MPDU of * type Data or Management. *******************************************************************************/ #define SLSI_PSID_DOT11_RECEIVED_FRAGMENT_COUNT 0x0095 /******************************************************************************* * NAME : Dot11MulticastReceivedFrameCount * PSID : 150 (0x0096) * PER INTERFACE?: NO * TYPE : INT64 * MIN : 0 * MAX : 4294967295 * DEFAULT : * DESCRIPTION : * This counter shall increment when a MSDU is received with the multicast * bit set in the destination MAC address. *******************************************************************************/ #define SLSI_PSID_DOT11_MULTICAST_RECEIVED_FRAME_COUNT 0x0096 /******************************************************************************* * NAME : Dot11FcsErrorCount * PSID : 151 (0x0097) * PER INTERFACE?: NO * TYPE : INT64 * MIN : -9223372036854775808 * MAX : 4294967295 * DEFAULT : * DESCRIPTION : * This counter shall increment when an FCS error is detected in a received * MPDU. *******************************************************************************/ #define SLSI_PSID_DOT11_FCS_ERROR_COUNT 0x0097 /******************************************************************************* * NAME : Dot11TransmittedFrameCount * PSID : 152 (0x0098) * PER INTERFACE?: NO * TYPE : INT64 * MIN : 0 * MAX : 4294967295 * DEFAULT : * DESCRIPTION : * This counter shall increment for each successfully transmitted MSDU. *******************************************************************************/ #define SLSI_PSID_DOT11_TRANSMITTED_FRAME_COUNT 0x0098 /******************************************************************************* * NAME : Dot11WepUndecryptableCount * PSID : 153 (0x0099) * PER INTERFACE?: NO * TYPE : INT64 * MIN : 0 * MAX : 4294967295 * DEFAULT : * DESCRIPTION : * This counter shall increment when a frame is received with the WEP * subfield of the Frame Control field set to one and the WEPOn value for * the key mapped to the transmitter&apos;s MAC address indicates that the * frame should not have been encrypted or that frame is discarded due to * the receiving STA not implementing the privacy option. *******************************************************************************/ #define SLSI_PSID_DOT11_WEP_UNDECRYPTABLE_COUNT 0x0099 /******************************************************************************* * NAME : Dot11ManufacturerProductVersion * PSID : 183 (0x00B7) * PER INTERFACE?: NO * TYPE : SlsiUint8 * MIN : 0 * MAX : 128 * DEFAULT : * DESCRIPTION : * Printable string used to identify the manufacturer&apos;s product version * of the resource. *******************************************************************************/ #define SLSI_PSID_DOT11_MANUFACTURER_PRODUCT_VERSION 0x00B7 /******************************************************************************* * NAME : Dot11RsnaStatsStaAddress * PSID : 430 (0x01AE) * PER INTERFACE?: NO * TYPE : SlsiUint8 * MIN : 0 * MAX : 65535 * DEFAULT : * DESCRIPTION : * The MAC address of the STA to which the statistics in this conceptual row * belong. *******************************************************************************/ #define SLSI_PSID_DOT11_RSNA_STATS_STA_ADDRESS 0x01AE /******************************************************************************* * NAME : Dot11RsnaStatsTkipicvErrors * PSID : 433 (0x01B1) * PER INTERFACE?: NO * TYPE : INT64 * MIN : 0 * MAX : 4294967295 * DEFAULT : * DESCRIPTION : * Counts the number of TKIP ICV errors encountered when decrypting packets * for the STA. *******************************************************************************/ #define SLSI_PSID_DOT11_RSNA_STATS_TKIPICV_ERRORS 0x01B1 /******************************************************************************* * NAME : Dot11RsnaStatsTkipLocalMicFailures * PSID : 434 (0x01B2) * PER INTERFACE?: NO * TYPE : INT64 * MIN : 0 * MAX : 4294967295 * DEFAULT : * DESCRIPTION : * Counts the number of MIC failures encountered when checking the integrity * of packets received from the STA at this entity. *******************************************************************************/ #define SLSI_PSID_DOT11_RSNA_STATS_TKIP_LOCAL_MIC_FAILURES 0x01B2 /******************************************************************************* * NAME : Dot11RsnaStatsTkipRemoteMicFailures * PSID : 435 (0x01B3) * PER INTERFACE?: NO * TYPE : INT64 * MIN : 0 * MAX : 4294967295 * DEFAULT : * DESCRIPTION : * Counts the number of MIC failures encountered by the STA identified by * dot11RSNAStatsSTAAddress and reported back to this entity. *******************************************************************************/ #define SLSI_PSID_DOT11_RSNA_STATS_TKIP_REMOTE_MIC_FAILURES 0x01B3 /******************************************************************************* * NAME : Dot11RsnaStatsCcmpReplays * PSID : 436 (0x01B4) * PER INTERFACE?: NO * TYPE : INT64 * MIN : 0 * MAX : 4294967295 * DEFAULT : * DESCRIPTION : * The number of received CCMP MPDUs discarded by the replay mechanism. *******************************************************************************/ #define SLSI_PSID_DOT11_RSNA_STATS_CCMP_REPLAYS 0x01B4 /******************************************************************************* * NAME : Dot11RsnaStatsCcmpDecryptErrors * PSID : 437 (0x01B5) * PER INTERFACE?: NO * TYPE : INT64 * MIN : 0 * MAX : 4294967295 * DEFAULT : * DESCRIPTION : * The number of received MPDUs discarded by the CCMP decryption algorithm. *******************************************************************************/ #define SLSI_PSID_DOT11_RSNA_STATS_CCMP_DECRYPT_ERRORS 0x01B5 /******************************************************************************* * NAME : Dot11RsnaStatsTkipReplays * PSID : 438 (0x01B6) * PER INTERFACE?: NO * TYPE : INT64 * MIN : 0 * MAX : 4294967295 * DEFAULT : * DESCRIPTION : * Counts the number of TKIP replay errors detected. *******************************************************************************/ #define SLSI_PSID_DOT11_RSNA_STATS_TKIP_REPLAYS 0x01B6 /******************************************************************************* * NAME : Dot11RsnaStatsRobustMgmtCcmpReplays * PSID : 441 (0x01B9) * PER INTERFACE?: NO * TYPE : INT64 * MIN : 0 * MAX : 4294967295 * DEFAULT : * DESCRIPTION : * The number of received Robust Management frame MPDUs discarded due to * CCMP replay errors *******************************************************************************/ #define SLSI_PSID_DOT11_RSNA_STATS_ROBUST_MGMT_CCMP_REPLAYS 0x01B9 /******************************************************************************* * NAME : UnifiMlmeConnectionTimeout * PSID : 2000 (0x07D0) * PER INTERFACE?: NO * TYPE : SlsiUint16 * UNITS : milliseconds * MIN : 0 * MAX : 65535 * DEFAULT : 2000 * DESCRIPTION : * Firmware waits for unifiMLMEConnectionTimeOut of no successful Tx/Rx * (including beacon) to/from AP before it disconnects from AP.For STA case * - Setting it to less than 3 seconds may result in frequent disconnection * with the AP *******************************************************************************/ #define SLSI_PSID_UNIFI_MLME_CONNECTION_TIMEOUT 0x07D0 /******************************************************************************* * NAME : UnifiMlmeScanChannelMaxScanTime * PSID : 2001 (0x07D1) * PER INTERFACE?: NO * TYPE : SlsiUint8 * MIN : 14 * MAX : 14 * DEFAULT : { 0X00, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00 } * DESCRIPTION : * For testing: overrides max_scan_time. 0 indicates not used. *******************************************************************************/ #define SLSI_PSID_UNIFI_MLME_SCAN_CHANNEL_MAX_SCAN_TIME 0x07D1 /******************************************************************************* * NAME : UnifiMlmeScanChannelProbeInterval * PSID : 2002 (0x07D2) * PER INTERFACE?: NO * TYPE : SlsiUint8 * MIN : 14 * MAX : 14 * DEFAULT : { 0X00, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00 } * DESCRIPTION : * For testing: overrides probe interval. 0 indicates not used. *******************************************************************************/ #define SLSI_PSID_UNIFI_MLME_SCAN_CHANNEL_PROBE_INTERVAL 0x07D2 /******************************************************************************* * NAME : UnifiMlmeDataReferenceTimeout * PSID : 2005 (0x07D5) * PER INTERFACE?: NO * TYPE : SlsiUint16 * UNITS : TU * MIN : 0 * MAX : 65534 * DEFAULT : * DESCRIPTION : * This attribute specifies the maximum time allowed for the data in data * references corresponding to MLME primitives to be made available to the * firmware. The special value 0 specifies an infinite timeout. *******************************************************************************/ #define SLSI_PSID_UNIFI_MLME_DATA_REFERENCE_TIMEOUT 0x07D5 /******************************************************************************* * NAME : UnifiMlmeScanProbeInterval * PSID : 2007 (0x07D7) * PER INTERFACE?: NO * TYPE : SlsiUint16 * UNITS : TU * MIN : 0 * MAX : 65535 * DEFAULT : 70 * DESCRIPTION : * This attribute specifies the time between transmissions of broadcast * probe requests on a given channel when performing an active scan. *******************************************************************************/ #define SLSI_PSID_UNIFI_MLME_SCAN_PROBE_INTERVAL 0x07D7 /******************************************************************************* * NAME : UnifiMlmeScanHighRssiThreshold * PSID : 2008 (0x07D8) * PER INTERFACE?: NO * TYPE : SlsiInt16 * UNITS : dBm * MIN : -128 * MAX : 127 * DEFAULT : -100 * DESCRIPTION : * This attribute specifies the minimum RSSI necessary for a new station to * enter the coverage area of scan. *******************************************************************************/ #define SLSI_PSID_UNIFI_MLME_SCAN_HIGH_RSSI_THRESHOLD 0x07D8 /******************************************************************************* * NAME : UnifiMlmeScanDeltaRssiThreshold * PSID : 2010 (0x07DA) * PER INTERFACE?: NO * TYPE : SlsiUint16 * UNITS : dB * MIN : 1 * MAX : 255 * DEFAULT : 20 * DESCRIPTION : * This attribute specifies the magnitude of the change in RSSI for which a * scan result will be issued *******************************************************************************/ #define SLSI_PSID_UNIFI_MLME_SCAN_DELTA_RSSI_THRESHOLD 0x07DA /******************************************************************************* * NAME : UnifiMlmeScanHighSnrThreshold * PSID : 2011 (0x07DB) * PER INTERFACE?: NO * TYPE : SlsiInt16 * UNITS : dB * MIN : -128 * MAX : 127 * DEFAULT : -100 * DESCRIPTION : * This attribute specifies the minimum SNR necessary for a new station to * enter the coverage area of scan. *******************************************************************************/ #define SLSI_PSID_UNIFI_MLME_SCAN_HIGH_SNR_THRESHOLD 0x07DB /******************************************************************************* * NAME : UnifiMlmeScanDeltaSnrThreshold * PSID : 2013 (0x07DD) * PER INTERFACE?: NO * TYPE : SlsiUint16 * UNITS : dB * MIN : 1 * MAX : 255 * DEFAULT : 255 * DESCRIPTION : * This attribute specifies the magnitude of the change in SNR for a station * in scan for which a scan result will be issued *******************************************************************************/ #define SLSI_PSID_UNIFI_MLME_SCAN_DELTA_SNR_THRESHOLD 0x07DD /******************************************************************************* * NAME : UnifiMlmeScanMaximumAge * PSID : 2014 (0x07DE) * PER INTERFACE?: NO * TYPE : SlsiUint16 * UNITS : s * MIN : 1 * MAX : 2147 * DEFAULT : 5 * DESCRIPTION : * Not supported *******************************************************************************/ #define SLSI_PSID_UNIFI_MLME_SCAN_MAXIMUM_AGE 0x07DE /******************************************************************************* * NAME : UnifiMlmeScanMaximumResults * PSID : 2015 (0x07DF) * PER INTERFACE?: NO * TYPE : SlsiUint16 * MIN : 0 * MAX : 65535 * DEFAULT : 40 * DESCRIPTION : * This attribute specifies the maximum number of scan results (for all * scans) which will be stored before the oldest result is discarded, * irrespective of its age. The value 0 specifies no maximum. *******************************************************************************/ #define SLSI_PSID_UNIFI_MLME_SCAN_MAXIMUM_RESULTS 0x07DF /******************************************************************************* * NAME : UnifiMlmeAutonomousScanNoisy * PSID : 2016 (0x07E0) * PER INTERFACE?: NO * TYPE : SlsiBool * MIN : 0 * MAX : 1 * DEFAULT : FALSE * DESCRIPTION : * Not supported *******************************************************************************/ #define SLSI_PSID_UNIFI_MLME_AUTONOMOUS_SCAN_NOISY 0x07E0 /******************************************************************************* * NAME : UnifiFirmwareBuildId * PSID : 2021 (0x07E5) * PER INTERFACE?: NO * TYPE : SlsiUint32 * MIN : 0 * MAX : 4294967295 * DEFAULT : * DESCRIPTION : * Numeric build identifier for this firmware build. This should normally be * displayed in decimal. The textual build identifier is available via the * standard dot11manufacturerProductVersion MIB attribute. *******************************************************************************/ #define SLSI_PSID_UNIFI_FIRMWARE_BUILD_ID 0x07E5 /******************************************************************************* * NAME : UnifiChipVersion * PSID : 2022 (0x07E6) * PER INTERFACE?: NO * TYPE : SlsiUint16 * MIN : 0 * MAX : 65535 * DEFAULT : * DESCRIPTION : * Numeric identifier for the UniFi silicon revision (as returned by the * GBL_CHIP_VERSION hardware register). Other than being different for each * design variant (but not for alternative packaging options), the * particular values returned do not have any significance. *******************************************************************************/ #define SLSI_PSID_UNIFI_CHIP_VERSION 0x07E6 /******************************************************************************* * NAME : UnifiFirmwarePatchBuildId * PSID : 2023 (0x07E7) * PER INTERFACE?: NO * TYPE : SlsiUint32 * MIN : 0 * MAX : 4294967295 * DEFAULT : * DESCRIPTION : * Numeric build identifier for the patch set that has been applied to this * firmware image. This should normally be displayed in decimal. For a * patched ROM build there will be two build identifiers, the first will * correspond to the base ROM image, the second will correspond to the patch * set that has been applied. *******************************************************************************/ #define SLSI_PSID_UNIFI_FIRMWARE_PATCH_BUILD_ID 0x07E7 /******************************************************************************* * NAME : UnifiBasicCapabilities * PSID : 2030 (0x07EE) * PER INTERFACE?: NO * TYPE : SlsiUint16 * MIN : 0 * MAX : 65535 * DEFAULT : 0X0730 * DESCRIPTION : * This MIB variable indicates basis capabilities of the chip. The 16-bit * field follows the coding of IEEE 802.11 Capability Information. *******************************************************************************/ #define SLSI_PSID_UNIFI_BASIC_CAPABILITIES 0x07EE /******************************************************************************* * NAME : UnifiExtendedCapabilities * PSID : 2031 (0x07EF) * PER INTERFACE?: NO * TYPE : SlsiUint8 * MIN : 9 * MAX : 9 * DEFAULT : { 0X00, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00 } * DESCRIPTION : * This MIB variable indicates extended capabilities of the chip. Bit field * definition and coding follows IEEE 802.11 Extended Capability Information * Element, with spare subfields for capabilities that are independent from * chip/firmware implementation. *******************************************************************************/ #define SLSI_PSID_UNIFI_EXTENDED_CAPABILITIES 0x07EF /******************************************************************************* * NAME : UnifiHtCapabilities * PSID : 2032 (0x07F0) * PER INTERFACE?: NO * TYPE : SlsiUint8 * MIN : 21 * MAX : 21 * DEFAULT : { 0X7E, 0X09, 0X1F, 0XFF, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00 } * DESCRIPTION : * This MIB variable indicates the HT capabilities of the chip. See * SC-503520-SP for further details. *******************************************************************************/ #define SLSI_PSID_UNIFI_HT_CAPABILITIES 0x07F0 /******************************************************************************* * NAME : UnifiRsnCapabilities * PSID : 2034 (0x07F2) * PER INTERFACE?: NO * TYPE : SlsiUint16 * MIN : 0 * MAX : 65535 * DEFAULT : 0X248C * DESCRIPTION : * This MIB variable encodes the RSN Capabilities field of IEEE 802.11 RSN * Information Element. *******************************************************************************/ #define SLSI_PSID_UNIFI_RSN_CAPABILITIES 0x07F2 /******************************************************************************* * NAME : Unifi24G40MhzChannels * PSID : 2035 (0x07F3) * PER INTERFACE?: NO * TYPE : SlsiBool * MIN : 0 * MAX : 1 * DEFAULT : FALSE * DESCRIPTION : * This attribute, when TRUE, enables 40Mz wide channels in the 2.4G band *******************************************************************************/ #define SLSI_PSID_UNIFI24_G40_MHZ_CHANNELS 0x07F3 /******************************************************************************* * NAME : UnifiWapiSupported * PSID : 2039 (0x07F7) * PER INTERFACE?: NO * TYPE : SlsiBool * MIN : 0 * MAX : 1 * DEFAULT : TRUE * DESCRIPTION : * This is populated through efuse read. *******************************************************************************/ #define SLSI_PSID_UNIFI_WAPI_SUPPORTED 0x07F7 /******************************************************************************* * NAME : UnifiSupportedDataRates * PSID : 2041 (0x07F9) * PER INTERFACE?: NO * TYPE : SlsiUint8 * UNITS : 500 kbps * MIN : 2 * MAX : 16 * DEFAULT : { 0X02, 0X04, 0X0B, 0X0C, 0X12, 0X16, 0X18, 0X24, 0X30, 0X48, 0X60, 0X6C } * DESCRIPTION : * Defines the supported non-HT data rates. It is encoded as N+1 octets * where the first octet is N and the subsequent octets each describe a * single supported rate. *******************************************************************************/ #define SLSI_PSID_UNIFI_SUPPORTED_DATA_RATES 0x07F9 /******************************************************************************* * NAME : UnifiSupportedCipherSuites * PSID : 2042 (0x07FA) * PER INTERFACE?: NO * TYPE : SlsiUint16 * MIN : 0 * MAX : 65535 * DEFAULT : 0X3F11 * DESCRIPTION : * This MIB variable encodes both the supported cipher suite of IEEE 802.11 * RSN Information Element. *******************************************************************************/ #define SLSI_PSID_UNIFI_SUPPORTED_CIPHER_SUITES 0x07FA /******************************************************************************* * NAME : UnifiRadioMeasurementActivated * PSID : 2043 (0x07FB) * PER INTERFACE?: NO * TYPE : SlsiBool * MIN : 0 * MAX : 1 * DEFAULT : TRUE * DESCRIPTION : * When TRUE Radio Measurements are supported. The capability is disabled * otherwise. *******************************************************************************/ #define SLSI_PSID_UNIFI_RADIO_MEASUREMENT_ACTIVATED 0x07FB /******************************************************************************* * NAME : UnifiRadioMeasurementCapabilities * PSID : 2044 (0x07FC) * PER INTERFACE?: NO * TYPE : SlsiUint8 * MIN : 5 * MAX : 5 * DEFAULT : { 0X71, 0X00, 0X00, 0X00, 0X00 } * DESCRIPTION : * This MIB variable indicates the RM Enabled capabilities of the chip. See * SC-503520-SP for further details. *******************************************************************************/ #define SLSI_PSID_UNIFI_RADIO_MEASUREMENT_CAPABILITIES 0x07FC /******************************************************************************* * NAME : UnifiVhtActivated * PSID : 2045 (0x07FD) * PER INTERFACE?: NO * TYPE : SlsiBool * MIN : 0 * MAX : 1 * DEFAULT : FALSE * DESCRIPTION : * This attribute, when TRUE, indicates that use VHT mode. The capability is * disabled otherwise. *******************************************************************************/ #define SLSI_PSID_UNIFI_VHT_ACTIVATED 0x07FD /******************************************************************************* * NAME : UnifiHtActivated * PSID : 2046 (0x07FE) * PER INTERFACE?: NO * TYPE : SlsiBool * MIN : 0 * MAX : 1 * DEFAULT : TRUE * DESCRIPTION : * This attribute, when TRUE, indicates that use HT mode. The capability is * disabled otherwise. *******************************************************************************/ #define SLSI_PSID_UNIFI_HT_ACTIVATED 0x07FE /******************************************************************************* * NAME : UnifiRssiRoamScanTrigger * PSID : 2050 (0x0802) * PER INTERFACE?: NO * TYPE : SlsiInt16 * UNITS : dBm * MIN : -128 * MAX : 127 * DEFAULT : -65 * DESCRIPTION : * The current RRSI value below which roaming scan shall start *******************************************************************************/ #define SLSI_PSID_UNIFI_RSSI_ROAM_SCAN_TRIGGER 0x0802 /******************************************************************************* * NAME : UnifiRssiRoamDeltaTrigger * PSID : 2051 (0x0803) * PER INTERFACE?: NO * TYPE : SlsiUint16 * UNITS : dB * MIN : 1 * MAX : 255 * DEFAULT : 10 * DESCRIPTION : * The RRSI on the target AP must be greater than the current AP RSSI by * that value to be oaming candidate *******************************************************************************/ #define SLSI_PSID_UNIFI_RSSI_ROAM_DELTA_TRIGGER 0x0803 /******************************************************************************* * NAME : UnifiCachedChannelScanPeriod * PSID : 2052 (0x0804) * PER INTERFACE?: NO * TYPE : SlsiUint32 * MIN : 1 * MAX : 4294967295 * DEFAULT : 30000000 * DESCRIPTION : * The scan period for cached channels (microseconds) *******************************************************************************/ #define SLSI_PSID_UNIFI_CACHED_CHANNEL_SCAN_PERIOD 0x0804 /******************************************************************************* * NAME : UnifiFullRoamScanPeriod * PSID : 2053 (0x0805) * PER INTERFACE?: NO * TYPE : SlsiUint32 * MIN : 1 * MAX : 4294967295 * DEFAULT : 60000000 * DESCRIPTION : * The scan period for all channel allowed by the current regulatory domain * (microseconds) *******************************************************************************/ #define SLSI_PSID_UNIFI_FULL_ROAM_SCAN_PERIOD 0x0805 /******************************************************************************* * NAME : UnifiRoamScanProbeInterval * PSID : 2054 (0x0806) * PER INTERFACE?: NO * TYPE : SlsiUint16 * UNITS : ms * MIN : 0 * MAX : 65535 * DEFAULT : 20 * DESCRIPTION : * DEPRECATED See SSB-4650 *******************************************************************************/ #define SLSI_PSID_UNIFI_ROAM_SCAN_PROBE_INTERVAL 0x0806 /******************************************************************************* * NAME : UnifiRoamScanBand * PSID : 2055 (0x0807) * PER INTERFACE?: NO * TYPE : SlsiUint16 * MIN : 1 * MAX : 2 * DEFAULT : 2 * DESCRIPTION : * ) Indicates whether only intra-band or all-band should be used for * roaming scan. 2 - Roaming across band 1 - Roaming within band *******************************************************************************/ #define SLSI_PSID_UNIFI_ROAM_SCAN_BAND 0x0807 /******************************************************************************* * NAME : UnifiRoamScanMinActiveChannelTime * PSID : 2056 (0x0808) * PER INTERFACE?: NO * TYPE : SlsiUint16 * UNITS : TU * MIN : 0 * MAX : 65535 * DEFAULT : 30 * DESCRIPTION : * The minimum time to spend on each channel that is actively scanned *******************************************************************************/ #define SLSI_PSID_UNIFI_ROAM_SCAN_MIN_ACTIVE_CHANNEL_TIME 0x0808 /******************************************************************************* * NAME : UnifiRoamScanMaxActiveChannelTime * PSID : 2057 (0x0809) * PER INTERFACE?: NO * TYPE : SlsiUint16 * UNITS : TU * MIN : 0 * MAX : 65535 * DEFAULT : 50 * DESCRIPTION : * The maximum time to spend on each channel (providing the channel is * detected as busy during Min_Channel_Time) that is actively scanned. This * shall be greater than or equal to the Min_Channel_Time for active scan. *******************************************************************************/ #define SLSI_PSID_UNIFI_ROAM_SCAN_MAX_ACTIVE_CHANNEL_TIME 0x0809 /******************************************************************************* * NAME : UnifiRoamScanMinPassiveChannelTime * PSID : 2058 (0x080A) * PER INTERFACE?: NO * TYPE : SlsiUint16 * UNITS : TU * MIN : 0 * MAX : 65535 * DEFAULT : 110 * DESCRIPTION : * The minimum time to spend on each channel that is passively scanned *******************************************************************************/ #define SLSI_PSID_UNIFI_ROAM_SCAN_MIN_PASSIVE_CHANNEL_TIME 0x080A /******************************************************************************* * NAME : UnifiRoamScanMaxPassiveChannelTime * PSID : 2059 (0x080B) * PER INTERFACE?: NO * TYPE : SlsiUint16 * UNITS : TU * MIN : 0 * MAX : 65535 * DEFAULT : 110 * DESCRIPTION : * The maximum time to spend on each channel (providing the channel is * detected as busy during Min_Channel_Time) that is passively scanned. This * shall be greater than or equal to the Min_Channel_Time for passive scan. *******************************************************************************/ #define SLSI_PSID_UNIFI_ROAM_SCAN_MAX_PASSIVE_CHANNEL_TIME 0x080B /******************************************************************************* * NAME : UnifiRoamMode * PSID : 2060 (0x080C) * PER INTERFACE?: NO * TYPE : SlsiBool * MIN : 0 * MAX : 1 * DEFAULT : TRUE * DESCRIPTION : * Enable/Disable on-chip roaming, i.e. roaming scan will be triggered by * firmware if and only if this attribute is true. *******************************************************************************/ #define SLSI_PSID_UNIFI_ROAM_MODE 0x080C /******************************************************************************* * NAME : UnifiRoamTriggerDelay * PSID : 2062 (0x080E) * PER INTERFACE?: NO * TYPE : SlsiUint16 * UNITS : TU * MIN : 0 * MAX : 65535 * DEFAULT : 10000 * DESCRIPTION : * Delay after connection to an AP before allowing a roaming scan to be * triggered.This allows us to stop a roaming scan from getting in the way * of the initial connection protocols. DHCP, Eapol etc. *******************************************************************************/ #define SLSI_PSID_UNIFI_ROAM_TRIGGER_DELAY 0x080E /******************************************************************************* * NAME : UnifiWesMode * PSID : 2066 (0x0812) * PER INTERFACE?: NO * TYPE : SlsiBool * MIN : 0 * MAX : 1 * DEFAULT : FALSE * DESCRIPTION : * NCHO Roaming Mode. *******************************************************************************/ #define SLSI_PSID_UNIFI_WES_MODE 0x0812 /******************************************************************************* * NAME : UnifiRoamScanControl * PSID : 2067 (0x0813) * PER INTERFACE?: NO * TYPE : SlsiBool * MIN : 0 * MAX : 1 * DEFAULT : FALSE * DESCRIPTION : * NCHO Roam Scan Control. *******************************************************************************/ #define SLSI_PSID_UNIFI_ROAM_SCAN_CONTROL 0x0813 /******************************************************************************* * NAME : UnifiDfsScanMode * PSID : 2068 (0x0814) * PER INTERFACE?: NO * TYPE : SlsiUint16 * UNITS : TU * MIN : 0 * MAX : 2 * DEFAULT : 1 * DESCRIPTION : * Scan DFS Mode. 0: DFS scan disabled 0: DFS roaming scan disabled. 1: DFS * scan enabled. (passive scanning on DFS channels) 1: DFS roaming scan * enabled. Normal mode. i.e. passive scanning on DFS channels (Default) 2: * DFS scan enabled. (passive scanning on DFS channels) 2: DFS roaming scan * enabled with active scanning on channel list supplied with * MLME-SET-CACHED-CHANNELS.request *******************************************************************************/ #define SLSI_PSID_UNIFI_DFS_SCAN_MODE 0x0814 /******************************************************************************* * NAME : UnifiRoamScanHomeTime * PSID : 2069 (0x0815) * PER INTERFACE?: NO * TYPE : SlsiUint16 * UNITS : TU * MIN : 0 * MAX : 65535 * DEFAULT : * DESCRIPTION : * The maximum time to spend scanning before pausing for the * unifiRoamScanHomeAwayTime, default of 0 mean has no specific requirement *******************************************************************************/ #define SLSI_PSID_UNIFI_ROAM_SCAN_HOME_TIME 0x0815 /******************************************************************************* * NAME : UnifiRoamScanHomeAwayTime * PSID : 2070 (0x0816) * PER INTERFACE?: NO * TYPE : SlsiUint16 * UNITS : TU * MIN : 0 * MAX : 65535 * DEFAULT : * DESCRIPTION : * The time to spend NOT scanning after scanning for * unifiRoamScanHomeTime,default of 0 mean has no specific requirement *******************************************************************************/ #define SLSI_PSID_UNIFI_ROAM_SCAN_HOME_AWAY_TIME 0x0816 /******************************************************************************* * NAME : UnifiRoamScanNProbe * PSID : 2072 (0x0818) * PER INTERFACE?: NO * TYPE : SlsiUint16 * MIN : 0 * MAX : 65535 * DEFAULT : 2 * DESCRIPTION : * The Number of ProbeReq per channel for the Roaming Scan. *******************************************************************************/ #define SLSI_PSID_UNIFI_ROAM_SCAN_NPROBE 0x0818 /******************************************************************************* * NAME : UnifiVS2RoamingCount * PSID : 2073 (0x0819) * PER INTERFACE?: NO * TYPE : SlsiUint16 * MIN : 0 * MAX : 65535 * DEFAULT : * DESCRIPTION : * Number of Roams since Connect or last set to 0. (CCX Voice Services: * Roaming Count) *******************************************************************************/ #define SLSI_PSID_UNIFI_VS2_ROAMING_COUNT 0x0819 /******************************************************************************* * NAME : UnifiVS2RoamingDelay * PSID : 2074 (0x081A) * PER INTERFACE?: NO * TYPE : SlsiUint16 * UNITS : ms * MIN : 0 * MAX : 65535 * DEFAULT : * DESCRIPTION : * milliseconds taken for last roam (CCX Voice Services: Roaming Delay) *******************************************************************************/ #define SLSI_PSID_UNIFI_VS2_ROAMING_DELAY 0x081A /******************************************************************************* * NAME : UnifiApOlbcDuration * PSID : 2076 (0x081C) * PER INTERFACE?: NO * TYPE : SlsiUint16 * UNITS : milliseconds * MIN : 0 * MAX : 65535 * DEFAULT : 300 * DESCRIPTION : * How long the AP enables reception of BEACON frames to perform Overlapping * Legacy BSS Condition(OLBC). If set to 0 then OLBC is disabled. *******************************************************************************/ #define SLSI_PSID_UNIFI_AP_OLBC_DURATION 0x081C /******************************************************************************* * NAME : UnifiApOlbcInterval * PSID : 2077 (0x081D) * PER INTERFACE?: NO * TYPE : SlsiUint16 * UNITS : milliseconds * MIN : 0 * MAX : 65535 * DEFAULT : 2000 * DESCRIPTION : * How long between periods of receiving BEACON frames to perform * Overlapping Legacy BSS Condition(OLBC). This value MUST exceed the OBLC * duration MIB unifiApOlbcDuration. If set to 0 then OLBC is disabled. *******************************************************************************/ #define SLSI_PSID_UNIFI_AP_OLBC_INTERVAL 0x081D /******************************************************************************* * NAME : UnifiFrameResponseTimeout * PSID : 2080 (0x0820) * PER INTERFACE?: NO * TYPE : SlsiUint16 * UNITS : TU * MIN : 0 * MAX : 500 * DEFAULT : 200 * DESCRIPTION : * How long to wait for a frame (Auth, Assoc, ReAssoc) after Rame replies to * a send frame request *******************************************************************************/ #define SLSI_PSID_UNIFI_FRAME_RESPONSE_TIMEOUT 0x0820 /******************************************************************************* * NAME : UnifiConnectionFailureTimeout * PSID : 2081 (0x0821) * PER INTERFACE?: NO * TYPE : SlsiUint16 * UNITS : TU * MIN : 0 * MAX : 4000 * DEFAULT : 3000 * DESCRIPTION : * How long the complete connection procedure has before the MLME times out * and issues a Connect Indication (fail). *******************************************************************************/ #define SLSI_PSID_UNIFI_CONNECTION_FAILURE_TIMEOUT 0x0821 /******************************************************************************* * NAME : UnifiConnectingProbeTimeout * PSID : 2082 (0x0822) * PER INTERFACE?: NO * TYPE : SlsiUint16 * UNITS : TU * MIN : 0 * MAX : 100 * DEFAULT : 10 * DESCRIPTION : * How long to wait for a ProbeRsp when syncronising before resending a * ProbeReq *******************************************************************************/ #define SLSI_PSID_UNIFI_CONNECTING_PROBE_TIMEOUT 0x0822 /******************************************************************************* * NAME : UnifiDisconnectTimeout * PSID : 2083 (0x0823) * PER INTERFACE?: NO * TYPE : SlsiUint16 * UNITS : seconds * MIN : 0 * MAX : 3 * DEFAULT : 2 * DESCRIPTION : * How long the firmware attempts to perform a disconnect (triggered by * MLME_DISCONNECT-REQ) before responding with MLME-DISCONNECT-IND and * aborting the disconnection attempt.This is particulary important when a * SoftAP is attempting to disconnect associated stations which might have * "silently" left the ESS. *******************************************************************************/ #define SLSI_PSID_UNIFI_DISCONNECT_TIMEOUT 0x0823 /******************************************************************************* * NAME : UnifiFrameResponseCfmTxLifetimeTimeout * PSID : 2084 (0x0824) * PER INTERFACE?: NO * TYPE : SlsiUint16 * UNITS : TU * MIN : 0 * MAX : 65535 * DEFAULT : 10 * DESCRIPTION : * How long to wait to retry a frame (Auth, Assoc, ReAssoc) after TX Cfm * trasnmission_status = TxLifetime. *******************************************************************************/ #define SLSI_PSID_UNIFI_FRAME_RESPONSE_CFM_TX_LIFETIME_TIMEOUT 0x0824 /******************************************************************************* * NAME : UnifiFrameResponseCfmFailureTimeout * PSID : 2085 (0x0825) * PER INTERFACE?: NO * TYPE : SlsiUint16 * UNITS : TU * MIN : 0 * MAX : 65535 * DEFAULT : 40 * DESCRIPTION : * How long to wait to retry a frame (Auth, Assoc, ReAssoc) after TX Cfm * trasnmission_status != Successful | TxLifetime. *******************************************************************************/ #define SLSI_PSID_UNIFI_FRAME_RESPONSE_CFM_FAILURE_TIMEOUT 0x0825 /******************************************************************************* * NAME : UnifiMlmeScanMaxNumberOfProbeSets * PSID : 2087 (0x0827) * PER INTERFACE?: NO * TYPE : SlsiUint16 * MIN : 0 * MAX : 65535 * DEFAULT : 2 * DESCRIPTION : * Max number of Probe Request sets that the scan engine will send on a * single channel. *******************************************************************************/ #define SLSI_PSID_UNIFI_MLME_SCAN_MAX_NUMBER_OF_PROBE_SETS 0x0827 /******************************************************************************* * NAME : UnifiMlmeScanStopIfLessThanXFrames * PSID : 2088 (0x0828) * PER INTERFACE?: NO * TYPE : SlsiUint16 * MIN : 0 * MAX : 65535 * DEFAULT : 4 * DESCRIPTION : * Stop scanning on a channel if less than X Beacons or Probe Responses are * received. *******************************************************************************/ #define SLSI_PSID_UNIFI_MLME_SCAN_STOP_IF_LESS_THAN_XFRAMES 0x0828 /******************************************************************************* * NAME : UnifiRoamingTriggerTime * PSID : 2090 (0x082A) * PER INTERFACE?: NO * TYPE : SlsiUint32 * UNITS : us * MIN : 0 * MAX : 4294967295 * DEFAULT : * DESCRIPTION : * Timestamp of last roam tigger. Timestamp of any trigger for roaming. * Caused by Link loss, Rssi, mlme_roam_req etc *******************************************************************************/ #define SLSI_PSID_UNIFI_ROAMING_TRIGGER_TIME 0x082A /******************************************************************************* * NAME : UnifiRoamingStartTime * PSID : 2091 (0x082B) * PER INTERFACE?: NO * TYPE : SlsiUint32 * UNITS : us * MIN : 0 * MAX : 4294967295 * DEFAULT : * DESCRIPTION : * Timestamp of last roam start. Start of a connection attempt to an AP * (Starts at Dataplane Pause) *******************************************************************************/ #define SLSI_PSID_UNIFI_ROAMING_START_TIME 0x082B /******************************************************************************* * NAME : UnifiRoamingOnchipEndTime * PSID : 2092 (0x082C) * PER INTERFACE?: NO * TYPE : SlsiUint32 * UNITS : us * MIN : 0 * MAX : 4294967295 * DEFAULT : * DESCRIPTION : * Timestamp of last roam end for the onchip portion of the roam. * mlme_roamed_ind to Host *******************************************************************************/ #define SLSI_PSID_UNIFI_ROAMING_ONCHIP_END_TIME 0x082C /******************************************************************************* * NAME : UnifiRoamingEndTime * PSID : 2093 (0x082D) * PER INTERFACE?: NO * TYPE : SlsiUint32 * UNITS : us * MIN : 0 * MAX : 4294967295 * DEFAULT : * DESCRIPTION : * Timestamp of last roam end. Keys installed and Dataplane unpaused. *******************************************************************************/ #define SLSI_PSID_UNIFI_ROAMING_END_TIME 0x082D /******************************************************************************* * NAME : UnifimcdHackRoamKck * PSID : 2094 (0x082E) * PER INTERFACE?: NO * TYPE : SlsiUint8 * MIN : 16 * MAX : 16 * DEFAULT : { 0X00, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00 } * DESCRIPTION : * KCK *******************************************************************************/ #define SLSI_PSID_UNIFIMCD_HACK_ROAM_KCK 0x082E /******************************************************************************* * NAME : UnifimcdHackRoamKek * PSID : 2095 (0x082F) * PER INTERFACE?: NO * TYPE : SlsiUint8 * MIN : 16 * MAX : 16 * DEFAULT : { 0X00, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00 } * DESCRIPTION : * KEK *******************************************************************************/ #define SLSI_PSID_UNIFIMCD_HACK_ROAM_KEK 0x082F /******************************************************************************* * NAME : UnifiPeerAverageTxDataRate * PSID : 2096 (0x0830) * PER INTERFACE?: NO * TYPE : SlsiUint16 * MIN : 0 * MAX : 65535 * DEFAULT : * DESCRIPTION : * The average tx rate that are used for transmissions since this entry was * last read; *******************************************************************************/ #define SLSI_PSID_UNIFI_PEER_AVERAGE_TX_DATA_RATE 0x0830 /******************************************************************************* * NAME : UnifiPeerRssi * PSID : 2097 (0x0831) * PER INTERFACE?: NO * TYPE : SlsiInt16 * MIN : -32768 * MAX : 32767 * DEFAULT : * DESCRIPTION : * This attribute provides a running average of the Received Signal Strength * Indication (RSSI) for packets received from the peer. The value is only * an indication of the signal strength; it is not an accurate measurement. * The table will be reset when UniFi joins or starts a BSS or is reset. An * entry is reset when the corresponding peer station record is deleted. *******************************************************************************/ #define SLSI_PSID_UNIFI_PEER_RSSI 0x0831 /******************************************************************************* * NAME : UnifiPioProtectMask * PSID : 2100 (0x0834) * PER INTERFACE?: NO * TYPE : SlsiUint16 * MIN : 0 * MAX : 65535 * DEFAULT : * DESCRIPTION : * Each of UniFi&apos;s 16 PIO lines may have special (hardware or software) * functionality attached, thereby preventing its use for general purpose * I/O. This attribute provides a bit mask indicating which PIOs are * reserved in this way; a bit set to 1 cannot be set using the * unifiPioDirectionMask or unifiPioLevelMask attributes. *******************************************************************************/ #define SLSI_PSID_UNIFI_PIO_PROTECT_MASK 0x0834 /******************************************************************************* * NAME : UnifiPioDirectionMask * PSID : 2101 (0x0835) * PER INTERFACE?: NO * TYPE : SlsiUint16 * MIN : 0 * MAX : 65535 * DEFAULT : * DESCRIPTION : * Each of UniFi&apos;s 16 PIO lines may be configured as either an input or * an output. This attribute sets or gets the current state as a bit mask; a * bit set to 1 sets the corresponding PIO to be an output, otherwise it is * set to be an input. The drive direction of PIOs marked as protected by * unifiPioProtectMask cannot be modified; the corresponding bits are * ignored when written and undefined when read. This attribute is not reset * by an MLME-RESET.request. *******************************************************************************/ #define SLSI_PSID_UNIFI_PIO_DIRECTION_MASK 0x0835 /******************************************************************************* * NAME : UnifiPioLevelMask * PSID : 2102 (0x0836) * PER INTERFACE?: NO * TYPE : SlsiUint16 * MIN : 0 * MAX : 65535 * DEFAULT : * DESCRIPTION : * This attribute sets or gets the level of UniFi&apos;s 16 PIO lines as a * bit mask; a bit set to 0 corresponds to a logic low level, anda bit set * to 1 corresponds to a logic high level. Reading this attribute gives the * current state of the lines (for outputs it is the level being driven, and * for inputs it is the sampled levels). Writing this attribute sets the * state of the lines (for outputs it sets the drive level, and for inputs * it configures internal pull-ups or pull-downs). The drive level of PIOs * marked as protected by unifiPioProtectMask cannot be modified; the * corresponding bits are ignored when written. This attribute is not reset * by an MLME-RESET.request. *******************************************************************************/ #define SLSI_PSID_UNIFI_PIO_LEVEL_MASK 0x0836 /******************************************************************************* * NAME : UnifiPioHostWakeMode * PSID : 2105 (0x0839) * PER INTERFACE?: NO * TYPE : unifiPioHostWakeMode * MIN : 0 * MAX : 255 * DEFAULT : 1 * DESCRIPTION : * If the host&apos;s interface is disabled to save power then it may not be * possible to use the normal interrupt request to wake the host. This * attribute enables a PIO line to be used as an alternative out-of-band * signalling mechanism. Currently defined values are: wake-none (1) - no * out-of-band wake-up mechanism. wake-pulse (2) - pulse a PIO line to wake * the host with polarity specified by unifiPioHostWakePolarity. *******************************************************************************/ #define SLSI_PSID_UNIFI_PIO_HOST_WAKE_MODE 0x0839 /******************************************************************************* * NAME : UnifiPioHostWakeOutput * PSID : 2106 (0x083A) * PER INTERFACE?: NO * TYPE : SlsiUint16 * MIN : 0 * MAX : 15 * DEFAULT : * DESCRIPTION : * This attribute specifies the number of the PIO line to use for waking the * host if unifiPioHostWakeMode is not set to wake-none. *******************************************************************************/ #define SLSI_PSID_UNIFI_PIO_HOST_WAKE_OUTPUT 0x083A /******************************************************************************* * NAME : UnifiPioHostWakePolarity * PSID : 2107 (0x083B) * PER INTERFACE?: NO * TYPE : unifiPioHostWakePolarity * MIN : 0 * MAX : 255 * DEFAULT : * DESCRIPTION : * This attribute specifies the polarity of PIO signalling used to wake the * host if unifiPioHostWakeMode is not set to wake-none. *******************************************************************************/ #define SLSI_PSID_UNIFI_PIO_HOST_WAKE_POLARITY 0x083B /******************************************************************************* * NAME : UnifiPioHostWakeZeal * PSID : 2108 (0x083C) * PER INTERFACE?: NO * TYPE : unifiPioHostWakeZeal * MIN : 0 * MAX : 255 * DEFAULT : * DESCRIPTION : * This attribute controls the level of promiscuity of PIO wakeup signalling * generated if unifiPioHostWakeMode is not set to wake-none. The available * options are: wake-normal (0) - only generate a PIO wakeup signal if the * host interface is idle and interrupts are masked. With an SDIO host * interface this mechanism is invoked if either the IENM or IEN1 bit of the * CCCR Int Enable register is not set. wake-always (1) - generate PIO * wakeup signal regardless of host interface activity and interrupt mask * status. *******************************************************************************/ #define SLSI_PSID_UNIFI_PIO_HOST_WAKE_ZEAL 0x083C /******************************************************************************* * NAME : UnifiPioHostWakePulseDuration * PSID : 2109 (0x083D) * PER INTERFACE?: NO * TYPE : SlsiUint16 * UNITS : microseconds * MIN : 0 * MAX : 65535 * DEFAULT : * DESCRIPTION : * This attribute specifies the length of the pulse signalled to wake the * host on the PIO specified by unifiPioHostWakeOutput if * unifiPioHostWakeMode is set to wake-pulse. The value of zero has a * special meaning and instructs UniFi to toggle the wakeup signal as * quickly as possible. *******************************************************************************/ #define SLSI_PSID_UNIFI_PIO_HOST_WAKE_PULSE_DURATION 0x083D /******************************************************************************* * NAME : UnifiUartConfigure * PSID : 2110 (0x083E) * PER INTERFACE?: NO * TYPE : SlsiUint16 * MIN : 0 * MAX : 65535 * DEFAULT : * DESCRIPTION : * An MLME-SET.request of this attribute causes the UART to be configured * using the values of the other unifiUart* attributes. The value supplied * for this attribute is ignored. *******************************************************************************/ #define SLSI_PSID_UNIFI_UART_CONFIGURE 0x083E /******************************************************************************* * NAME : UnifiUartPios * PSID : 2111 (0x083F) * PER INTERFACE?: NO * TYPE : unifiUartPios * MIN : 0 * MAX : 255 * DEFAULT : * DESCRIPTION : * Specification of which PIOs should be connected to the UART. Currently * defined values are: 1 - UART not used; all PIOs are available for other * uses. 2 - Data transmit and receive connected to PIO[12] and PIO[14] * respectively. No hardware handshaking lines. 3 - Data and handshaking * lines connected to PIO[12:15]. *******************************************************************************/ #define SLSI_PSID_UNIFI_UART_PIOS 0x083F /******************************************************************************* * NAME : UnifiClockFrequency * PSID : 2140 (0x085C) * PER INTERFACE?: NO * TYPE : SlsiUint16 * UNITS : kHz * MIN : 0 * MAX : 65535 * DEFAULT : * DESCRIPTION : * This attribute can be used to query the nominal frequency of the external * clock source or crystal oscillator used by UniFi. The clock frequency is * a system parameter and can not be modified by this MIB key. *******************************************************************************/ #define SLSI_PSID_UNIFI_CLOCK_FREQUENCY 0x085C /******************************************************************************* * NAME : UnifiCrystalFrequencyTrim * PSID : 2141 (0x085D) * PER INTERFACE?: NO * TYPE : SlsiUint16 * MIN : 0 * MAX : 63 * DEFAULT : 31 * DESCRIPTION : * The IEEE 802.11 standard requires a frequency accuracy of either +/- 20 * ppm or +/- 25 ppm depending on the physical layer being used. If * UniFi&apos;s frequency reference is a crystal then this attribute should * be used to tweak the oscillating frequency to compensate for design- or * device-specific variations. Each step change trims the frequency by * approximately 2 ppm. *******************************************************************************/ #define SLSI_PSID_UNIFI_CRYSTAL_FREQUENCY_TRIM 0x085D /******************************************************************************* * NAME : UnifiDeepSleepConfig * PSID : 2142 (0x085E) * PER INTERFACE?: NO * TYPE : unifiDeepSleepConfig * MIN : 0 * MAX : 255 * DEFAULT : 1 * DESCRIPTION : * UniFi uses various sleep modes to save power. The lowest power mode is * called deep sleep; this turns off the crystal oscillator or stops * requesting an external clock. The resulting loss of responsiveness and * timing accuracy is sometimes undesirable, so use of deep sleep can be * disabled or restricted using this attribute. Other sleep modes are not * affected. The possible values are: 0 - Deep sleep will not be used. 1 - * Deep sleep will be used whenever possible, including when UniFi is in * power save mode while in a BSS. 2 - Deep sleep will only be used when * UniFi is not part of a BSS. It will not be used in the IEEE 802.11 * standard power save modes. *******************************************************************************/ #define SLSI_PSID_UNIFI_DEEP_SLEEP_CONFIG 0x085E /******************************************************************************* * NAME : UnifiExternalClockDetect * PSID : 2146 (0x0862) * PER INTERFACE?: NO * TYPE : SlsiBool * MIN : 0 * MAX : 1 * DEFAULT : FALSE * DESCRIPTION : * If UniFi is running with an external fast clock source, i.e. * unifiExternalFastClockRequest is set, it is common for this clock to be * shared with other devices. Setting this attribute to true causes UniFi to * detect when the clock is present (presumably in response to a request * from another device), and to perform any pending activities at that time * rather than requesting the clock again some time later. This is likely to * reduce overall system power consumption by reducing the total time that * the clock needs to be active. *******************************************************************************/ #define SLSI_PSID_UNIFI_EXTERNAL_CLOCK_DETECT 0x0862 /******************************************************************************* * NAME : UnifiAnaIoSettingEnum * PSID : 2148 (0x0864) * PER INTERFACE?: NO * TYPE : INT64 * MIN : 0 * MAX : 4294967295 * DEFAULT : * DESCRIPTION : * This counter shall increment when an ACK is not received when expected. *******************************************************************************/ #define SLSI_PSID_UNIFI_ANA_IO_SETTING_ENUM 0x0864 /******************************************************************************* * NAME : UnifiExternalFastClockRequest * PSID : 2149 (0x0865) * PER INTERFACE?: NO * TYPE : unifiExternalFastClockRequest * MIN : 0 * MAX : 255 * DEFAULT : 1 * DESCRIPTION : * It is possible to supply UniFi with an external fast reference clock, as * an alternative to using a crystal. If such a clock is used then it is * only required when UniFi is active. A signal can be output on PIO[2] or * if the version of UniFi in use is the UF602x or later, any PIO may be * used (see unifiExternalFastClockRequestPIO) to indicate when UniFi * requires a fast clock. Setting this attribute makes this signal become * active and determines the type of signal output. 0 - No clock request. 1 * - Non inverted, totem pole. 2 - Inverted, totem pole. 3 - Open drain. 4 - * Open source. *******************************************************************************/ #define SLSI_PSID_UNIFI_EXTERNAL_FAST_CLOCK_REQUEST 0x0865 /******************************************************************************* * NAME : UnifiWatchdogTimeout * PSID : 2152 (0x0868) * PER INTERFACE?: NO * TYPE : SlsiUint16 * UNITS : ms * MIN : 1 * MAX : 65535 * DEFAULT : 1500 * DESCRIPTION : * This attribute specifies the maximum time the background may be busy or * locked out for. If this time is exceeded, UniFi will reset. If this key * is set to 65535 then the watchdog will be disabled. *******************************************************************************/ #define SLSI_PSID_UNIFI_WATCHDOG_TIMEOUT 0x0868 /******************************************************************************* * NAME : UnifiDeepSleepWakeupDelay * PSID : 2154 (0x086A) * PER INTERFACE?: NO * TYPE : SlsiUint16 * MIN : 1 * MAX : 65535 * DEFAULT : 8 * DESCRIPTION : * When UniFi wakes from deep sleep there is normally a need for a delay * between UniFi waking up and the fast clock settling to the correct * frequency. If UniFi is driving the crystal itself then this delay is the * time needed for the crystal to settle. If UniFi is configured to use an * external clock then this is the maximum time that it will take the system * component that supplies the external clock to produce a stable output. * This wakeup delay is configured by this MIB entry. The delay should * include both the time for the crystal or external clock to settle and an * additional time for the internal PLL to lock. The delay is specified in * slow clock cycles. The slow clock is nominally 8 kHz giving a period of * 125 microseconds. *******************************************************************************/ #define SLSI_PSID_UNIFI_DEEP_SLEEP_WAKEUP_DELAY 0x086A /******************************************************************************* * NAME : UnifiExternalFastClockRequestPio * PSID : 2158 (0x086E) * PER INTERFACE?: NO * TYPE : SlsiUint16 * MIN : 0 * MAX : 15 * DEFAULT : 9 * DESCRIPTION : * If an external fast reference clock is being supplied to UniFi as an * alternative to a crystal (see unifiExternalFastClockRequest) and the * version of UniFi in use is the UF602x or later, any PIO may be used as * the external fast clock request output from UniFi. This MIB key * determines the PIO to use. *******************************************************************************/ #define SLSI_PSID_UNIFI_EXTERNAL_FAST_CLOCK_REQUEST_PIO 0x086E /******************************************************************************* * NAME : UnifiRssi * PSID : 2200 (0x0898) * PER INTERFACE?: NO * TYPE : SlsiInt16 * UNITS : dBm * MIN : -32768 * MAX : 32767 * DEFAULT : * DESCRIPTION : * This attribute provides a running average of the Received Signal Strength * Indication (RSSI) for packets received by UniFi&apos;s radio. The value * should only be treated as an indication of the signal strength; it is not * an accurate measurement. The result is only meaningful if the * unifiRxExternalGain attribute is set to the correct calibration value. If * UniFi is part of a BSS, only frames originating from devices in the BSS * are reported (so far as this can be determined). The average is reset * when UniFi joins or starts a BSS or is reset. *******************************************************************************/ #define SLSI_PSID_UNIFI_RSSI 0x0898 /******************************************************************************* * NAME : UnifiSnr * PSID : 2202 (0x089A) * PER INTERFACE?: NO * TYPE : SlsiInt16 * UNITS : dB * MIN : -32768 * MAX : 32767 * DEFAULT : * DESCRIPTION : * This attribute provides a running average of the Signal to Noise Ratio * (SNR) for packets received by UniFi&apos;s radio. *******************************************************************************/ #define SLSI_PSID_UNIFI_SNR 0x089A /******************************************************************************* * NAME : UnifiRxRetryCount * PSID : 2203 (0x089B) * PER INTERFACE?: NO * TYPE : INT64 * MIN : 0 * MAX : 4294967295 * DEFAULT : * DESCRIPTION : * This is a counter that increments whenever an MPDU is successfully * received that has the retry bit set in the frame control field, * indicating that the MPDU is a retransmission of a unicast frame. *******************************************************************************/ #define SLSI_PSID_UNIFI_RX_RETRY_COUNT 0x089B /******************************************************************************* * NAME : UnifiSwTxTimeout * PSID : 2204 (0x089C) * PER INTERFACE?: NO * TYPE : SlsiUint16 * UNITS : s * MIN : 0 * MAX : 65535 * DEFAULT : 5 * DESCRIPTION : * This MIB sets the maximum time in seconds for a frame to be queued in * firmware, ready to be sent, but not yet actually pumped to hardware. *******************************************************************************/ #define SLSI_PSID_UNIFI_SW_TX_TIMEOUT 0x089C /******************************************************************************* * NAME : UnifiRateStatsRxSuccessCount * PSID : 2206 (0x089E) * PER INTERFACE?: NO * TYPE : SlsiUint32 * MIN : 0 * MAX : 4294967295 * DEFAULT : * DESCRIPTION : * The number of successful receptions of complete management and data * frames at the rate indexed by unifiRateStatsIndex.This number will wrap * to zero after the range is exceeded. *******************************************************************************/ #define SLSI_PSID_UNIFI_RATE_STATS_RX_SUCCESS_COUNT 0x089E /******************************************************************************* * NAME : UnifiRateStatsTxSuccessCount * PSID : 2207 (0x089F) * PER INTERFACE?: NO * TYPE : SlsiUint32 * MIN : 0 * MAX : 4294967295 * DEFAULT : * DESCRIPTION : * The number of successful (acknowledged) unicast transmissions of complete * data or management frames the rate indexed by unifiRateStatsIndex. This * number will wrap to zero after the range is exceeded. *******************************************************************************/ #define SLSI_PSID_UNIFI_RATE_STATS_TX_SUCCESS_COUNT 0x089F /******************************************************************************* * NAME : UnifiTxDataRate * PSID : 2208 (0x08A0) * PER INTERFACE?: NO * TYPE : SlsiUint16 * MIN : 0 * MAX : 65535 * DEFAULT : * DESCRIPTION : * The bit rate currently in use for transmissions of unicast data frames; * On an infrastructure BSS, this is the data rate used in communicating * with the associated access point, if there is none, an error is returned *******************************************************************************/ #define SLSI_PSID_UNIFI_TX_DATA_RATE 0x08A0 /******************************************************************************* * NAME : UnifiSnrExtraOffsetCck * PSID : 2209 (0x08A1) * PER INTERFACE?: NO * TYPE : SlsiInt16 * UNITS : dB * MIN : -32768 * MAX : 32767 * DEFAULT : 8 * DESCRIPTION : * This offset is added to SNR values received at 802.11b data rates. This * accounts for differences in the RF pathway between 802.11b and 802.11g * demodulators. The offset applies to values of unifiSNR as well as SNR * values in scan indications. This attribute is not used in 5GHz mode. *******************************************************************************/ #define SLSI_PSID_UNIFI_SNR_EXTRA_OFFSET_CCK 0x08A1 /******************************************************************************* * NAME : UnifiRssiMaxAveragingPeriod * PSID : 2210 (0x08A2) * PER INTERFACE?: NO * TYPE : SlsiUint16 * UNITS : TU * MIN : 1 * MAX : 65535 * DEFAULT : 1024 * DESCRIPTION : * This attribute limits the period over which the value of unifiRSSI is * averaged. If no more than unifiRSSIMinReceivedFrames frames have been * received in the period, then the value of unifiRSSI is reset to the value * of the next measurement and the rolling average is restarted. This * ensures that the value is timely (although possibly poorly averaged) when * little data is being received. *******************************************************************************/ #define SLSI_PSID_UNIFI_RSSI_MAX_AVERAGING_PERIOD 0x08A2 /******************************************************************************* * NAME : UnifiRssiMinReceivedFrames * PSID : 2211 (0x08A3) * PER INTERFACE?: NO * TYPE : SlsiUint16 * MIN : 1 * MAX : 65535 * DEFAULT : 2 * DESCRIPTION : * See the description of unifiRSSIMaxAveragingPeriod for how the * combination of attributes is used. *******************************************************************************/ #define SLSI_PSID_UNIFI_RSSI_MIN_RECEIVED_FRAMES 0x08A3 /******************************************************************************* * NAME : UnifiRateStatsRate * PSID : 2212 (0x08A4) * PER INTERFACE?: NO * TYPE : SlsiUint16 * UNITS : 500 kbps * MIN : 0 * MAX : 65535 * DEFAULT : * DESCRIPTION : * The rate corresponding to the current table entry. The value is rounded * to the nearest number of units where necessary. Most rates do not require * rounding, but when short guard interval is in effect the rates are no * longer multiples of the base unit. Note that there may be two occurrences * of the value 130: the first corresponds to MCS index 7, and the second, * if present, to MCS index 6 with short guard interval. *******************************************************************************/ #define SLSI_PSID_UNIFI_RATE_STATS_RATE 0x08A4 /******************************************************************************* * NAME : UnifiDiscardedFrameCount * PSID : 2214 (0x08A6) * PER INTERFACE?: NO * TYPE : SlsiUint16 * MIN : 0 * MAX : 65535 * DEFAULT : * DESCRIPTION : * This is a counter that indicates the number of data and management frames * that have been processed by the UniFi hardware but were discarded before * being processed by the firmware. It does not include frames not processed * by the hardware because they were not addressed to the local device, nor * does it include frames discarded by the firmware in the course of normal * MAC processing (which include, for example, frames in an appropriate * encryption state and multicast frames not requested by the host). * Typically this counter indicates lost data frames for which there was no * buffer space; however, other cases may cause the counter to increment, * such as receiving a retransmitted frame that was already successfully * processed. Hence this counter should not be treated as a reliable guide * to lost frames. The counter wraps to 0 after 65535. *******************************************************************************/ #define SLSI_PSID_UNIFI_DISCARDED_FRAME_COUNT 0x08A6 /******************************************************************************* * NAME : UnifiIbssBeaconRateStart * PSID : 2215 (0x08A7) * PER INTERFACE?: NO * TYPE : SlsiUint32 * MIN : 0 * MAX : 4294967295 * DEFAULT : 0X0005000A * DESCRIPTION : * In Oxygen it is required that in the first X seconds after joining an * IBSS at least Y beacons must be transmitted. With this MIB it is possible * to set the number of seconds X and the number of beacons Y where the most * significant 16 bits is the number of seconds and the least significant 16 * bits is the number of beacons. If seconds or beacons is zero the feature * is disabled. *******************************************************************************/ #define SLSI_PSID_UNIFI_IBSS_BEACON_RATE_START 0x08A7 /******************************************************************************* * NAME : UnifiIbssBeaconRateOnGoing * PSID : 2216 (0x08A8) * PER INTERFACE?: NO * TYPE : SlsiUint32 * MIN : 0 * MAX : 4294967295 * DEFAULT : 0X000A0001 * DESCRIPTION : * In Oxygen it is required that after the first N seconds which can be set * by unifiIBSSBeaconRateStart at least Y beacons must be transmitted for * every X seconds. With this MIB it is possible to set the number of * seconds X and the number of beacons Y where the most significant 16 bits * is the number of seconds and the least significant 16 bits is the number * of beacons. If seconds or beacons is zero the feature is disabled. *******************************************************************************/ #define SLSI_PSID_UNIFI_IBSS_BEACON_RATE_ON_GOING 0x08A8 /******************************************************************************* * NAME : UnifiReceiverLeaderTimeout * PSID : 2217 (0x08A9) * PER INTERFACE?: NO * TYPE : SlsiUint16 * MIN : 0 * MAX : 65535 * DEFAULT : 8 * DESCRIPTION : * This attribute shall indicate the maximum number of seconds during which * the leader has not received any action frames from the multicast * transmitter before leader think the multicaster has cancelled its leader * relation. After timer triggers TIMEOUT, FW shall cancel and unconfigure * the HW *******************************************************************************/ #define SLSI_PSID_UNIFI_RECEIVER_LEADER_TIMEOUT 0x08A9 /******************************************************************************* * NAME : UnifiCurrentTsfTime * PSID : 2218 (0x08AA) * PER INTERFACE?: NO * TYPE : INT64 * MIN : -9223372036854775808 * MAX : 9223372036854775807 * DEFAULT : * DESCRIPTION : * Get TSF time (last 32 bits) for the specified VIF. VIF index can't be 0 * as that is treated as global VIF For station VIF - Correct BSS TSF wil * only be reported after MLME-CONNECT.indication(success) indication to * host. Note that if MAC Hardware is switched off then TSF returned is * estimated value *******************************************************************************/ #define SLSI_PSID_UNIFI_CURRENT_TSF_TIME 0x08AA /******************************************************************************* * NAME : UnifiTxFailureThreshold * PSID : 2219 (0x08AB) * PER INTERFACE?: NO * TYPE : SlsiUint16 * MIN : 0 * MAX : 65535 * DEFAULT : * DESCRIPTION : * For Oxygen Fast TX Failure Event Notification. This value is the number * of consecutive transmission failures for a peer device before the * notification event is sent to host. value set to 0 disables this * functionality *******************************************************************************/ #define SLSI_PSID_UNIFI_TX_FAILURE_THRESHOLD 0x08AB /******************************************************************************* * NAME : UnifiRmcActionPeriod * PSID : 2220 (0x08AC) * PER INTERFACE?: NO * TYPE : SlsiUint16 * UNITS : ms * MIN : 0 * MAX : 1000 * DEFAULT : 300 * DESCRIPTION : * This variable specifies the repetition period at which the Leader Select * Action frame shall be transmitted. *******************************************************************************/ #define SLSI_PSID_UNIFI_RMC_ACTION_PERIOD 0x08AC /******************************************************************************* * NAME : UnifiRmcLeaderReselectPeriod * PSID : 2221 (0x08AD) * PER INTERFACE?: NO * TYPE : SlsiUint16 * UNITS : s * MIN : 0 * MAX : 360 * DEFAULT : 30 * DESCRIPTION : * This variable specifies the rate at which the F/W will determine whether * or not the current Receiver Leader should change based on link quality. *******************************************************************************/ #define SLSI_PSID_UNIFI_RMC_LEADER_RESELECT_PERIOD 0x08AD /******************************************************************************* * NAME : UnifiRmcFailureThreshold * PSID : 2222 (0x08AE) * PER INTERFACE?: NO * TYPE : SlsiUint16 * MIN : 0 * MAX : 65535 * DEFAULT : 3 * DESCRIPTION : * This value is the number of consecutive RMC transmission failures * triggering the reselection of the RMC Receiver Leader. value set to 0 * disables this functionality. *******************************************************************************/ #define SLSI_PSID_UNIFI_RMC_FAILURE_THRESHOLD 0x08AE /******************************************************************************* * NAME : UnifiBaConfig * PSID : 2225 (0x08B1) * PER INTERFACE?: NO * TYPE : SlsiUint32 * MIN : 0 * MAX : 4294967295 * DEFAULT : 0X003FFF00 * DESCRIPTION : * Block Ack Configuration. It is composed of A-MSDU supported, TX MPDU per * A-MPDU, RX Buffer size, TX Buffer size and Block Ack Timeout. *******************************************************************************/ #define SLSI_PSID_UNIFI_BA_CONFIG 0x08B1 /******************************************************************************* * NAME : UnifiNoAckActivationCount * PSID : 2240 (0x08C0) * PER INTERFACE?: NO * TYPE : SlsiUint16 * MIN : 0 * MAX : 65535 * DEFAULT : * DESCRIPTION : * The number of frames that are discarded due to HW No-ack activated during * test. This number will wrap to zero after the range is exceeded. *******************************************************************************/ #define SLSI_PSID_UNIFI_NO_ACK_ACTIVATION_COUNT 0x08C0 /******************************************************************************* * NAME : UnifiRxFcsErrorCount * PSID : 2241 (0x08C1) * PER INTERFACE?: NO * TYPE : SlsiUint32 * MIN : 0 * MAX : 4294967295 * DEFAULT : * DESCRIPTION : * The number of received frames that are discarded due to bad FCS (CRC). * This number will wrap to zero after the range is exceeded. *******************************************************************************/ #define SLSI_PSID_UNIFI_RX_FCS_ERROR_COUNT 0x08C1 /******************************************************************************* * NAME : UnifiAckFailureCount * PSID : 2242 (0x08C2) * PER INTERFACE?: NO * TYPE : SlsiUint32 * MIN : 0 * MAX : 4294967295 * DEFAULT : * DESCRIPTION : * The number of frames transmitted that were not acked. *******************************************************************************/ #define SLSI_PSID_UNIFI_ACK_FAILURE_COUNT 0x08C2 /******************************************************************************* * NAME : UnifiBlockAckMissedCount * PSID : 2243 (0x08C3) * PER INTERFACE?: NO * TYPE : SlsiUint16 * MIN : 0 * MAX : 65535 * DEFAULT : * DESCRIPTION : * The number of instances that the Block Ack was expected but not received. *******************************************************************************/ #define SLSI_PSID_UNIFI_BLOCK_ACK_MISSED_COUNT 0x08C3 /******************************************************************************* * NAME : UnifiSwToHwQueueStats * PSID : 2250 (0x08CA) * PER INTERFACE?: NO * TYPE : SlsiUint16 * MIN : 0 * MAX : 65535 * DEFAULT : * DESCRIPTION : * The timing statistics of packets being queued between SW-HW *******************************************************************************/ #define SLSI_PSID_UNIFI_SW_TO_HW_QUEUE_STATS 0x08CA /******************************************************************************* * NAME : UnifiHostToSwQueueStats * PSID : 2251 (0x08CB) * PER INTERFACE?: NO * TYPE : SlsiUint16 * MIN : 0 * MAX : 65535 * DEFAULT : * DESCRIPTION : * The timing statistics of packets being queued between HOST-SW *******************************************************************************/ #define SLSI_PSID_UNIFI_HOST_TO_SW_QUEUE_STATS 0x08CB /******************************************************************************* * NAME : UnifiQueueStatsEnable * PSID : 2252 (0x08CC) * PER INTERFACE?: NO * TYPE : SlsiBool * MIN : 0 * MAX : 1 * DEFAULT : FALSE * DESCRIPTION : * Enables recording timing statistics of packets being queued between * HOST-SW-HW *******************************************************************************/ #define SLSI_PSID_UNIFI_QUEUE_STATS_ENABLE 0x08CC /******************************************************************************* * NAME : UnifiGoogleMaxNumberOfPeriodicScans * PSID : 2260 (0x08D4) * PER INTERFACE?: NO * TYPE : SlsiUint16 * MIN : 0 * MAX : 65535 * DEFAULT : 6 * DESCRIPTION : * Max number of periodic scans for Google scan functionality. *******************************************************************************/ #define SLSI_PSID_UNIFI_GOOGLE_MAX_NUMBER_OF_PERIODIC_SCANS 0x08D4 /******************************************************************************* * NAME : UnifiGoogleMaxRssiSampleSize * PSID : 2261 (0x08D5) * PER INTERFACE?: NO * TYPE : SlsiUint16 * MIN : 0 * MAX : 65535 * DEFAULT : 8 * DESCRIPTION : * Max number of RSSI samples used for averaging RSSI in Google scan * functionality. *******************************************************************************/ #define SLSI_PSID_UNIFI_GOOGLE_MAX_RSSI_SAMPLE_SIZE 0x08D5 /******************************************************************************* * NAME : UnifiGoogleMaxHotlistAPs * PSID : 2262 (0x08D6) * PER INTERFACE?: NO * TYPE : SlsiUint16 * MIN : 0 * MAX : 65535 * DEFAULT : 64 * DESCRIPTION : * Max number of entries for hotlist APs in Google scan functionality. *******************************************************************************/ #define SLSI_PSID_UNIFI_GOOGLE_MAX_HOTLIST_APS 0x08D6 /******************************************************************************* * NAME : UnifiGoogleMaxSignificantWifiChangeAPs * PSID : 2263 (0x08D7) * PER INTERFACE?: NO * TYPE : SlsiUint16 * MIN : 0 * MAX : 65535 * DEFAULT : 64 * DESCRIPTION : * Max number of entries for significant WiFi change APs in Google scan * functionality. *******************************************************************************/ #define SLSI_PSID_UNIFI_GOOGLE_MAX_SIGNIFICANT_WIFI_CHANGE_APS 0x08D7 /******************************************************************************* * NAME : UnifiGoogleMaxBssidHistoryEntries * PSID : 2264 (0x08D8) * PER INTERFACE?: NO * TYPE : SlsiUint16 * MIN : 0 * MAX : 65535 * DEFAULT : * DESCRIPTION : * Max number of BSSID/RSSI that the device can hold in Google scan * functionality. *******************************************************************************/ #define SLSI_PSID_UNIFI_GOOGLE_MAX_BSSID_HISTORY_ENTRIES 0x08D8 /******************************************************************************* * NAME : UnifiCoexCdlConfig * PSID : 2424 (0x0978) * PER INTERFACE?: NO * TYPE : SlsiUint8 * MIN : 17 * MAX : 17 * DEFAULT : { 0X02, 0X03, 0X04, 0X54, 0X54, 0X50, 0X54, 0X00, 0X01, 0X02, 0X03, 0XEE, 0XEE, 0XEE, 0XEE, 0XEE, 0XEE } * DESCRIPTION : * These contain the spectral thresholds corresponding to the absolute * difference between channel values: octet 0 - * collision_table.spectral_threshs.thresh_2 octet 1 - * collision_table.spectral_threshs.thresh_1 octet 2 - * collision_table.spectral_threshs.thresh_0 These correspond to the TX and * RX collision table settings: octet 3 - * collision_table.local_tx_remote_rx_collision_table octet 4 - * collision_table.local_tx_remote_tx_collision_table octet 5 - * collision_table.local_rx_remote_rx_collision_table octet 6 - * collision_table.local_rx_remote_tx_collision_table These contain settings * of the priority difference thresholding: octet 7 - * priority_difference_table.thresh_neg octet 8 - * priority_difference_table.thresh_0 octet 9 - * priority_difference_table.thresh_1 octet 10 - * priority_difference_table.thresh_2 And finally the following describes * the action tables These are 16 bit fields with LSB first and MSB second * (for histrorical reasons) octet 11 - action_table.abort_table (lsb) octet * 12 - action_table.abort_table (msb) octet 13 - action_table.lcl_table_1 * (lsb) octet 14 - action_table.lcl_table_1 (msb) octet 15 - * action_table.lcl_table_2 (lsb) octet 16 - action_table.lcl_table_2 (msb) *******************************************************************************/ #define SLSI_PSID_UNIFI_COEX_CDL_CONFIG 0x0978 /******************************************************************************* * NAME : UnifiHighTemperatureCutOffThreshold * PSID : 2446 (0x098E) * PER INTERFACE?: NO * TYPE : SlsiUint16 * UNITS : Celsius * MIN : 0 * MAX : 255 * DEFAULT : 255 * DESCRIPTION : * This attribute specifies the temperature threshold at which wifi * transmission will be paused. Normal values for this MIB is between +85 to * +125 degree Celsius. Setting the value to 255 will disable the Cut off * mechanism. Deprecated - Condor onwards *******************************************************************************/ #define SLSI_PSID_UNIFI_HIGH_TEMPERATURE_CUT_OFF_THRESHOLD 0x098E /******************************************************************************* * NAME : UnifiLowTemperatureResumeThreshold * PSID : 2447 (0x098F) * PER INTERFACE?: NO * TYPE : SlsiUint16 * UNITS : Celsius * MIN : 0 * MAX : 255 * DEFAULT : 105 * DESCRIPTION : * This attribute specifies the temperature threshold below which wifi * transmission will be resumed. Normal values for this MIB is between +85 * to +125 degree Celsius. Setting the value to 255 will disable the resume * mechanism. Its value should always be less than * unifiHighTemperatureCutOffThreshold value. Deprecated - Condor onwards *******************************************************************************/ #define SLSI_PSID_UNIFI_LOW_TEMPERATURE_RESUME_THRESHOLD 0x098F /******************************************************************************* * NAME : UnifiFastPowerSaveTimeout * PSID : 2500 (0x09C4) * PER INTERFACE?: NO * TYPE : SlsiUint32 * UNITS : microseconds * MIN : 0 * MAX : 2147483647 * DEFAULT : 50000 * DESCRIPTION : * UniFi implements a proprietary power management mode called Fast Power * Save that balances network performance against power consumption. In this * mode UniFi delays entering power save mode until it detects that there * has been no exchange of data for the duration specified by this * attribute. *******************************************************************************/ #define SLSI_PSID_UNIFI_FAST_POWER_SAVE_TIMEOUT 0x09C4 /******************************************************************************* * NAME : UnifiIbssKeepAlivePeriod * PSID : 2501 (0x09C5) * PER INTERFACE?: NO * TYPE : SlsiUint16 * UNITS : s * MIN : 0 * MAX : 2147 * DEFAULT : 10 * DESCRIPTION : * AdHoc/IBSS/Oxygen Mode: This variable specifies the interval between * sending keep-alive (Null frame) packets to associated station in an Ad * Hoc network if there has been no unicast Rx/Tx activities. Setting it to * 0 Disables it. This MIB should be set before the VIF is created. If set * to less than 10s (but not 0) it defaults to 10. *******************************************************************************/ #define SLSI_PSID_UNIFI_IBSS_KEEP_ALIVE_PERIOD 0x09C5 /******************************************************************************* * NAME : UnifiStaKeepAlivePeriod * PSID : 2502 (0x09C6) * PER INTERFACE?: NO * TYPE : SlsiUint16 * UNITS : s * MIN : 0 * MAX : 2147 * DEFAULT : 30 * DESCRIPTION : * Station/P2P Client Mode: This variable specifies the interval between * sending keep-alive (Null frame) packets while associated to an access * point during periods of idleness (i.e. when there is no unicast transmit * or receive activity).Setting it to 0 Disables it. This MIB should be set * before the VIF is created. If set to less than 10s (but not 0) it * defaults to 10. *******************************************************************************/ #define SLSI_PSID_UNIFI_STA_KEEP_ALIVE_PERIOD 0x09C6 /******************************************************************************* * NAME : UnifiApKeepAlivePeriod * PSID : 2503 (0x09C7) * PER INTERFACE?: NO * TYPE : SlsiUint16 * UNITS : s * MIN : 0 * MAX : 2147 * DEFAULT : * DESCRIPTION : * Ap Mode:This variable specifies the interval between sending keep-alive * (Null frame) packetsto associated stations if there has been no unicast * Rx/Tx activities.Setting it to 0 Disables it. This MIB should be set * before the VIF is created. Min value when different to 0 is 10s. *******************************************************************************/ #define SLSI_PSID_UNIFI_AP_KEEP_ALIVE_PERIOD 0x09C7 /******************************************************************************* * NAME : UnifiGoKeepAlivePeriod * PSID : 2504 (0x09C8) * PER INTERFACE?: NO * TYPE : SlsiUint16 * UNITS : s * MIN : 0 * MAX : 2147 * DEFAULT : 10 * DESCRIPTION : * P2P GO Mode:This variable specifies the interval between sending * keep-alive (Null frame) packetsto associated P2P Clients if there has * been no unicast Rx/Tx activities. Setting it to 0 Disables it.This MIB * should be set before the VIF is created. min value when different to 0 is * 10s. *******************************************************************************/ #define SLSI_PSID_UNIFI_GO_KEEP_ALIVE_PERIOD 0x09C8 /******************************************************************************* * NAME : UnifiApBeaconMaxDrift * PSID : 2507 (0x09CB) * PER INTERFACE?: NO * TYPE : SlsiUint16 * UNITS : microseconds * MIN : 0 * MAX : 65535 * DEFAULT : 0XFFFF * DESCRIPTION : * The maximum drift in microseconds we will allow for each beacon sent when * we're trying to move it to get a 50% duty cycle between GO and STA in * multiple VIF scenario. We'll delay our TX beacon by a maximum of this * value until we reach our target TBTT. We have 3 possible cases for this * value: a) ap_beacon_max_drift = 0x0000 - Feature disabled b) * ap_beacon_max_drift between 0x0001 and 0xFFFE - Each time we transmit the * beacon we'll move it a little bit forward but never more than this. (Not * implemented yet) c) ap_beacon_max_drift = 0xFFFF - Move the beacon to the * desired position in one shot. *******************************************************************************/ #define SLSI_PSID_UNIFI_AP_BEACON_MAX_DRIFT 0x09CB /******************************************************************************* * NAME : UnifiDisableLegacyPowerSave * PSID : 2510 (0x09CE) * PER INTERFACE?: NO * TYPE : SlsiBool * MIN : 0 * MAX : 1 * DEFAULT : 1 * DESCRIPTION : * This affects Station VIF power save behaviour. Setting it to 1 will * disable legacy power save (i.e. we wil use fast power save to retrieve * data) Note that this MIB actually disables full power save mode (i.e * sending trigger to retrieve frames which will be PS-POLL for legacy and * QOS-NULL for UAPSD) *******************************************************************************/ #define SLSI_PSID_UNIFI_DISABLE_LEGACY_POWER_SAVE 0x09CE /******************************************************************************* * NAME : UnifiPowerSaveExtraListenTime * PSID : 2512 (0x09D0) * PER INTERFACE?: NO * TYPE : SlsiUint32 * UNITS : microseconds * MIN : 0 * MAX : 2147483647 * DEFAULT : 1000 * DESCRIPTION : * This attribute specifies an extra time during which UniFi will listen to * transmissions in Power Save or Fast Power Save after transmission or * reception of unicast frames and before returning to sleep. This ensures * that the peer device has no further information to transmit, such as a * retry of a frame from an access point with the More Data flag clear. This * attribute may be set to zero, in which case UniFi will not stay awake for * any extra period. As the extra listen time has implications for power * saving, it is only applied when the device has not applied it and has not * been in active mode within the last unifiPowerSaveExtraListenDelay * microseconds. Changes to this attribute take effect when starting or * joining a new BSS. *******************************************************************************/ #define SLSI_PSID_UNIFI_POWER_SAVE_EXTRA_LISTEN_TIME 0x09D0 /******************************************************************************* * NAME : UnifiPowerSaveExtraListenDelay * PSID : 2513 (0x09D1) * PER INTERFACE?: NO * TYPE : SlsiUint32 * UNITS : microseconds * MIN : 0 * MAX : 2147483647 * DEFAULT : 1000000 * DESCRIPTION : * A timeout used after the logic described for * unifiPowerSaveExtraListenTime has been applied during which it will not * be applied again. This attribute should not be set to zero if * unifiPowerSaveExtraListenTime is non-zero since UniFi will then be kept * awake permanently. Changes to this attribute take effect when starting or * joining a new BSS. *******************************************************************************/ #define SLSI_PSID_UNIFI_POWER_SAVE_EXTRA_LISTEN_DELAY 0x09D1 /******************************************************************************* * NAME : UnifiPowerManagementDelayTimeout * PSID : 2514 (0x09D2) * PER INTERFACE?: NO * TYPE : SlsiUint32 * UNITS : microseconds * MIN : 0 * MAX : 2147483647 * DEFAULT : 30000 * DESCRIPTION : * When UniFi enters power save mode it signals the new state by setting the * power management bit in the frame control field of a NULL frame. It then * remains active for the period since the previous unicast reception, or * since the transmission of the NULL frame, whichever is later. This * attribute controls the maximum time during which UniFi will continue to * listen for data. This allows any buffered data on a remote device to be * cleared. Note that this attribute specifies an upper limit on the * timeout. UniFi internally implements a proprietary algorithm to adapt the * timeout depending upon the situation.This is used by firmware when * current station VIF is only station VIF which can be scheduled *******************************************************************************/ #define SLSI_PSID_UNIFI_POWER_MANAGEMENT_DELAY_TIMEOUT 0x09D2 /******************************************************************************* * NAME : UnifiApsdServicePeriodTimeout * PSID : 2515 (0x09D3) * PER INTERFACE?: NO * TYPE : SlsiUint16 * UNITS : microseconds * MIN : 0 * MAX : 65535 * DEFAULT : 20000 * DESCRIPTION : * During Unscheduled Automated Power Save Delivery (U-APSD), UniFi may * trigger a service period in order to fetch data from the access point. * The service period is normally terminated by a frame from the access * point with the EOSP (End Of Service Period) flag set, at which point * UniFi returns to sleep. However, if the access point is temporarily * inaccessible, UniFi would stay awake indefinitely. This attribute * specifies a timeout starting from the point where the trigger frame has * been sent. If the timeout expires and no data has been received from the * access point, UniFi will behave as if the service period had been ended * normally and return to sleep. This timeout takes precedence over * unifiPowerSaveExtraListenTime if both would otherwise be applicable. *******************************************************************************/ #define SLSI_PSID_UNIFI_APSD_SERVICE_PERIOD_TIMEOUT 0x09D3 /******************************************************************************* * NAME : UnifiConcurrentPowerManagementDelayTimeout * PSID : 2516 (0x09D4) * PER INTERFACE?: NO * TYPE : SlsiUint32 * UNITS : microseconds * MIN : 0 * MAX : 2147483647 * DEFAULT : 2000 * DESCRIPTION : * When UniFi enters power save mode it signals the new state by setting the * power management bit in the frame control field of a NULL frame. It then * remains active for the period since the previous unicast reception, or * since the transmission of the NULL frame, whichever is later. This * attribute controls the maximum time during which UniFi will continue to * listen for data. This allows any buffered data on a remote device to be * cleared.This is same as unifiPowerManagementDelayTimeout but this value * is considered only when we are doing multivif operations and other VIFs * are waiting to be scheduled.Note that firmware automatically chooses one * of unifiPowerManagementDelayTimeout and * unifiConcurrentPowerManagementDelayTimeout depending upon the current * situation.It is sensible to set unifiPowerManagementDelayTimeout to be * always more thanunifiConcurrentPowerManagementDelayTimeout. *******************************************************************************/ #define SLSI_PSID_UNIFI_CONCURRENT_POWER_MANAGEMENT_DELAY_TIMEOUT 0x09D4 /******************************************************************************* * NAME : UnifiStationQosInfo * PSID : 2517 (0x09D5) * PER INTERFACE?: NO * TYPE : SlsiUint16 * MIN : 0 * MAX : 65535 * DEFAULT : * DESCRIPTION : * This MIB variable indicates the QoS capability for a non-AP Station, and * is encoded as per IEEE 802.11 QoS Capability. *******************************************************************************/ #define SLSI_PSID_UNIFI_STATION_QOS_INFO 0x09D5 /******************************************************************************* * NAME : UnifiListenInterval * PSID : 2519 (0x09D7) * PER INTERFACE?: NO * TYPE : SlsiInt16 * UNITS : beacon intervals * MIN : 0 * MAX : 100 * DEFAULT : 5 * DESCRIPTION : * Defines the Beacon Listen Interval *******************************************************************************/ #define SLSI_PSID_UNIFI_LISTEN_INTERVAL 0x09D7 /******************************************************************************* * NAME : UnifiRadioCalibrationMode * PSID : 2521 (0x09D9) * PER INTERFACE?: NO * TYPE : unifiRadioCalibrationMode * MIN : 0 * MAX : 255 * DEFAULT : * DESCRIPTION : * This attribute is used to control the radio calibration operations * performed by UniFi. If this key is left in the &apos;calibrate-auto&apos; * state then the firmware will perform radio calibrations whenever they are * required. In this mode a calibration is always performed after the first * MLME-RESET - this calibration is required to enable the radio. This key * can be set to the &apos;calibrate-now&apos; value to hint to the firmware * that a calibration should be performed now. This can be useful if the * host software knows that the radio has not been used for some time, but * that it is about to be used. If this key is set to the * &apos;no-calibrate&apos; setting then no radio calibrations will be * performed by the firmware until it is commanded to (by setting the key to * either &apos;calibrate-auto&apos; or &apos;calibrate-now&apos;. If this * key is set to this state before the first MLME-RESET then the radio will * not be able to be used. The &apos;no-calibrate&apos; mode will allow the * fastest booting and will ensure that no RF power is emitted from the * device. In this mode the radio will not work, even for receive. *******************************************************************************/ #define SLSI_PSID_UNIFI_RADIO_CALIBRATION_MODE 0x09D9 /******************************************************************************* * NAME : UnifiFragmentationDuration * PSID : 2524 (0x09DC) * PER INTERFACE?: NO * TYPE : SlsiUint16 * UNITS : microseconds * MIN : 0 * MAX : 65535 * DEFAULT : * DESCRIPTION : * A limit on transmission time for a data frame. If the data payload would * take longer than unifiFragmentationDuration to transmit, UniFi will * attempt to fragment the frame to ensure that the data portion of each * fragment is within the limit. The limit imposed by the fragmentation * threshold is also respected, and no more than 16 fragments may be * generated. If the value is zero no limit is imposed. The value may be * changed dynamically during connections. Note that the limit is a * guideline and may not always be respected. In particular, the data rate * is finalised after fragmentation in order to ensure responsiveness to * conditions, the calculation is not performed to high accuracy, and octets * added during encryption are not included in the duration calculation. *******************************************************************************/ #define SLSI_PSID_UNIFI_FRAGMENTATION_DURATION 0x09DC /******************************************************************************* * NAME : UnifiDtimWaitTimeout * PSID : 2529 (0x09E1) * PER INTERFACE?: NO * TYPE : SlsiUint16 * UNITS : microseconds * MIN : 0 * MAX : 65535 * DEFAULT : 50000 * DESCRIPTION : * If UniFi is in power save and receives a Traffic Indication Map from its * associated access point with a DTIM indication, it will wait a maximum * time given by this attribute for succeeding broadcast or multicast * traffic, or until it receives such traffic with the &apos;more data&apos; * flag clear. Any reception of broadcast or multicast traffic with the * &apos;more data&apos; flag set, or any reception of unicast data, resets * the timeout. The timeout can be turned off by setting the value to zero; * in that case UniFi will remain awake indefinitely waiting for broadcast * or multicast data. Otherwise, the value should be larger than that of * unifiPowerSaveExtraListenTime. *******************************************************************************/ #define SLSI_PSID_UNIFI_DTIM_WAIT_TIMEOUT 0x09E1 /******************************************************************************* * NAME : UnifiScanMaxProbeTransmitLifetime * PSID : 2531 (0x09E3) * PER INTERFACE?: NO * TYPE : SlsiUint32 * UNITS : TU * MIN : 1 * MAX : 4294967295 * DEFAULT : 64 * DESCRIPTION : * If the value of this attribute is non zero, it is used during active * scans as the maximum lifetime for probe requests insteadof the value of * dot11MaxTransmitMSDULifetime.It is the elapsed time after the initial * transmissionat which further attempts to transmit the probe are * terminated. *******************************************************************************/ #define SLSI_PSID_UNIFI_SCAN_MAX_PROBE_TRANSMIT_LIFETIME 0x09E3 /******************************************************************************* * NAME : UnifiPowerSaveTransitionPacketThreshold * PSID : 2532 (0x09E4) * PER INTERFACE?: NO * TYPE : SlsiUint16 * MIN : 0 * MAX : 65535 * DEFAULT : 10 * DESCRIPTION : * If VIF has these many packet queued/transmitted/received in last * unifiFastPowerSaveTransitionPeriod then firmware may decide to come out * of aggressive power save mode. This is applicable to STA (CLI) and GO * (VIF).Note that this is only a guideline. Firmware internal factors may * override this MIB.Also see unifiExitPowerSavePeriod and * unifiAggressivePowerSaveTransitionPeriod. *******************************************************************************/ #define SLSI_PSID_UNIFI_POWER_SAVE_TRANSITION_PACKET_THRESHOLD 0x09E4 /******************************************************************************* * NAME : UnifiProbeResponseLifetime * PSID : 2533 (0x09E5) * PER INTERFACE?: NO * TYPE : SlsiUint16 * MIN : 0 * MAX : 65535 * DEFAULT : 500 * DESCRIPTION : * This mib entry is used to indicate the lifetime of proberesponse frame in * unit of ms. *******************************************************************************/ #define SLSI_PSID_UNIFI_PROBE_RESPONSE_LIFETIME 0x09E5 /******************************************************************************* * NAME : UnifiProbeResponseMaxRetry * PSID : 2534 (0x09E6) * PER INTERFACE?: NO * TYPE : SlsiUint16 * MIN : 0 * MAX : 65535 * DEFAULT : 5 * DESCRIPTION : * This mib entry is used to indicate the number of retries of probe * response frame. *******************************************************************************/ #define SLSI_PSID_UNIFI_PROBE_RESPONSE_MAX_RETRY 0x09E6 /******************************************************************************* * NAME : UnifiExitPowerSavePeriod * PSID : 2535 (0x09E7) * PER INTERFACE?: NO * TYPE : SlsiUint16 * UNITS : TU * MIN : 0 * MAX : 65535 * DEFAULT : 200 * DESCRIPTION : * Period over which firmware counts number of packet * transmitted/queued/received to decide to come out of aggressive power * save mode.This is applicable to STA (CLI) and GO (AP) VIF. Note that this * is only a guideline. Firmware internal factors may override this MIB. * Also see unifiPowerSaveTransitionPacketThreshold and * unifiAggressivePowerSaveTransitionPeriod *******************************************************************************/ #define SLSI_PSID_UNIFI_EXIT_POWER_SAVE_PERIOD 0x09E7 /******************************************************************************* * NAME : UnifiAggressivePowerSaveTransitionPeriod * PSID : 2536 (0x09E8) * PER INTERFACE?: NO * TYPE : SlsiUint16 * UNITS : TU * MIN : 0 * MAX : 65535 * DEFAULT : 5 * DESCRIPTION : * Defines how many unifiExitPowerSavePeriod firmware should wait in which * VIF had received/transmitted/queued less than * unifiPowerSaveTransitionPacketThreshold packets - before entering * aggressive power save mode (when not in aggressive power save mode) This * is applicable to STA (CLI) and GO (AP) VIF. Note that this is only a * guideline. Firmware internal factors may override this MIB. Also see * unifiPowerSaveTransitionPacketThreshold and unifiExitPowerSavePeriod. *******************************************************************************/ #define SLSI_PSID_UNIFI_AGGRESSIVE_POWER_SAVE_TRANSITION_PERIOD 0x09E8 /******************************************************************************* * NAME : UnifiActiveTimeAfterMoreBit * PSID : 2537 (0x09E9) * PER INTERFACE?: NO * TYPE : SlsiUint32 * UNITS : TU * MIN : 0 * MAX : 4294967295 * DEFAULT : 30 * DESCRIPTION : * After seeing the "more" bit set in a message from the AP, the STA will * goto active mode for this duration of time. After this time, traffic * information is evaluated to determine whether the STA should stay active * or go to powersave. Setting this value to 0 means that the described * functionality is disabled. *******************************************************************************/ #define SLSI_PSID_UNIFI_ACTIVE_TIME_AFTER_MORE_BIT 0x09E9 /******************************************************************************* * NAME : UnifiForcedScheduleDuration * PSID : 2538 (0x09EA) * PER INTERFACE?: NO * TYPE : SlsiUint16 * UNITS : TU * MIN : 0 * MAX : 65535 * DEFAULT : 50 * DESCRIPTION : * Defines the time to keep a VIF scheduled after an outgoing packet is * queued, if the "Immediate_Response_Expected" bit is set Tx control * associated with a frame transmission request. The firmware may choose to * override this value based on internal logic. *******************************************************************************/ #define SLSI_PSID_UNIFI_FORCED_SCHEDULE_DURATION 0x09EA /******************************************************************************* * NAME : UnifiVhtCapabilities * PSID : 2540 (0x09EC) * PER INTERFACE?: NO * TYPE : SlsiUint8 * MIN : 12 * MAX : 12 * DEFAULT : { 0X21, 0X71, 0X80, 0X01, 0XFE, 0XFF, 0X00, 0X00, 0XFE, 0XFF, 0X00, 0X00 } * DESCRIPTION : * This MIB variable indicates the VHT capabilities of the chip. see * SC-503520-SP *******************************************************************************/ #define SLSI_PSID_UNIFI_VHT_CAPABILITIES 0x09EC /******************************************************************************* * NAME : UnifiMaxVifScheduleDuration * PSID : 2541 (0x09ED) * PER INTERFACE?: NO * TYPE : SlsiUint16 * UNITS : TU * MIN : 0 * MAX : 65535 * DEFAULT : 20 * DESCRIPTION : * Default time for which a non-scan VIF can be scheduled. Applies to * multiVIF scenario. This is used as a guideline to firmware. Internal * firmware logic or BSS state (e.g. NOA) may cut short the schedule.. *******************************************************************************/ #define SLSI_PSID_UNIFI_MAX_VIF_SCHEDULE_DURATION 0x09ED /******************************************************************************* * NAME : UnifiMaxClient * PSID : 2550 (0x09F6) * PER INTERFACE?: NO * TYPE : SlsiUint16 * MIN : 0 * MAX : 65535 * DEFAULT : * DESCRIPTION : * Restricts the maximum number of associated STAs for SoftAP.Defaulted to 0 * to allow the Soft AP to allow as many associated STAs as it can support. * The Soft AP may restrict the number of associated STAs to less than this * value (if non-zero), if the Soft AP is unable to support that many * associated STAs. If non-zero the number of associated STAs will not * exceed this value. *******************************************************************************/ #define SLSI_PSID_UNIFI_MAX_CLIENT 0x09F6 /******************************************************************************* * NAME : UnifiNoaDuration * PSID : 2552 (0x09F8) * PER INTERFACE?: NO * TYPE : SlsiUint32 * MIN : 0 * MAX : 4294967295 * DEFAULT : * DESCRIPTION : * This MIB represents the absence period of P2P NoA in microsecond. If Host * want to enable NoA, it needs to set both the unifiNoaDuration and the * unifiNoaCount. *******************************************************************************/ #define SLSI_PSID_UNIFI_NOA_DURATION 0x09F8 /******************************************************************************* * NAME : UnifiNoaCount * PSID : 2553 (0x09F9) * PER INTERFACE?: NO * TYPE : SlsiUint32 * MIN : 0 * MAX : 255 * DEFAULT : * DESCRIPTION : * This mib represents the count of P2P NoA. If the count is 255, then the * P2P NoA is the periodic NoA(Infinite). If Host want to enable NoA, it * needs to set both the unifiNoaDuration and the unifiNoaCount. *******************************************************************************/ #define SLSI_PSID_UNIFI_NOA_COUNT 0x09F9 /******************************************************************************* * NAME : UnifiNoaInterval * PSID : 2554 (0x09FA) * PER INTERFACE?: NO * TYPE : SlsiUint32 * MIN : 0 * MAX : 4294967295 * DEFAULT : 100 * DESCRIPTION : * This MIB represents the interval of P2P NoA in Time Unit(TU). *******************************************************************************/ #define SLSI_PSID_UNIFI_NOA_INTERVAL 0x09FA /******************************************************************************* * NAME : UnifiNoaStartOffset * PSID : 2555 (0x09FB) * PER INTERFACE?: NO * TYPE : SlsiUint32 * MIN : 0 * MAX : 4294967295 * DEFAULT : 100 * DESCRIPTION : * This MIB represents the start offset of P2P NoA in Time Unit(TU). Firware * will calculate the actual start time using this value. *******************************************************************************/ #define SLSI_PSID_UNIFI_NOA_START_OFFSET 0x09FB /******************************************************************************* * NAME : UnifiCtWindow * PSID : 2557 (0x09FD) * PER INTERFACE?: NO * TYPE : SlsiUint32 * MIN : 0 * MAX : 4294967295 * DEFAULT : * DESCRIPTION : * This value represents the CTWindow value.If this MIB is zero, the * CTwindow in NoA Attribute will be deleted. *******************************************************************************/ #define SLSI_PSID_UNIFI_CT_WINDOW 0x09FD /******************************************************************************* * NAME : UnifiTdlsActivated * PSID : 2558 (0x09FE) * PER INTERFACE?: NO * TYPE : SlsiBool * MIN : 0 * MAX : 1 * DEFAULT : TRUE * DESCRIPTION : * This attribute, when TRUE, indicates that use TDLS mode. The TDLS is * disabled otherwise. *******************************************************************************/ #define SLSI_PSID_UNIFI_TDLS_ACTIVATED 0x09FE /******************************************************************************* * NAME : UnifiTdlsTpThresholdPktSecs * PSID : 2559 (0x09FF) * PER INTERFACE?: NO * TYPE : SlsiUint32 * MIN : 0 * MAX : 4294967295 * DEFAULT : 100 * DESCRIPTION : * his MIB shall be used for the argument "throughput_threshold_pktsecs" of * RAME-MLME-ENABLE-PEER-TRAFFIC-REPORTING.request signal defined in * SC-505422-DD. *******************************************************************************/ #define SLSI_PSID_UNIFI_TDLS_TP_THRESHOLD_PKT_SECS 0x09FF /******************************************************************************* * NAME : UnifiTdlsRssiThreshold * PSID : 2560 (0x0A00) * PER INTERFACE?: NO * TYPE : SlsiInt16 * MIN : -32768 * MAX : 32767 * DEFAULT : -75 * DESCRIPTION : * This MIB shall be used for the FW initiated TDLS Discovery/Setup * procedure. If the RSSI of a received TDLS Discovery Response frame is * greater than this value, the TDLS FSM shall initiate the TDLS Setup * procedure. *******************************************************************************/ #define SLSI_PSID_UNIFI_TDLS_RSSI_THRESHOLD 0x0A00 /******************************************************************************* * NAME : UnifiTdlsMaximumRetry * PSID : 2561 (0x0A01) * PER INTERFACE?: NO * TYPE : SlsiUint16 * MIN : 0 * MAX : 65535 * DEFAULT : 3 * DESCRIPTION : * Transmission of a TDLS Action frame or a TDLS Discovery Response Public * Action frame shall be retried unifiTdlsMaximumRetry times until the frame * is transmitted successfully. *******************************************************************************/ #define SLSI_PSID_UNIFI_TDLS_MAXIMUM_RETRY 0x0A01 /******************************************************************************* * NAME : UnifiTdlsTpMonitorSecs * PSID : 2562 (0x0A02) * PER INTERFACE?: NO * TYPE : SlsiUint16 * MIN : 0 * MAX : 65535 * DEFAULT : 10 * DESCRIPTION : * add description *******************************************************************************/ #define SLSI_PSID_UNIFI_TDLS_TP_MONITOR_SECS 0x0A02 /******************************************************************************* * NAME : UnifiTdlsBasicHtMcsSet * PSID : 2563 (0x0A03) * PER INTERFACE?: NO * TYPE : SlsiUint8 * MIN : 16 * MAX : 16 * DEFAULT : { 0XFF, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00 } * DESCRIPTION : * The TDLS FSM shall monitor the number of transmitted packet count per a * TDLS peer for unifiTdlsTPMonitorSecs seconds to decide to tear down the * TDLS link (see 7.12.1). *******************************************************************************/ #define SLSI_PSID_UNIFI_TDLS_BASIC_HT_MCS_SET 0x0A03 /******************************************************************************* * NAME : UnifiTdlsBasicVhtMcsSet * PSID : 2564 (0x0A04) * PER INTERFACE?: NO * TYPE : SlsiUint8 * MIN : 2 * MAX : 2 * DEFAULT : { 0XFE, 0XFF } * DESCRIPTION : * This MIB shall be used to build the VHT Operation element in the TDLS * Setup Confirm frame *******************************************************************************/ #define SLSI_PSID_UNIFI_TDLS_BASIC_VHT_MCS_SET 0x0A04 /******************************************************************************* * NAME : Dot11TdlsDiscoveryRequestWindow * PSID : 2565 (0x0A05) * PER INTERFACE?: NO * TYPE : SlsiUint32 * MIN : 0 * MAX : 4294967295 * DEFAULT : 10 * DESCRIPTION : * The TDLS FSM shall not transmit the TDLS Discovery Request frame within * dot11TDLSDiscoveryRequestWindow DTIM intervals after transmitting TDLS * Discovery Request frame. *******************************************************************************/ #define SLSI_PSID_DOT11_TDLS_DISCOVERY_REQUEST_WINDOW 0x0A05 /******************************************************************************* * NAME : Dot11TdlsResponseTimeout * PSID : 2566 (0x0A06) * PER INTERFACE?: NO * TYPE : SlsiUint32 * MIN : 0 * MAX : 4294967295 * DEFAULT : 5 * DESCRIPTION : * If no TDLS Setup Response frame is received within * dot11TDLSResponseTimeout, or if a TDLS Setup Response frame is received * with a nonzero status code, the TDLS initiator STA shall terminate the * setup procedure and discard the TDLS Setup Response frame. *******************************************************************************/ #define SLSI_PSID_DOT11_TDLS_RESPONSE_TIMEOUT 0x0A06 /******************************************************************************* * NAME : Dot11TdlsChannelSwitchActivated * PSID : 2567 (0x0A07) * PER INTERFACE?: NO * TYPE : SlsiBool * MIN : 0 * MAX : 1 * DEFAULT : TRUE * DESCRIPTION : * If dot11TDLSChannelSwitchActivated is TRUE, it need to send TDLS channel * switch response packet as corresponeding *******************************************************************************/ #define SLSI_PSID_DOT11_TDLS_CHANNEL_SWITCH_ACTIVATED 0x0A07 /******************************************************************************* * NAME : UnifiTdlsDesignForTestMode * PSID : 2568 (0x0A08) * PER INTERFACE?: NO * TYPE : SlsiUint32 * MIN : 0 * MAX : 4294967295 * DEFAULT : 0X00000000 * DESCRIPTION : * This MIB shall be used to set TDLS design for test mode *******************************************************************************/ #define SLSI_PSID_UNIFI_TDLS_DESIGN_FOR_TEST_MODE 0x0A08 /******************************************************************************* * NAME : UnifiTdlsKeyLifeTimeInterval * PSID : 2577 (0x0A11) * PER INTERFACE?: NO * TYPE : SlsiUint32 * MIN : 0 * MAX : 4294967295 * DEFAULT : 0X000FFFFF * DESCRIPTION : * This MIB shall be used to build the Key Lifetime Interval in the TDLS * Setup Request frame. *******************************************************************************/ #define SLSI_PSID_UNIFI_TDLS_KEY_LIFE_TIME_INTERVAL 0x0A11 /******************************************************************************* * NAME : UnifiOxygenDesignForTestMode * PSID : 2583 (0x0A17) * PER INTERFACE?: NO * TYPE : SlsiUint32 * MIN : 0 * MAX : 4294967295 * DEFAULT : 0X00000000 * DESCRIPTION : * This is only used for the test purpose that can verify the requirements * of IBSS/OXYGEN feature *******************************************************************************/ #define SLSI_PSID_UNIFI_OXYGEN_DESIGN_FOR_TEST_MODE 0x0A17 /******************************************************************************* * NAME : UnifiPrivateBbbTxFilterConfig * PSID : 4071 (0x0FE7) * PER INTERFACE?: NO * TYPE : SlsiUint16 * MIN : 0 * MAX : 65535 * DEFAULT : 0X17 * DESCRIPTION : * This MIB entry is written directly to the BBB_TX_FILTER_CONFIG register. * Only the lower eight bits of this register are implemented . Bits 0-3 are * the &apos;Tx Gain&apos;, bits 6-8 are the &apos;Tx Delay&apos;. This * register should only be changed by an expert. *******************************************************************************/ #define SLSI_PSID_UNIFI_PRIVATE_BBB_TX_FILTER_CONFIG 0x0FE7 /******************************************************************************* * NAME : UnifiPrivateSleepMode * PSID : 4073 (0x0FE9) * PER INTERFACE?: NO * TYPE : SlsiUint16 * MIN : 0 * MAX : 65535 * DEFAULT : * DESCRIPTION : * UniFi has various sleep modes. By setting bits in this key it is possible * to disable each separately. The bits are: 0 Do not allow full shallow * sleep (as if the radio were active) 1 Do not allow any form of shallow * sleep 2 Do not allow deep sleep 3 Do not allow any clocks to be turned * off (this does not, however, turn any additional clocks on) Note that * this specifies the maximum sleep level, not the current sleep level: * unless the value is set to 14 or 15, UniFi may decide to enter use one of * the remaining forms of sleep that are allowed. *******************************************************************************/ #define SLSI_PSID_UNIFI_PRIVATE_SLEEP_MODE 0x0FE9 /******************************************************************************* * NAME : UnifiPrivateSwagcFrontEndGain * PSID : 4075 (0x0FEB) * PER INTERFACE?: NO * TYPE : SlsiInt16 * MIN : -128 * MAX : 127 * DEFAULT : * DESCRIPTION : * Gain of the path between chip and antenna when LNA is on. *******************************************************************************/ #define SLSI_PSID_UNIFI_PRIVATE_SWAGC_FRONT_END_GAIN 0x0FEB /******************************************************************************* * NAME : UnifiPrivateSwagcFrontEndLoss * PSID : 4076 (0x0FEC) * PER INTERFACE?: NO * TYPE : SlsiInt16 * MIN : -128 * MAX : 127 * DEFAULT : * DESCRIPTION : * Loss of the path between chip and antenna when LNA is off. *******************************************************************************/ #define SLSI_PSID_UNIFI_PRIVATE_SWAGC_FRONT_END_LOSS 0x0FEC /******************************************************************************* * NAME : UnifiPrivateSwagcExtThresh * PSID : 4077 (0x0FED) * PER INTERFACE?: NO * TYPE : SlsiInt16 * MIN : -128 * MAX : 127 * DEFAULT : -25 * DESCRIPTION : * Signal level at which external LNA will be used for AGC purposes. *******************************************************************************/ #define SLSI_PSID_UNIFI_PRIVATE_SWAGC_EXT_THRESH 0x0FED /******************************************************************************* * NAME : UnifiTxRxTokenBalance * PSID : 4132 (0x1024) * PER INTERFACE?: NO * TYPE : SlsiInt16 * UNITS : pages * MIN : -32768 * MAX : 32767 * DEFAULT : * DESCRIPTION : * This element adjusts the comparison between memory data pages used on the * Tx direction and the ones used in the Rx direction to decide which * direction should get new ones when contention happens. Usually the * comparison aims to penalise the one that has more pages than than the * other, if contention exists, but this mib will artificially penalise the * to-host direction, if negative or the from-host direction, if positive. *******************************************************************************/ #define SLSI_PSID_UNIFI_TX_RX_TOKEN_BALANCE 0x1024 /******************************************************************************* * NAME : UnifiRaaSpeculationInterval * PSID : 4140 (0x102C) * PER INTERFACE?: NO * TYPE : SlsiUint16 * MIN : 0 * MAX : 65535 * DEFAULT : 100 * DESCRIPTION : * For Rate Adaptation Algorithm. It defines the repeatable amount of time, * in ms, that firmware will start to send speculation frames. *******************************************************************************/ #define SLSI_PSID_UNIFI_RAA_SPECULATION_INTERVAL 0x102C /******************************************************************************* * NAME : UnifiRaaSpeculationPeriod * PSID : 4141 (0x102D) * PER INTERFACE?: NO * TYPE : SlsiUint16 * MIN : 0 * MAX : 65535 * DEFAULT : 10 * DESCRIPTION : * For Rate Adaptation Algorithm. It defines the max amount of time, in ms, * that firmware will use for sending speculation frames *******************************************************************************/ #define SLSI_PSID_UNIFI_RAA_SPECULATION_PERIOD 0x102D /******************************************************************************* * NAME : UnifiRaaNumbSpeculationFrames * PSID : 4142 (0x102E) * PER INTERFACE?: NO * TYPE : SlsiUint16 * MIN : 0 * MAX : 65535 * DEFAULT : 9 * DESCRIPTION : * For Rate Adaptation Algorithm. It defines the max amount of speculation * frames that firmware is allowed to send. *******************************************************************************/ #define SLSI_PSID_UNIFI_RAA_NUMB_SPECULATION_FRAMES 0x102E /******************************************************************************* * NAME : UnifiRaaTxSuccessesCount * PSID : 4143 (0x102F) * PER INTERFACE?: NO * TYPE : SlsiUint16 * MIN : 0 * MAX : 65535 * DEFAULT : * DESCRIPTION : * For Rate Adaptation Algorithm. It represents the number of transmitted * frames that were acked at a given rate. *******************************************************************************/ #define SLSI_PSID_UNIFI_RAA_TX_SUCCESSES_COUNT 0x102F /******************************************************************************* * NAME : UnifiRaaTxFailuresCount * PSID : 4144 (0x1030) * PER INTERFACE?: NO * TYPE : SlsiUint16 * MIN : 0 * MAX : 65535 * DEFAULT : * DESCRIPTION : * For Rate Adaptation Algorithm. It represents the number of transmitted * frames that were NOT acked at a given rate. *******************************************************************************/ #define SLSI_PSID_UNIFI_RAA_TX_FAILURES_COUNT 0x1030 /******************************************************************************* * NAME : UnifiRaaTxPer * PSID : 4145 (0x1031) * PER INTERFACE?: NO * TYPE : SlsiUint16 * MIN : 0 * MAX : 65535 * DEFAULT : * DESCRIPTION : * For Rate Adaptation Algorithm. It represents the Packet Error Rate for a * given rate on the RAA rate stats. *******************************************************************************/ #define SLSI_PSID_UNIFI_RAA_TX_PER 0x1031 /******************************************************************************* * NAME : UnifiRaaResetStats * PSID : 4146 (0x1032) * PER INTERFACE?: NO * TYPE : SlsiUint16 * MIN : 0 * MAX : 65535 * DEFAULT : * DESCRIPTION : * For Rate Adaptation Algorithm. It Resets the stats table used by the RAA. *******************************************************************************/ #define SLSI_PSID_UNIFI_RAA_RESET_STATS 0x1032 /******************************************************************************* * NAME : UnifiRaaTxMtPer * PSID : 4147 (0x1033) * PER INTERFACE?: NO * TYPE : SlsiUint16 * MIN : 0 * MAX : 65535 * DEFAULT : * DESCRIPTION : * For Rate Adaptation Algorithm. It represents the Maximum Tolerable Packet * Error Rate for each rate. *******************************************************************************/ #define SLSI_PSID_UNIFI_RAA_TX_MT_PER 0x1033 /******************************************************************************* * NAME : UnifiRaaTxHostRate * PSID : 4148 (0x1034) * PER INTERFACE?: NO * TYPE : SlsiUint16 * MIN : 0 * MAX : 65535 * DEFAULT : * DESCRIPTION : * This MIB is use for host to set a fixed TX rate. Ideally this should be * done by the driver, but since there isn't support for it yet, the best * solution is to set it through this MIB. Default is 0 so that the getter * of this MIB nows that this means "host did not specified any rate". *******************************************************************************/ #define SLSI_PSID_UNIFI_RAA_TX_HOST_RATE 0x1034 /******************************************************************************* * NAME : UnifiCoexCmebtcdlPriorityTable * PSID : 5014 (0x1396) * PER INTERFACE?: NO * TYPE : SlsiUint8 * MIN : 20 * MAX : 20 * DEFAULT : { 0X99, 0X99, 0X99, 0XC9, 0X5C, 0X59, 0X55, 0X55, 0X55, 0X55, 0X55, 0X55, 0X55, 0X55, 0X99, 0X55, 0X64, 0X5D, 0X5C, 0X00 } * DESCRIPTION : * This string contains the coexistence configuration for the CME BT CDL * priority table. Description: octet 0 LS Nibble - page - CDL priority for * page octet 0 MS Nibble - page_scan - CDL priority for page scan octet 1 * LS Nibble - inquiry - CDL priority for inquiry octet 1 MS Nibble - * inquiry_scan - CDL priority for inquiry scan octet 2 LS Nibble - * role_switch - CDL priority for role_switch octet 2 MS Nibble - * lmp_to_master - CDL priority for LMP to master octet 3 LS Nibble - * lmp_from_master - CDL priority for LMP from master octet 3 MS Nibble - * esco - CDL priority for SCO/eSCO octet 4 LS Nibble - esco_retrans - CDL * priority for eSCO retransmissions octet 4 MS Nibble - polling - CDL * priority for polling octet 5 LS Nibble - sniff - CDL priority for start * of sniff octet 5 MS Nibble - bulk_acl - CDL priority for bulk ACL octet 6 * LS Nibble - broadcast - CDL priority for broadcast transmissions octet 6 * MS Nibble - park - CDL priority for park octet 7 LS Nibble - band_scan - * CDL priority for band scan octet 7 MS Nibble - cond_scan - CDL priority * for conditional scan octet 8 LS Nibble - trim - CDL priority for radio * trim octet 8 MS Nibble - ble_nonconnectable_advert - CDL priority for BLE * non-connectable advertising octet 9 LS Nibble - ble_discoverable_advert - * CDL priority for BLE discoverable advertising octet 9 MS Nibble - * ble_undirected_advert - CDL priority for BLE connectable undirected * advertising octet 10 LS Nibble - ble_directed_advert - CDL priority for * BLE connectable directed advertising octet 10 MS Nibble - * ble_advert_scan_response - CDL priority for BLE advertising scan response * octet 11 LS Nibble - ble_passive_scan - CDL priority for BLE passive * scanning octet 11 MS Nibble - ble_active_scan - CDL priority for BLE * active scanning octet 12 LS Nibble - ble_active_scan_response - CDL * priority for BLE active scanning scanresponse octet 12 MS Nibble - * ble_initiator - CDL priority for BLE initiator octet 13 LS Nibble - * ble_master_establishment - CDL priority for BLE connection establishment * (master) octet 13 MS Nibble - ble_slave_establishment - CDL priority for * BLE connection establishment (slave) octet 14 LS Nibble - * ble_master_anchor - CDL priority for BLE anchor point (master) octet 14 * MS Nibble - ble_slave_anchor - CDL priority for BLE anchor point (slave) * octet 15 LS Nibble - ble_master_data - CDL priority for BLE data (master) * octet 15 MS Nibble - ble_slave_data - CDL priority for BLE data (slave) * octet 16 LS Nibble - ant_priority_0 - CDL priority for ANT low priority * packets octet 16 MS Nibble - ant_priority_1 - CDL priority for ANT medium * priority packets octet 17 LS Nibble - ant_priority_2 - CDL priority for * ANT high priority packets octet 17 MS Nibble - low_priority_sniff - CDL * priority for low priority sniff packets octet 18 LS Nibble - * a2dp_puncture_mode - CDL priority for A2DP puncture mode packets octet 18 * MS Nibble - a2dp_non_puncture_mode - CDL priority for A2DP non-puncture * mode packets octet 19 LS Nibble - spare - spare entry to complete 16-bit * word octet 19 MS Nibble - spare - spare entry to complete 16-bit word *******************************************************************************/ #define SLSI_PSID_UNIFI_COEX_CMEBTCDL_PRIORITY_TABLE 0x1396 /******************************************************************************* * NAME : UnifiCoexCmewlancdlRxPriorityTable * PSID : 5015 (0x1397) * PER INTERFACE?: NO * TYPE : SlsiUint8 * MIN : 4 * MAX : 4 * DEFAULT : { 0XA4, 0X4A, 0X6A, 0X0A } * DESCRIPTION : * This string contains the coexistence configuration for the CME WLAN CDL * receive priority table. Description: MS nibble LS nibble octet 0 - TX/RX * high priority control (A) TX/RX CT Window (4) octet 1 - Min. VIF Duration * (4) TX/RX During WLAN Keep Alive (a) octet 2 - RX During WLAN Opportunity * (6) RX Multicast Rx (a) octet 3 - [unused] (0) RX Beacon (a) (*) used to * ensure that the CDL RX priority is set correctly before trying to send a * PS NULL, or CTS-TO-SELF NB: These values are dynamically changed by the * WLAN firmware during normal WLAN operation. *******************************************************************************/ #define SLSI_PSID_UNIFI_COEX_CMEWLANCDL_RX_PRIORITY_TABLE 0x1397 /******************************************************************************* * NAME : UnifiCoexCmewlancdlTxPriorityTable * PSID : 5016 (0x1398) * PER INTERFACE?: NO * TYPE : SlsiUint8 * MIN : 3 * MAX : 3 * DEFAULT : { 0X8A, 0X88, 0X0A } * DESCRIPTION : * This string contains the coexistence configuration for the CME WLAN CDL * transmit priority table. Description: MS nibble LS nibble octet 0 - * Broadcast/Multicast non-Beacon Frames Beacons octet 1 - Data and * Management Frames Control Frames octet 2 - [unused] High Priority Control * Frames NB: These values are dynamically changed by the WLAN firmware * during normal WLAN operation. *******************************************************************************/ #define SLSI_PSID_UNIFI_COEX_CMEWLANCDL_TX_PRIORITY_TABLE 0x1398 /******************************************************************************* * NAME : UnifiCoexAllowAnaDisable * PSID : 5017 (0x1399) * PER INTERFACE?: NO * TYPE : SlsiBool * MIN : 0 * MAX : 1 * DEFAULT : FALSE * DESCRIPTION : * This allows WL to turn ANA protection OFF. This is needed in EVT1.1 where * BT and WL activity adversely affect each other, resulting in PUNCTURING * MODE not working (The failure case is that BT cannot TX during WL RX * activity). *******************************************************************************/ #define SLSI_PSID_UNIFI_COEX_ALLOW_ANA_DISABLE 0x1399 /******************************************************************************* * NAME : UnifiCoexPowerManagementDelayTimeout * PSID : 5018 (0x139A) * PER INTERFACE?: NO * TYPE : SlsiUint32 * UNITS : microseconds * MIN : 0 * MAX : 2147483647 * DEFAULT : 2000 * DESCRIPTION : * When UniFi enters power save mode it signals the new state by setting the * power management bit in the frame control field of a NULL frame. It then * remains active for the period since the previous unicast reception, or * since the transmission of the NULL frame, whichever is later. This * attribute controls the maximum time during which UniFi will continue to * listen for data. This allows any buffered data on a remote device to be * cleared. Note that this attribute specifies the timeout used during BT * scan and connect coexistence activities, and is much more aggressive that * the default specified by unifiPowerManagementDelayTimeout *******************************************************************************/ #define SLSI_PSID_UNIFI_COEX_POWER_MANAGEMENT_DELAY_TIMEOUT 0x139A /******************************************************************************* * NAME : UnifiFrontEndControlConfigParam * PSID : 5021 (0x139D) * PER INTERFACE?: NO * TYPE : SlsiUint8 * MIN : 32 * MAX : 32 * DEFAULT : { 0X50, 0X51, 0X52, 0X20, 0X14, 0X30, 0X20, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00, 0X00 } * DESCRIPTION : * The WLAN subsystem on BT-WLAN combo ICs incorporates flexible logic for * directly controlling external RF front-end components. This attribute * specifies a front-end control signal configuration set for the WLAN * subsystem. Each octet selects the front-end control signal that should be * output on a given pin. The 32 octets correspond to settings for PIOs 0 to * 31, with the first representing PIO 0 and the last representing PIO 31. * The value that each octet takes defines the behaviour of the pin, with * the available options detailed in the following. NB: the numbers * correspond to an enum in \c mac\hal\halfec.h, and should not be changed * for reasons of backward compatibility. General Signals -_-_-_-_-_-_-_- * 0x00 FEC_PIN_UNUSED Not used for front end control. If this option is * selected then the specified PIO may still be used for a purpose other * than front-end control. It is inadvisable to change a given pin between * PIN_UNUSED and other settings in different rows of the table. Internal * Bluetooth-only signals -_-_-_-_-_-_-_-_-_-_-_-_-_-_-_- 0x14 FEC_BT_TX * Driven high when the internal Bluetooth subsystem is transmitting and low * at all other times. WLAN 2.4GHz signals -_-_-_-_-_-_-_-_-_- 0x20 * FEC_WL2G4_TX Driven high when the WLAN subsystem is transmitting on the * 2.4GHz band. WLAN 2.4GHz - Internal Bluetooth signals * -_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ 0x30 FEC_WL2G4BT_RX_WL_LNA * Driven high when the WLAN subsystem is receiving via its own (WLAN) LNA * on the 2.4GHz band, or the internal Bluetooth subsystem is receiving via * the WLANs LNA. WLAN 5GHz signals -_-_-_-_-_-_-_-_- 0x50 FEC_WL5G_TX * Driven high when the WLAN subsystem is transmitting on the 5GHz band. * 0x51 FEC_WL5G_RX Driven high when the WLAN subsystem is receiving on the * 5GHz band. 0x52 FEC_WL5G_TXRX Driven high when the WLAN subsystem is * either transmitting or receiving on the 5GHz band. *******************************************************************************/ #define SLSI_PSID_UNIFI_FRONT_END_CONTROL_CONFIG_PARAM 0x139D /******************************************************************************* * NAME : UnifiFrontEndControlMutex * PSID : 5024 (0x13A0) * PER INTERFACE?: NO * TYPE : SlsiUint16 * MIN : 0 * MAX : 4095 * DEFAULT : 0X0FF0 * DESCRIPTION : * This attribute applies to the WLAN subsystem on combo ICs and allows the * combination of activities that must be mutually exclusive because of the * external front-end configuration to be specified. The value is a bit mask * where a set bit indicates that the corresponding combination cannot occur * simultaneously. Bit 0(LSB) : Bluetooth transmit and WLAN 5GHz transmit * Bit 1 : Bluetooth transmit and WLAN 5GHz receive Bit 2 : Bluetooth * receive and WLAN 5GHz transmit Bit 3 : Bluetooth receive and WLAN 5GHz * receive Bit 4 : Bluetooth transmit and WLAN 2.4GHz transmit Bit 5 : * Bluetooth transmit and WLAN 2.4GHz receive, WLAN using WLAN LNA Bit 6 : * Bluetooth transmit and WLAN 2.4GHz receive, WLAN using BT LNA Bit 7 : * Bluetooth receive and WLAN 2.4GHz transmit, BT using WLAN LNA Bit 8 : * Bluetooth receive and WLAN 2.4GHz transmit, BT using BT LNA Bit 9 : * Bluetooth receive and WLAN 2.4GHz receive, both WLAN and BT using BT LNA * Bit 10 : Bluetooth receive and WLAN 2.4GHz receive, both WLAN and BT * using WLAN LNA Bit 11 : Bluetooth receive and WLAN 2.4GHz receive, WLAN * using WLAN LNA and BT using BT LNA Bit 7 and Bit 10 should always be set * when the WLAN subsystem is operating with an externalBluetooth device, as * any external Bluetooth device will never be able to access the WLAN * subsystems internal LNA. Bit 6 and Bit 7 should always be set when the * WLAN subsystem is operating with the internal BT subsystem, since it is * not possible for the internal BT LNA to be used during BT transmit. * Similarly, it is not possible for the internal WLAN LNA to be used during * WLAN transmit. *******************************************************************************/ #define SLSI_PSID_UNIFI_FRONT_END_CONTROL_MUTEX 0x13A0 /******************************************************************************* * NAME : UnifiDebugControl * PSID : 5029 (0x13A5) * PER INTERFACE?: NO * TYPE : SlsiUint16 * MIN : 0 * MAX : 255 * DEFAULT : * DESCRIPTION : * The set of Debug control values used to enable/disable various levels of * debug output on a per module basis *******************************************************************************/ #define SLSI_PSID_UNIFI_DEBUG_CONTROL 0x13A5 /******************************************************************************* * NAME : UnifiTxUsingLdpcEnabled * PSID : 5030 (0x13A6) * PER INTERFACE?: NO * TYPE : SlsiBool * MIN : 0 * MAX : 1 * DEFAULT : TRUE * DESCRIPTION : * This attribute, when TRUE, indicates that LDPC will be used to code * packets, for transmit only. If set to FALSE, chip will not send LDPC * coded packets even if peer supports it. To advertise reception of LDPC * coded packets,enable bit 0 of unifiHtCapabilities, and bit 4 of * unifiVhtCapabilities. *******************************************************************************/ #define SLSI_PSID_UNIFI_TX_USING_LDPC_ENABLED 0x13A6 /******************************************************************************* * NAME : UnifiTxSettings * PSID : 5031 (0x13A7) * PER INTERFACE?: NO * TYPE : SlsiUint8 * MIN : 0 * MAX : 255 * DEFAULT : * DESCRIPTION : * Hardware specific transmitter settings *******************************************************************************/ #define SLSI_PSID_UNIFI_TX_SETTINGS 0x13A7 /******************************************************************************* * NAME : UnifiTxGainSettings * PSID : 5032 (0x13A8) * PER INTERFACE?: NO * TYPE : SlsiUint8 * MIN : 0 * MAX : 255 * DEFAULT : * DESCRIPTION : * Hardware specific transmitter gain settings *******************************************************************************/ #define SLSI_PSID_UNIFI_TX_GAIN_SETTINGS 0x13A8 /******************************************************************************* * NAME : UnifiTxAntennaConnectionLossFrequency * PSID : 5033 (0x13A9) * PER INTERFACE?: NO * TYPE : SlsiUint16 * MIN : 3940 * MAX : 12000 * DEFAULT : * DESCRIPTION : * The corresponding set of frequency values for * TxAntennaConnectionLossTable *******************************************************************************/ #define SLSI_PSID_UNIFI_TX_ANTENNA_CONNECTION_LOSS_FREQUENCY 0x13A9 /******************************************************************************* * NAME : UnifiTxAntennaConnectionLoss * PSID : 5034 (0x13AA) * PER INTERFACE?: NO * TYPE : SlsiInt16 * MIN : -128 * MAX : 127 * DEFAULT : * DESCRIPTION : * The set of Antenna Connection Loss value, which is used for TPO/EIRP * conversion *******************************************************************************/ #define SLSI_PSID_UNIFI_TX_ANTENNA_CONNECTION_LOSS 0x13AA /******************************************************************************* * NAME : UnifiTxAntennaMaxGainFrequency * PSID : 5035 (0x13AB) * PER INTERFACE?: NO * TYPE : SlsiUint16 * MIN : 3940 * MAX : 12000 * DEFAULT : * DESCRIPTION : * The corresponding set of frequency values for TxAntennaMaxGain *******************************************************************************/ #define SLSI_PSID_UNIFI_TX_ANTENNA_MAX_GAIN_FREQUENCY 0x13AB /******************************************************************************* * NAME : UnifiTxAntennaMaxGain * PSID : 5036 (0x13AC) * PER INTERFACE?: NO * TYPE : SlsiInt16 * MIN : -128 * MAX : 127 * DEFAULT : * DESCRIPTION : * The set of Antenna Max Gain value, which is used for TPO/EIRP conversion *******************************************************************************/ #define SLSI_PSID_UNIFI_TX_ANTENNA_MAX_GAIN 0x13AC /******************************************************************************* * NAME : UnifiRxExternalGainFrequency * PSID : 5037 (0x13AD) * PER INTERFACE?: NO * TYPE : SlsiUint16 * MIN : 3940 * MAX : 12000 * DEFAULT : * DESCRIPTION : * The set of RSSI offset value *******************************************************************************/ #define SLSI_PSID_UNIFI_RX_EXTERNAL_GAIN_FREQUENCY 0x13AD /******************************************************************************* * NAME : UnifiRxExternalGain * PSID : 5038 (0x13AE) * PER INTERFACE?: NO * TYPE : SlsiInt16 * MIN : -128 * MAX : 127 * DEFAULT : * DESCRIPTION : * The table giving frequency-dependent RSSI offset value *******************************************************************************/ #define SLSI_PSID_UNIFI_RX_EXTERNAL_GAIN 0x13AE /******************************************************************************* * NAME : UnifiTxOobConstraintRuleSelectorBitmask * PSID : 5039 (0x13AF) * PER INTERFACE?: NO * TYPE : SlsiUint32 * MIN : 0 * MAX : 4294967295 * DEFAULT : * DESCRIPTION : * Bitmask indicating which out-of-band constraint rule selectors this rule * applies to (LSB/b0 corresponds to rule selector 0, MSB/b32 corresponds to * rule selector 31) *******************************************************************************/ #define SLSI_PSID_UNIFI_TX_OOB_CONSTRAINT_RULE_SELECTOR_BITMASK 0x13AF /******************************************************************************* * NAME : UnifiTxOobConstraintModulationBitmask * PSID : 5040 (0x13B0) * PER INTERFACE?: NO * TYPE : SlsiUint16 * MIN : 0 * MAX : 255 * DEFAULT : * DESCRIPTION : * Bitmask indicating which modulation types this rule applies to * (LSB/b0=DSSS/CCK, b1= BPSK/QPSK, b2= 16-QAM, b3= 64-QAM (non-HT), and * b4=64-QAM HT) *******************************************************************************/ #define SLSI_PSID_UNIFI_TX_OOB_CONSTRAINT_MODULATION_BITMASK 0x13B0 /******************************************************************************* * NAME : UnifiTxOobConstraintBandwidthBitmask * PSID : 5041 (0x13B1) * PER INTERFACE?: NO * TYPE : SlsiUint16 * MIN : 0 * MAX : 255 * DEFAULT : * DESCRIPTION : * Bitmask indicating which channel bandwidths this rule applies to * (LSB/b0=5MHz, b1=10MHz, b2=20MHz, b3=40MHz, etc.) *******************************************************************************/ #define SLSI_PSID_UNIFI_TX_OOB_CONSTRAINT_BANDWIDTH_BITMASK 0x13B1 /******************************************************************************* * NAME : UnifiTxOobConstraintDistanceToBandEdge * PSID : 5042 (0x13B2) * PER INTERFACE?: NO * TYPE : SlsiUint16 * MIN : 0 * MAX : 255 * DEFAULT : * DESCRIPTION : * Minimum distance to nearest band edge in 500 kHz units for which this * constraint becomes is applicable. *******************************************************************************/ #define SLSI_PSID_UNIFI_TX_OOB_CONSTRAINT_DISTANCE_TO_BAND_EDGE 0x13B2 /******************************************************************************* * NAME : UnifiTxOobConstraintMaxPowerEirp * PSID : 5043 (0x13B3) * PER INTERFACE?: NO * TYPE : SlsiInt16 * MIN : -128 * MAX : 127 * DEFAULT : * DESCRIPTION : * Maximum power (EIRP) for this particular constraint - specified in units * of quarter dBm. *******************************************************************************/ #define SLSI_PSID_UNIFI_TX_OOB_CONSTRAINT_MAX_POWER_EIRP 0x13B3 /******************************************************************************* * NAME : UnifiTxOobConstraintSpectralShapingConfig * PSID : 5044 (0x13B4) * PER INTERFACE?: NO * TYPE : SlsiUint32 * MIN : 0 * MAX : 4294967295 * DEFAULT : * DESCRIPTION : * Spectral shaping configuration to be used for this particular constraint. * The value is specific to the radio hardware and should only be altered * under advice from the IC supplier. *******************************************************************************/ #define SLSI_PSID_UNIFI_TX_OOB_CONSTRAINT_SPECTRAL_SHAPING_CONFIG 0x13B4 /******************************************************************************* * NAME : UnifiTxPowerAdjustFrequency * PSID : 5049 (0x13B9) * PER INTERFACE?: NO * TYPE : SlsiUint16 * MIN : 4800 * MAX : 12000 * DEFAULT : * DESCRIPTION : * Frequency reference point for a row in unifiTxPowerAdjustTable, specified * in 500 kHz units. *******************************************************************************/ #define SLSI_PSID_UNIFI_TX_POWER_ADJUST_FREQUENCY 0x13B9 /******************************************************************************* * NAME : UnifiTxPowerAdjustTemperature * PSID : 5050 (0x13BA) * PER INTERFACE?: NO * TYPE : SlsiInt16 * MIN : -128 * MAX : 127 * DEFAULT : * DESCRIPTION : * Temperature reference point for a row in unifiTxPowerAdjustTable, * specified in degrees Celsius *******************************************************************************/ #define SLSI_PSID_UNIFI_TX_POWER_ADJUST_TEMPERATURE 0x13BA /******************************************************************************* * NAME : UnifiTxPowerAdjustDelta * PSID : 5051 (0x13BB) * PER INTERFACE?: NO * TYPE : SlsiInt16 * MIN : -128 * MAX : 127 * DEFAULT : * DESCRIPTION : * Delta adjustment in quarter dB for a row in unifiTxPowerAdjustTable. *******************************************************************************/ #define SLSI_PSID_UNIFI_TX_POWER_ADJUST_DELTA 0x13BB /******************************************************************************* * NAME : UnifiTxPowerDetectorResponse * PSID : 5055 (0x13BF) * PER INTERFACE?: NO * TYPE : SlsiUint8 * MIN : 0 * MAX : 255 * DEFAULT : * DESCRIPTION : * Hardware specific transmitter detector response settings *******************************************************************************/ #define SLSI_PSID_UNIFI_TX_POWER_DETECTOR_RESPONSE 0x13BF /******************************************************************************* * NAME : UnifiTxDetectorTemperatureCompensation * PSID : 5056 (0x13C0) * PER INTERFACE?: NO * TYPE : SlsiUint8 * MIN : 0 * MAX : 255 * DEFAULT : * DESCRIPTION : * Hardware specific transmitter detector temperature compensation settings *******************************************************************************/ #define SLSI_PSID_UNIFI_TX_DETECTOR_TEMPERATURE_COMPENSATION 0x13C0 /******************************************************************************* * NAME : UnifiTxDetectorFrequencyCompensation * PSID : 5057 (0x13C1) * PER INTERFACE?: NO * TYPE : SlsiUint8 * MIN : 0 * MAX : 255 * DEFAULT : * DESCRIPTION : * Hardware specific transmitter detector frequency compensation settings *******************************************************************************/ #define SLSI_PSID_UNIFI_TX_DETECTOR_FREQUENCY_COMPENSATION 0x13C1 /******************************************************************************* * NAME : UnifiTxOpenLoopTemperatureCompensation * PSID : 5058 (0x13C2) * PER INTERFACE?: NO * TYPE : SlsiUint8 * MIN : 0 * MAX : 255 * DEFAULT : * DESCRIPTION : * Hardware specific transmitter open-loop temperature compensation settings *******************************************************************************/ #define SLSI_PSID_UNIFI_TX_OPEN_LOOP_TEMPERATURE_COMPENSATION 0x13C2 /******************************************************************************* * NAME : UnifiTxOpenLoopFrequencyCompensation * PSID : 5059 (0x13C3) * PER INTERFACE?: NO * TYPE : SlsiUint8 * MIN : 0 * MAX : 255 * DEFAULT : * DESCRIPTION : * Hardware specific transmitter open-loop frequency compensation settings *******************************************************************************/ #define SLSI_PSID_UNIFI_TX_OPEN_LOOP_FREQUENCY_COMPENSATION 0x13C3 /******************************************************************************* * NAME : UnifiTxOfdmSelect * PSID : 5060 (0x13C4) * PER INTERFACE?: NO * TYPE : SlsiUint8 * MIN : 4 * MAX : 4 * DEFAULT : * DESCRIPTION : * Hardware specific transmitter OFDM selection settings. *******************************************************************************/ #define SLSI_PSID_UNIFI_TX_OFDM_SELECT 0x13C4 /******************************************************************************* * NAME : UnifiTxDigGain * PSID : 5061 (0x13C5) * PER INTERFACE?: NO * TYPE : SlsiUint8 * MIN : 16 * MAX : 16 * DEFAULT : * DESCRIPTION : * This attribute used to specify gain specific modulation power * optimisation. *******************************************************************************/ #define SLSI_PSID_UNIFI_TX_DIG_GAIN 0x13C5 /******************************************************************************* * NAME : UnifiChipTemperature * PSID : 5062 (0x13C6) * PER INTERFACE?: NO * TYPE : SlsiInt16 * UNITS : celcius * MIN : -32768 * MAX : 32767 * DEFAULT : * DESCRIPTION : * This attribute used to read the chip temperature as seen by WLAN radio * firmware *******************************************************************************/ #define SLSI_PSID_UNIFI_CHIP_TEMPERATURE 0x13C6 /******************************************************************************* * NAME : UnifiBatteryVoltage * PSID : 5063 (0x13C7) * PER INTERFACE?: NO * TYPE : SlsiUint16 * UNITS : millivolt * MIN : 0 * MAX : 65535 * DEFAULT : * DESCRIPTION : * This attribute used to read the battery voltage *******************************************************************************/ #define SLSI_PSID_UNIFI_BATTERY_VOLTAGE 0x13C7 /******************************************************************************* * NAME : UnifiTxOobConstraintRegulatoryDomainBitmask * PSID : 5064 (0x13C8) * PER INTERFACE?: NO * TYPE : SlsiUint16 * MIN : 0 * MAX : 65535 * DEFAULT : * DESCRIPTION : * Bitmask indicating which regulatory domains this rule applies to * FCC=bit0, ETSI=bit1, JAPAN=bit2 *******************************************************************************/ #define SLSI_PSID_UNIFI_TX_OOB_CONSTRAINT_REGULATORY_DOMAIN_BITMASK 0x13C8 /******************************************************************************* * NAME : UnifiTxOobConstraintBandEdgeBitmask * PSID : 5065 (0x13C9) * PER INTERFACE?: NO * TYPE : SlsiUint16 * MIN : 0 * MAX : 65535 * DEFAULT : * DESCRIPTION : * Bitmask indicating which band edges this rule applies to * RICE_BAND_EDGE_ISM_24G_LOWER = bit 0, RICE_BAND_EDGE_ISM_24G_UPPER = bit * 1, RICE_BAND_EDGE_U_NII_1_LOWER = bit 2, RICE_BAND_EDGE_U_NII_1_UPPER = * bit 3, RICE_BAND_EDGE_U_NII_2_LOWER = bit 4, RICE_BAND_EDGE_U_NII_2_UPPER * = bit 5, RICE_BAND_EDGE_U_NII_2E_LOWER = bit 6, * RICE_BAND_EDGE_U_NII_2E_UPPER = bit 7, RICE_BAND_EDGE_U_NII_3_LOWER = bit * 8, RICE_BAND_EDGE_U_NII_3_UPPER = bit 9 *******************************************************************************/ #define SLSI_PSID_UNIFI_TX_OOB_CONSTRAINT_BAND_EDGE_BITMASK 0x13C9 /******************************************************************************* * NAME : UnifiCurrentTxpowerLevel * PSID : 6020 (0x1784) * PER INTERFACE?: NO * TYPE : SlsiInt16 * UNITS : dBm * MIN : -32768 * MAX : 32767 * DEFAULT : * DESCRIPTION : * This attribute shall indicate the maximum air power for the VIF, * currently used. Expressed in 0.25 dBm units, with the 6 most significant * bits encoding the integer part, and the two least significant bits * encoding the fractional part of the Current Tx Power and subsequently * taking the 2s complement representation for negative values. *******************************************************************************/ #define SLSI_PSID_UNIFI_CURRENT_TXPOWER_LEVEL 0x1784 /******************************************************************************* * NAME : UnifiUserSetTxpowerLevel * PSID : 6021 (0x1785) * PER INTERFACE?: NO * TYPE : SlsiUint16 * MIN : 0 * MAX : 127 * DEFAULT : 127 * DESCRIPTION : * Maximum air power for the VIF, set by the user. Expressed in 0.25 dBm * units, with the 6 most significant bits encoding the integer part, and * the two least significant bits encoding the fractional part of the Max * Air Power and subsequently taking the 2s complement representation for * negative values. *******************************************************************************/ #define SLSI_PSID_UNIFI_USER_SET_TXPOWER_LEVEL 0x1785 /******************************************************************************* * NAME : UnifiTpcMaxPowerThreshold * PSID : 6022 (0x1786) * PER INTERFACE?: NO * TYPE : SlsiInt16 * MIN : -32768 * MAX : 32767 * DEFAULT : -55 * DESCRIPTION : * Below this RSSI(dBm) threshold, firmware will switch to max power allowed * by current regulatory. If it has been previously reduced due to * unifiTPCMinPowerThreshold. *******************************************************************************/ #define SLSI_PSID_UNIFI_TPC_MAX_POWER_THRESHOLD 0x1786 /******************************************************************************* * NAME : UnifiTpcMinPowerThreshold * PSID : 6023 (0x1787) * PER INTERFACE?: NO * TYPE : SlsiInt16 * MIN : -32768 * MAX : 32767 * DEFAULT : -45 * DESCRIPTION : * Above this RSSI(dBm) threshold, firmware will switch to minimum power * that our hardware can support - provided it is lower than current * regulatory limit. Setting it to zero disables the MIB and revert the * power to default state (as specified by regulatory). Disable will only * apply to the next VIF created after changing the value. *******************************************************************************/ #define SLSI_PSID_UNIFI_TPC_MIN_POWER_THRESHOLD 0x1787 /******************************************************************************* * NAME : UnifiCcxSupportedVersion * PSID : 6030 (0x178E) * PER INTERFACE?: NO * TYPE : SlsiUint16 * MIN : 0 * MAX : 65535 * DEFAULT : 3 * DESCRIPTION : * This value enables/disables CCX to specified version. Initialised on * system boot. Possible values: 0-_>No CCX supported 1-_>CCX v4 supported * 2-_>CCX v6 (Lite) version supported 3-_>CCXv4 and CCXv6 versions * supported. *******************************************************************************/ #define SLSI_PSID_UNIFI_CCX_SUPPORTED_VERSION 0x178E /******************************************************************************* * NAME : UnifiCcxLiteFoundationSupportedServices * PSID : 6031 (0x178F) * PER INTERFACE?: NO * TYPE : SlsiUint16 * MIN : 1 * MAX : 2 * DEFAULT : 2 * DESCRIPTION : * This value should show which version of CCX Lite Foundation services is * supported by the device. Only valid if CCX Lite supported. Possible * values: 1-_>CCX Lite Foundation Services v1 supported 2-_>CCX Lite * Foundation Services v2 supported (v2 includes v1 as well) *******************************************************************************/ #define SLSI_PSID_UNIFI_CCX_LITE_FOUNDATION_SUPPORTED_SERVICES 0x178F /******************************************************************************* * NAME : UnifiCcxLiteVoiceSupportedServices * PSID : 6032 (0x1790) * PER INTERFACE?: NO * TYPE : SlsiUint16 * MIN : 0 * MAX : 65535 * DEFAULT : 1 * DESCRIPTION : * This value should show which version of of CCX Lite Voice services is * supported by the device. Only valid if CCX Lite supported. Possible * values: 0-_>CCX Lite Voice not supported 1-_>CCX Lite Voice Services v1 * supported 2-_>CCX Lite Voice Services v2 supported (v2 includes v1 as * well) *******************************************************************************/ #define SLSI_PSID_UNIFI_CCX_LITE_VOICE_SUPPORTED_SERVICES 0x1790 /******************************************************************************* * NAME : UnifiCcxLiteLocationSupportedServices * PSID : 6033 (0x1791) * PER INTERFACE?: NO * TYPE : SlsiUint16 * MIN : 0 * MAX : 65535 * DEFAULT : * DESCRIPTION : * This value should show which version of of CCX Lite Location services is * supported by the device. Only valid if CCX Lite supported. Possible * values: 0-_>CCX Lite Location not supported 1-_>CCX Lite Location * Services v1 supported *******************************************************************************/ #define SLSI_PSID_UNIFI_CCX_LITE_LOCATION_SUPPORTED_SERVICES 0x1791 /******************************************************************************* * NAME : UnifiCcxVoiceFailureThreshold * PSID : 6034 (0x1792) * PER INTERFACE?: NO * TYPE : SlsiUint16 * MIN : 0 * MAX : 65535 * DEFAULT : 3 * DESCRIPTION : * If more than this number of CCX Voice frames fail consecutively then a * failure will be reported to MLME, which may cause roaming. *******************************************************************************/ #define SLSI_PSID_UNIFI_CCX_VOICE_FAILURE_THRESHOLD 0x1792 /******************************************************************************* * NAME : UnifiPmfAssociationComebackTimeDelta * PSID : 6050 (0x17A2) * PER INTERFACE?: NO * TYPE : SlsiUint32 * UNITS : TU * MIN : 0 * MAX : 4294967295 * DEFAULT : 1100 * DESCRIPTION : * This MIB indicates a delta time for the assocication comeback time * element in the SA Query request frame. The association comeback time in * the SA Query request frame will be set to TSF + * unifiPMFAssociationComebackTimeDelta. *******************************************************************************/ #define SLSI_PSID_UNIFI_PMF_ASSOCIATION_COMEBACK_TIME_DELTA 0x17A2 /******************************************************************************* * NAME : UnifiDebugEnable * PSID : 6071 (0x17B7) * PER INTERFACE?: NO * TYPE : SlsiBool * MIN : 0 * MAX : 1 * DEFAULT : FALSE * DESCRIPTION : * Debug to host state. Debug is either is sent to the host or it isn't. *******************************************************************************/ #define SLSI_PSID_UNIFI_DEBUG_ENABLE 0x17B7 /******************************************************************************* * NAME : UnifiRegulatoryParameters * PSID : 8011 (0x1F4B) * PER INTERFACE?: NO * TYPE : SlsiUint8 * MIN : 3 * MAX : 73 * DEFAULT : * DESCRIPTION : * Regulatory parameters. Each row of the table contains the regulatory * rules for one country: octet 0 - first character of alpha2 code for * country octet 1 - second character of alpha2 code for country octet 2 - * regulatory domain for the country Followed by the rules for the country, * numbered 0..n in this description octet 7n+3 - LSB start frequency octet * 7n+4 - MSB start frequency octet 7n+5 - LSB end frequency octet 7n+6 - * MSB end frequency octet 7n+7 - maximum bandwidth octet 7n+8 - maximum * power octet 7n+9 - rule flags *******************************************************************************/ #define SLSI_PSID_UNIFI_REGULATORY_PARAMETERS 0x1F4B /******************************************************************************* * NAME : UnifiSupportedChannels * PSID : 8012 (0x1F4C) * PER INTERFACE?: NO * TYPE : SlsiUint8 * MIN : 0 * MAX : 20 * DEFAULT : {0X01,0X0E,0X24,0X04,0X34,0X04,0X64,0X0C,0X95,0X05} * DESCRIPTION : * Supported 20MHz channel centre frequency grouped in sub-bands. For each * sub-band: starting channel number, followed by number of channels *******************************************************************************/ #define SLSI_PSID_UNIFI_SUPPORTED_CHANNELS 0x1F4C /******************************************************************************* * NAME : UnifiDefaultCountry * PSID : 8013 (0x1F4D) * PER INTERFACE?: NO * TYPE : SlsiUint8 * MIN : 3 * MAX : 3 * DEFAULT : 00 * DESCRIPTION : * Allows setting of default country code. *******************************************************************************/ #define SLSI_PSID_UNIFI_DEFAULT_COUNTRY 0x1F4D /******************************************************************************* * NAME : UnifiCountryList * PSID : 8014 (0x1F4E) * PER INTERFACE?: NO * TYPE : SlsiUint8 * MIN : 2 * MAX : 500 * DEFAULT : (Too Large to display) * DESCRIPTION : * Defines the ordered list of countries present in unifiRegulatoryTable. * Each country is coded as 2 ASCII characters. If unifiRegulatoryTable is * modified, such as a country is either added, deleted or its relative * location is modified, this MIB has to be updated as well. *******************************************************************************/ #define SLSI_PSID_UNIFI_COUNTRY_LIST 0x1F4E /******************************************************************************* * NAME : UnifiOperatingClassParamters * PSID : 8015 (0x1F4F) * PER INTERFACE?: NO * TYPE : SlsiUint8 * MIN : 6 * MAX : 73 * DEFAULT : * DESCRIPTION : * Operating Class parameters. Each row of the table contains the regulatory * rules for one country: octet 0 - for Region Cone octet 1 - for Operating * Class ID octet 2 ~ 3 - for Channel Starting Frequency octet 4 - for * Channel Spacing octet 5 - for Number of Elements in Channel Set octet n - * for Channel Set octet end - for Behavior Limits Set *******************************************************************************/ #define SLSI_PSID_UNIFI_OPERATING_CLASS_PARAMTERS 0x1F4F #ifdef __cplusplus } #endif #endif /* SLSI_MIB_H__ */
65,609
481
<reponame>DEVESHTARASIA/tensorflow /* Copyright 2016 The TensorFlow Authors All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ==============================================================================*/ // This checker checks common wrong configurations of operations. // #ifndef THIRD_PARTY_TENSORFLOW_CORE_PROFILER_INTERNAL_ADVISOR_OPERATION_CHECKER_H_ #define THIRD_PARTY_TENSORFLOW_CORE_PROFILER_INTERNAL_ADVISOR_OPERATION_CHECKER_H_ #include "tensorflow/core/profiler/internal/advisor/checker.h" namespace tensorflow { namespace tfprof { class OperationChecker : public Checker { public: string name() const override { return kCheckers[1]; } private: AdviceProto::Checker Check(const AdvisorOptionsProto::CheckerOption& options, const TFStats* stats) override { if (!stats) { fprintf(stderr, "Missing profiles (e.g. graph, run_meta). Skip %s\n", name().c_str()); return reports_; } bool use_batch_norm = false; bool use_fused_batch_norm = false; bool recommend_nchw = false; for (const auto& n : stats->nodes()) { const TFGraphNode* node = n.second.get(); if (node->name().find("BatchNorm") != node->name().npos) { use_batch_norm = true; } if (node->op_types().find("FusedBatchNorm") != node->op_types().end()) { use_fused_batch_norm = true; } if (node->op_attrs().find("data_format") != node->op_attrs().end()) { const AttrValue* attr_val = node->op_attrs().at("data_format"); if (attr_val->s() == "NHWC" && IsPlacedOnAccelerator(node->canonical_device())) { recommend_nchw = true; } } } if (use_batch_norm && !use_fused_batch_norm) { reports_.add_reports( "Maybe use faster FusedBatchNorm instead of BatchNorm"); } if (recommend_nchw) { // TODO(xpan): Maybe print which Op supports NCHW. reports_.add_reports( "Found operation using NHWC data_format on GPU. Maybe " "NCHW is faster."); } return reports_; } private: AdviceProto::Checker reports_; }; } // namespace tfprof } // namespace tensorflow #endif // THIRD_PARTY_TENSORFLOW_CORE_PROFILER_INTERNAL_ADVISOR_OPERATION_CHECKER_H_
1,052
1,652
<filename>redis/redis-console/src/main/java/com/ctrip/xpipe/redis/console/build/ComponentsConfigurator.java package com.ctrip.xpipe.redis.console.build; import com.ctrip.xpipe.redis.console.ds.*; import org.unidal.dal.jdbc.datasource.DataSourceProvider; import org.unidal.lookup.configuration.AbstractResourceConfigurator; import org.unidal.lookup.configuration.Component; import java.util.ArrayList; import java.util.List; /** * @author shyin * * Aug 26, 2016 */ public class ComponentsConfigurator extends AbstractResourceConfigurator { public static final String KEY_XPIPE_LOCATION = "FXXPIPE_HOME"; @Override public List<Component> defineComponents() { List<Component> all = new ArrayList<Component>(); all.addAll(new FxxpipeDatabaseConfigurator().defineComponents()); all.add(C(DataSourceProvider.class, XpipeDataSourceProvider.class) .config(E("datasourceFile").value("datasources.xml"), E("baseDirRef").value(KEY_XPIPE_LOCATION))); all.add(A(XPipeDataSource.class)); return all; } public static void main(String[] args) { generatePlexusComponentsXmlFile(new ComponentsConfigurator()); } }
463
6,034
package cn.iocoder.mall.systemservice.rpc.systemlog.vo; import lombok.Data; import lombok.experimental.Accessors; import java.io.Serializable; import java.util.Date; /** * 系统访问日志 VO */ @Data @Accessors(chain = true) public class SystemAccessLogVO implements Serializable { /** * 编号 */ private Integer id; /** * 用户编号 */ private Integer userId; /** * 用户类型 */ private Integer userType; /** * 链路追踪编号 */ private String traceId; /** * 应用名 */ private String applicationName; /** * 访问地址 */ private String uri; /** * 参数 */ private String queryString; /** * http 方法 */ private String method; /** * userAgent */ private String userAgent; /** * ip */ private String ip; /** * 请求时间 */ private Date startTime; /** * 响应时长 -- 毫秒级 */ private Integer responseTime; /** * 错误码 */ private Integer errorCode; /** * 错误提示 */ private String errorMessage; }
594
3,897
<reponame>adelcrosge1/mbed-os<gh_stars>1000+ /** * @file pwrseq_regs.h * @brief Registers, Bit Masks and Bit Positions for the PWRSEQ Peripheral Module. */ /* **************************************************************************** * Copyright (C) Maxim Integrated Products, Inc., All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publish, distribute, sublicense, * and/or sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL MAXIM INTEGRATED BE LIABLE FOR ANY CLAIM, DAMAGES * OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR * OTHER DEALINGS IN THE SOFTWARE. * * Except as contained in this notice, the name of Maxim Integrated * Products, Inc. shall not be used except as stated in the Maxim Integrated * Products, Inc. Branding Policy. * * The mere transfer of this software does not imply any licenses * of trade secrets, proprietary technology, copyrights, patents, * trademarks, maskwork rights, or any other form of intellectual * property whatsoever. Maxim Integrated Products, Inc. retains all * ownership rights. * * *************************************************************************** */ #ifndef _PWRSEQ_REGS_H_ #define _PWRSEQ_REGS_H_ /* **** Includes **** */ #include <stdint.h> #ifdef __cplusplus extern "C" { #endif #if defined (__ICCARM__) #pragma system_include #endif #if defined (__CC_ARM) #pragma anon_unions #endif /// @cond /* If types are not defined elsewhere (CMSIS) define them here */ #ifndef __IO #define __IO volatile #endif #ifndef __I #define __I volatile const #endif #ifndef __O #define __O volatile #endif /// @endcond /* **** Definitions **** */ /** * @ingroup pwrseq * @defgroup pwrseq_registers PWRSEQ_Registers * @brief Registers, Bit Masks and Bit Positions for the PWRSEQ Peripheral Module. * @details Power Sequencer / Low Power Control Register. */ /** * @ingroup pwrseq_registers * Structure type to access the PWRSEQ Registers. */ typedef struct { __IO uint32_t lp_ctrl; /**< <tt>\b 0x00:</tt> PWRSEQ LP_CTRL Register */ __IO uint32_t lp_wakefl; /**< <tt>\b 0x04:</tt> PWRSEQ LP_WAKEFL Register */ __IO uint32_t lpwk_en; /**< <tt>\b 0x08:</tt> PWRSEQ LPWK_EN Register */ __I uint32_t rsv_0xc_0x3f[13]; __IO uint32_t lpmemsd; /**< <tt>\b 0x40:</tt> PWRSEQ LPMEMSD Register */ } mxc_pwrseq_regs_t; /* Register offsets for module PWRSEQ */ /** * @ingroup pwrseq_registers * @defgroup PWRSEQ_Register_Offsets Register Offsets * @brief PWRSEQ Peripheral Register Offsets from the PWRSEQ Base Peripheral Address. * @{ */ #define MXC_R_PWRSEQ_LP_CTRL ((uint32_t)0x00000000UL) /**< Offset from PWRSEQ Base Address: <tt> 0x0000</tt> */ #define MXC_R_PWRSEQ_LP_WAKEFL ((uint32_t)0x00000004UL) /**< Offset from PWRSEQ Base Address: <tt> 0x0004</tt> */ #define MXC_R_PWRSEQ_LPWK_EN ((uint32_t)0x00000008UL) /**< Offset from PWRSEQ Base Address: <tt> 0x0008</tt> */ #define MXC_R_PWRSEQ_LPMEMSD ((uint32_t)0x00000040UL) /**< Offset from PWRSEQ Base Address: <tt> 0x0040</tt> */ /**@} end of group pwrseq_registers */ /** * @ingroup pwrseq_registers * @defgroup PWRSEQ_LP_CTRL PWRSEQ_LP_CTRL * @brief Low Power Control Register. * @{ */ #define MXC_F_PWRSEQ_LP_CTRL_RAMRET_SEL0_POS 0 /**< LP_CTRL_RAMRET_SEL0 Position */ #define MXC_F_PWRSEQ_LP_CTRL_RAMRET_SEL0 ((uint32_t)(0x1UL << MXC_F_PWRSEQ_LP_CTRL_RAMRET_SEL0_POS)) /**< LP_CTRL_RAMRET_SEL0 Mask */ #define MXC_F_PWRSEQ_LP_CTRL_RAMRET_SEL1_POS 1 /**< LP_CTRL_RAMRET_SEL1 Position */ #define MXC_F_PWRSEQ_LP_CTRL_RAMRET_SEL1 ((uint32_t)(0x1UL << MXC_F_PWRSEQ_LP_CTRL_RAMRET_SEL1_POS)) /**< LP_CTRL_RAMRET_SEL1 Mask */ #define MXC_F_PWRSEQ_LP_CTRL_RAMRET_SEL2_POS 2 /**< LP_CTRL_RAMRET_SEL2 Position */ #define MXC_F_PWRSEQ_LP_CTRL_RAMRET_SEL2 ((uint32_t)(0x1UL << MXC_F_PWRSEQ_LP_CTRL_RAMRET_SEL2_POS)) /**< LP_CTRL_RAMRET_SEL2 Mask */ #define MXC_F_PWRSEQ_LP_CTRL_RAMRET_SEL3_POS 3 /**< LP_CTRL_RAMRET_SEL3 Position */ #define MXC_F_PWRSEQ_LP_CTRL_RAMRET_SEL3 ((uint32_t)(0x1UL << MXC_F_PWRSEQ_LP_CTRL_RAMRET_SEL3_POS)) /**< LP_CTRL_RAMRET_SEL3 Mask */ #define MXC_F_PWRSEQ_LP_CTRL_OVR_POS 4 /**< LP_CTRL_OVR Position */ #define MXC_F_PWRSEQ_LP_CTRL_OVR ((uint32_t)(0x3UL << MXC_F_PWRSEQ_LP_CTRL_OVR_POS)) /**< LP_CTRL_OVR Mask */ #define MXC_V_PWRSEQ_LP_CTRL_OVR_0_9V ((uint32_t)0x0UL) /**< LP_CTRL_OVR_0_9V Value */ #define MXC_S_PWRSEQ_LP_CTRL_OVR_0_9V (MXC_V_PWRSEQ_LP_CTRL_OVR_0_9V << MXC_F_PWRSEQ_LP_CTRL_OVR_POS) /**< LP_CTRL_OVR_0_9V Setting */ #define MXC_V_PWRSEQ_LP_CTRL_OVR_1_0V ((uint32_t)0x1UL) /**< LP_CTRL_OVR_1_0V Value */ #define MXC_S_PWRSEQ_LP_CTRL_OVR_1_0V (MXC_V_PWRSEQ_LP_CTRL_OVR_1_0V << MXC_F_PWRSEQ_LP_CTRL_OVR_POS) /**< LP_CTRL_OVR_1_0V Setting */ #define MXC_V_PWRSEQ_LP_CTRL_OVR_1_1V ((uint32_t)0x2UL) /**< LP_CTRL_OVR_1_1V Value */ #define MXC_S_PWRSEQ_LP_CTRL_OVR_1_1V (MXC_V_PWRSEQ_LP_CTRL_OVR_1_1V << MXC_F_PWRSEQ_LP_CTRL_OVR_POS) /**< LP_CTRL_OVR_1_1V Setting */ #define MXC_F_PWRSEQ_LP_CTRL_VCORE_DET_BYPASS_POS 6 /**< LP_CTRL_VCORE_DET_BYPASS Position */ #define MXC_F_PWRSEQ_LP_CTRL_VCORE_DET_BYPASS ((uint32_t)(0x1UL << MXC_F_PWRSEQ_LP_CTRL_VCORE_DET_BYPASS_POS)) /**< LP_CTRL_VCORE_DET_BYPASS Mask */ #define MXC_F_PWRSEQ_LP_CTRL_RETREG_EN_POS 8 /**< LP_CTRL_RETREG_EN Position */ #define MXC_F_PWRSEQ_LP_CTRL_RETREG_EN ((uint32_t)(0x1UL << MXC_F_PWRSEQ_LP_CTRL_RETREG_EN_POS)) /**< LP_CTRL_RETREG_EN Mask */ #define MXC_F_PWRSEQ_LP_CTRL_FAST_WK_EN_POS 10 /**< LP_CTRL_FAST_WK_EN Position */ #define MXC_F_PWRSEQ_LP_CTRL_FAST_WK_EN ((uint32_t)(0x1UL << MXC_F_PWRSEQ_LP_CTRL_FAST_WK_EN_POS)) /**< LP_CTRL_FAST_WK_EN Mask */ #define MXC_F_PWRSEQ_LP_CTRL_BG_OFF_POS 11 /**< LP_CTRL_BG_OFF Position */ #define MXC_F_PWRSEQ_LP_CTRL_BG_OFF ((uint32_t)(0x1UL << MXC_F_PWRSEQ_LP_CTRL_BG_OFF_POS)) /**< LP_CTRL_BG_OFF Mask */ #define MXC_F_PWRSEQ_LP_CTRL_VCORE_POR_DIS_POS 12 /**< LP_CTRL_VCORE_POR_DIS Position */ #define MXC_F_PWRSEQ_LP_CTRL_VCORE_POR_DIS ((uint32_t)(0x1UL << MXC_F_PWRSEQ_LP_CTRL_VCORE_POR_DIS_POS)) /**< LP_CTRL_VCORE_POR_DIS Mask */ #define MXC_F_PWRSEQ_LP_CTRL_LDO_DIS_POS 16 /**< LP_CTRL_LDO_DIS Position */ #define MXC_F_PWRSEQ_LP_CTRL_LDO_DIS ((uint32_t)(0x1UL << MXC_F_PWRSEQ_LP_CTRL_LDO_DIS_POS)) /**< LP_CTRL_LDO_DIS Mask */ #define MXC_F_PWRSEQ_LP_CTRL_VCORE_SVM_DIS_POS 20 /**< LP_CTRL_VCORE_SVM_DIS Position */ #define MXC_F_PWRSEQ_LP_CTRL_VCORE_SVM_DIS ((uint32_t)(0x1UL << MXC_F_PWRSEQ_LP_CTRL_VCORE_SVM_DIS_POS)) /**< LP_CTRL_VCORE_SVM_DIS Mask */ #define MXC_F_PWRSEQ_LP_CTRL_VDDIO_POR_DIS_POS 25 /**< LP_CTRL_VDDIO_POR_DIS Position */ #define MXC_F_PWRSEQ_LP_CTRL_VDDIO_POR_DIS ((uint32_t)(0x1UL << MXC_F_PWRSEQ_LP_CTRL_VDDIO_POR_DIS_POS)) /**< LP_CTRL_VDDIO_POR_DIS Mask */ /**@} end of group PWRSEQ_LP_CTRL_Register */ /** * @ingroup pwrseq_registers * @defgroup PWRSEQ_LP_WAKEFL PWRSEQ_LP_WAKEFL * @brief Low Power Mode Wakeup Flags for GPIO0 * @{ */ #define MXC_F_PWRSEQ_LP_WAKEFL_WAKEST_POS 0 /**< LP_WAKEFL_WAKEST Position */ #define MXC_F_PWRSEQ_LP_WAKEFL_WAKEST ((uint32_t)(0x3FFFUL << MXC_F_PWRSEQ_LP_WAKEFL_WAKEST_POS)) /**< LP_WAKEFL_WAKEST Mask */ /**@} end of group PWRSEQ_LP_WAKEFL_Register */ /** * @ingroup pwrseq_registers * @defgroup PWRSEQ_LPWK_EN PWRSEQ_LPWK_EN * @brief Low Power I/O Wakeup Enable Register 0. This register enables low power wakeup * functionality for GPIO0. * @{ */ #define MXC_F_PWRSEQ_LPWK_EN_WAKEEN_POS 0 /**< LPWK_EN_WAKEEN Position */ #define MXC_F_PWRSEQ_LPWK_EN_WAKEEN ((uint32_t)(0x3FFFUL << MXC_F_PWRSEQ_LPWK_EN_WAKEEN_POS)) /**< LPWK_EN_WAKEEN Mask */ /**@} end of group PWRSEQ_LPWK_EN_Register */ /** * @ingroup pwrseq_registers * @defgroup PWRSEQ_LPMEMSD PWRSEQ_LPMEMSD * @brief Low Power Memory Shutdown Control. * @{ */ #define MXC_F_PWRSEQ_LPMEMSD_SRAM0_OFF_POS 0 /**< LPMEMSD_SRAM0_OFF Position */ #define MXC_F_PWRSEQ_LPMEMSD_SRAM0_OFF ((uint32_t)(0x1UL << MXC_F_PWRSEQ_LPMEMSD_SRAM0_OFF_POS)) /**< LPMEMSD_SRAM0_OFF Mask */ #define MXC_F_PWRSEQ_LPMEMSD_SRAM1_OFF_POS 1 /**< LPMEMSD_SRAM1_OFF Position */ #define MXC_F_PWRSEQ_LPMEMSD_SRAM1_OFF ((uint32_t)(0x1UL << MXC_F_PWRSEQ_LPMEMSD_SRAM1_OFF_POS)) /**< LPMEMSD_SRAM1_OFF Mask */ #define MXC_F_PWRSEQ_LPMEMSD_SRAM2_OFF_POS 2 /**< LPMEMSD_SRAM2_OFF Position */ #define MXC_F_PWRSEQ_LPMEMSD_SRAM2_OFF ((uint32_t)(0x1UL << MXC_F_PWRSEQ_LPMEMSD_SRAM2_OFF_POS)) /**< LPMEMSD_SRAM2_OFF Mask */ #define MXC_F_PWRSEQ_LPMEMSD_SRAM3_OFF_POS 3 /**< LPMEMSD_SRAM3_OFF Position */ #define MXC_F_PWRSEQ_LPMEMSD_SRAM3_OFF ((uint32_t)(0x1UL << MXC_F_PWRSEQ_LPMEMSD_SRAM3_OFF_POS)) /**< LPMEMSD_SRAM3_OFF Mask */ /**@} end of group PWRSEQ_LPMEMSD_Register */ #ifdef __cplusplus } #endif #endif /* _PWRSEQ_REGS_H_ */
4,949
852
''' Created on Jun 26, 2013 @author: <NAME> @contact: <EMAIL> http://cmsdoxy.web.cern.ch/cmsdoxy/dataformats/ @responsible: ''' json = { "full": { "title": "RecoLocalTracker collections (in RECO and AOD)", "data": [ { "instance": "siPixelDigis", "container": "DetIdedmEDCollection", "desc": "No documentation" }, { "instance": "siStripDigis", "container": "DetIdedmEDCollection", "desc": "No documentation" }, { "instance": "siStripClusters", "container": "*", "desc": "No documentation" }, { "instance": "siPixelClusters", "container": "*", "desc": "No documentation" } ] }, "aod": { "title": "RecoLocalTracker collections (in AOD only)", "data": [ ] }, "reco": { "title": "RecoLocalTracker collections (in RECO only)", "data": [ { "instance": "siPixelDigis", "container": "DetIdedmEDCollection", "desc": "No documentation" }, { "instance": "siStripDigis", "container": "DetIdedmEDCollection", "desc": "No documentation" }, { "instance": "siStripClusters", "container": "*", "desc": "No documentation" }, { "instance": "siPixelClusters", "container": "*", "desc": "No documentation" } ] } }
724
454
<gh_stars>100-1000 /* * This file is generated by jOOQ. */ package cn.vertxup.erp.domain.tables.pojos; import cn.vertxup.erp.domain.tables.interfaces.IEEmployee; import io.github.jklingsporn.vertx.jooq.shared.internal.VertxPojo; import java.time.LocalDateTime; import static io.github.jklingsporn.vertx.jooq.shared.internal.VertxPojo.*; /** * This class is generated by jOOQ. */ @SuppressWarnings({ "all", "unchecked", "rawtypes" }) public class EEmployee implements VertxPojo, IEEmployee { private static final long serialVersionUID = 1L; private String key; private String companyId; private String deptId; private String teamId; private String identityId; private String viceName; private String viceEmail; private String viceMobile; private String workNumber; private String workTitle; private String workLocation; private String workPhone; private String workExtension; private String type; private String metadata; private Boolean active; private String sigma; private String language; private LocalDateTime createdAt; private String createdBy; private LocalDateTime updatedAt; private String updatedBy; public EEmployee() {} public EEmployee(IEEmployee value) { this.key = value.getKey(); this.companyId = value.getCompanyId(); this.deptId = value.getDeptId(); this.teamId = value.getTeamId(); this.identityId = value.getIdentityId(); this.viceName = value.getViceName(); this.viceEmail = value.getViceEmail(); this.viceMobile = value.getViceMobile(); this.workNumber = value.getWorkNumber(); this.workTitle = value.getWorkTitle(); this.workLocation = value.getWorkLocation(); this.workPhone = value.getWorkPhone(); this.workExtension = value.getWorkExtension(); this.type = value.getType(); this.metadata = value.getMetadata(); this.active = value.getActive(); this.sigma = value.getSigma(); this.language = value.getLanguage(); this.createdAt = value.getCreatedAt(); this.createdBy = value.getCreatedBy(); this.updatedAt = value.getUpdatedAt(); this.updatedBy = value.getUpdatedBy(); } public EEmployee( String key, String companyId, String deptId, String teamId, String identityId, String viceName, String viceEmail, String viceMobile, String workNumber, String workTitle, String workLocation, String workPhone, String workExtension, String type, String metadata, Boolean active, String sigma, String language, LocalDateTime createdAt, String createdBy, LocalDateTime updatedAt, String updatedBy ) { this.key = key; this.companyId = companyId; this.deptId = deptId; this.teamId = teamId; this.identityId = identityId; this.viceName = viceName; this.viceEmail = viceEmail; this.viceMobile = viceMobile; this.workNumber = workNumber; this.workTitle = workTitle; this.workLocation = workLocation; this.workPhone = workPhone; this.workExtension = workExtension; this.type = type; this.metadata = metadata; this.active = active; this.sigma = sigma; this.language = language; this.createdAt = createdAt; this.createdBy = createdBy; this.updatedAt = updatedAt; this.updatedBy = updatedBy; } public EEmployee(io.vertx.core.json.JsonObject json) { this(); fromJson(json); } /** * Getter for <code>DB_ETERNAL.E_EMPLOYEE.KEY</code>. 「key」- 员工主键 */ @Override public String getKey() { return this.key; } /** * Setter for <code>DB_ETERNAL.E_EMPLOYEE.KEY</code>. 「key」- 员工主键 */ @Override public EEmployee setKey(String key) { this.key = key; return this; } /** * Getter for <code>DB_ETERNAL.E_EMPLOYEE.COMPANY_ID</code>. 「companyId」- * 所属公司 */ @Override public String getCompanyId() { return this.companyId; } /** * Setter for <code>DB_ETERNAL.E_EMPLOYEE.COMPANY_ID</code>. 「companyId」- * 所属公司 */ @Override public EEmployee setCompanyId(String companyId) { this.companyId = companyId; return this; } /** * Getter for <code>DB_ETERNAL.E_EMPLOYEE.DEPT_ID</code>. 「deptId」- 所属部门 */ @Override public String getDeptId() { return this.deptId; } /** * Setter for <code>DB_ETERNAL.E_EMPLOYEE.DEPT_ID</code>. 「deptId」- 所属部门 */ @Override public EEmployee setDeptId(String deptId) { this.deptId = deptId; return this; } /** * Getter for <code>DB_ETERNAL.E_EMPLOYEE.TEAM_ID</code>. 「teamId」- 所属组 */ @Override public String getTeamId() { return this.teamId; } /** * Setter for <code>DB_ETERNAL.E_EMPLOYEE.TEAM_ID</code>. 「teamId」- 所属组 */ @Override public EEmployee setTeamId(String teamId) { this.teamId = teamId; return this; } /** * Getter for <code>DB_ETERNAL.E_EMPLOYEE.IDENTITY_ID</code>. 「identityId」- * 关联档案 */ @Override public String getIdentityId() { return this.identityId; } /** * Setter for <code>DB_ETERNAL.E_EMPLOYEE.IDENTITY_ID</code>. 「identityId」- * 关联档案 */ @Override public EEmployee setIdentityId(String identityId) { this.identityId = identityId; return this; } /** * Getter for <code>DB_ETERNAL.E_EMPLOYEE.VICE_NAME</code>. 「viceName」- 员工姓名 */ @Override public String getViceName() { return this.viceName; } /** * Setter for <code>DB_ETERNAL.E_EMPLOYEE.VICE_NAME</code>. 「viceName」- 员工姓名 */ @Override public EEmployee setViceName(String viceName) { this.viceName = viceName; return this; } /** * Getter for <code>DB_ETERNAL.E_EMPLOYEE.VICE_EMAIL</code>. 「viceEmail」- * 员工邮箱 */ @Override public String getViceEmail() { return this.viceEmail; } /** * Setter for <code>DB_ETERNAL.E_EMPLOYEE.VICE_EMAIL</code>. 「viceEmail」- * 员工邮箱 */ @Override public EEmployee setViceEmail(String viceEmail) { this.viceEmail = viceEmail; return this; } /** * Getter for <code>DB_ETERNAL.E_EMPLOYEE.VICE_MOBILE</code>. 「viceMobile」- * 员工手机 */ @Override public String getViceMobile() { return this.viceMobile; } /** * Setter for <code>DB_ETERNAL.E_EMPLOYEE.VICE_MOBILE</code>. 「viceMobile」- * 员工手机 */ @Override public EEmployee setViceMobile(String viceMobile) { this.viceMobile = viceMobile; return this; } /** * Getter for <code>DB_ETERNAL.E_EMPLOYEE.WORK_NUMBER</code>. 「workNumber」- * 工号 */ @Override public String getWorkNumber() { return this.workNumber; } /** * Setter for <code>DB_ETERNAL.E_EMPLOYEE.WORK_NUMBER</code>. 「workNumber」- * 工号 */ @Override public EEmployee setWorkNumber(String workNumber) { this.workNumber = workNumber; return this; } /** * Getter for <code>DB_ETERNAL.E_EMPLOYEE.WORK_TITLE</code>. 「workTitle」- 头衔 */ @Override public String getWorkTitle() { return this.workTitle; } /** * Setter for <code>DB_ETERNAL.E_EMPLOYEE.WORK_TITLE</code>. 「workTitle」- 头衔 */ @Override public EEmployee setWorkTitle(String workTitle) { this.workTitle = workTitle; return this; } /** * Getter for <code>DB_ETERNAL.E_EMPLOYEE.WORK_LOCATION</code>. * 「workLocation」- 办公地点 */ @Override public String getWorkLocation() { return this.workLocation; } /** * Setter for <code>DB_ETERNAL.E_EMPLOYEE.WORK_LOCATION</code>. * 「workLocation」- 办公地点 */ @Override public EEmployee setWorkLocation(String workLocation) { this.workLocation = workLocation; return this; } /** * Getter for <code>DB_ETERNAL.E_EMPLOYEE.WORK_PHONE</code>. 「workPhone」- * 办公电话 */ @Override public String getWorkPhone() { return this.workPhone; } /** * Setter for <code>DB_ETERNAL.E_EMPLOYEE.WORK_PHONE</code>. 「workPhone」- * 办公电话 */ @Override public EEmployee setWorkPhone(String workPhone) { this.workPhone = workPhone; return this; } /** * Getter for <code>DB_ETERNAL.E_EMPLOYEE.WORK_EXTENSION</code>. * 「workExtension」- 分机号 */ @Override public String getWorkExtension() { return this.workExtension; } /** * Setter for <code>DB_ETERNAL.E_EMPLOYEE.WORK_EXTENSION</code>. * 「workExtension」- 分机号 */ @Override public EEmployee setWorkExtension(String workExtension) { this.workExtension = workExtension; return this; } /** * Getter for <code>DB_ETERNAL.E_EMPLOYEE.TYPE</code>. 「type」- 员工分类 */ @Override public String getType() { return this.type; } /** * Setter for <code>DB_ETERNAL.E_EMPLOYEE.TYPE</code>. 「type」- 员工分类 */ @Override public EEmployee setType(String type) { this.type = type; return this; } /** * Getter for <code>DB_ETERNAL.E_EMPLOYEE.METADATA</code>. 「metadata」- 附加配置 */ @Override public String getMetadata() { return this.metadata; } /** * Setter for <code>DB_ETERNAL.E_EMPLOYEE.METADATA</code>. 「metadata」- 附加配置 */ @Override public EEmployee setMetadata(String metadata) { this.metadata = metadata; return this; } /** * Getter for <code>DB_ETERNAL.E_EMPLOYEE.ACTIVE</code>. 「active」- 是否启用 */ @Override public Boolean getActive() { return this.active; } /** * Setter for <code>DB_ETERNAL.E_EMPLOYEE.ACTIVE</code>. 「active」- 是否启用 */ @Override public EEmployee setActive(Boolean active) { this.active = active; return this; } /** * Getter for <code>DB_ETERNAL.E_EMPLOYEE.SIGMA</code>. 「sigma」- * 统一标识(公司所属应用) */ @Override public String getSigma() { return this.sigma; } /** * Setter for <code>DB_ETERNAL.E_EMPLOYEE.SIGMA</code>. 「sigma」- * 统一标识(公司所属应用) */ @Override public EEmployee setSigma(String sigma) { this.sigma = sigma; return this; } /** * Getter for <code>DB_ETERNAL.E_EMPLOYEE.LANGUAGE</code>. 「language」- 使用的语言 */ @Override public String getLanguage() { return this.language; } /** * Setter for <code>DB_ETERNAL.E_EMPLOYEE.LANGUAGE</code>. 「language」- 使用的语言 */ @Override public EEmployee setLanguage(String language) { this.language = language; return this; } /** * Getter for <code>DB_ETERNAL.E_EMPLOYEE.CREATED_AT</code>. 「createdAt」- * 创建时间 */ @Override public LocalDateTime getCreatedAt() { return this.createdAt; } /** * Setter for <code>DB_ETERNAL.E_EMPLOYEE.CREATED_AT</code>. 「createdAt」- * 创建时间 */ @Override public EEmployee setCreatedAt(LocalDateTime createdAt) { this.createdAt = createdAt; return this; } /** * Getter for <code>DB_ETERNAL.E_EMPLOYEE.CREATED_BY</code>. 「createdBy」- * 创建人 */ @Override public String getCreatedBy() { return this.createdBy; } /** * Setter for <code>DB_ETERNAL.E_EMPLOYEE.CREATED_BY</code>. 「createdBy」- * 创建人 */ @Override public EEmployee setCreatedBy(String createdBy) { this.createdBy = createdBy; return this; } /** * Getter for <code>DB_ETERNAL.E_EMPLOYEE.UPDATED_AT</code>. 「updatedAt」- * 更新时间 */ @Override public LocalDateTime getUpdatedAt() { return this.updatedAt; } /** * Setter for <code>DB_ETERNAL.E_EMPLOYEE.UPDATED_AT</code>. 「updatedAt」- * 更新时间 */ @Override public EEmployee setUpdatedAt(LocalDateTime updatedAt) { this.updatedAt = updatedAt; return this; } /** * Getter for <code>DB_ETERNAL.E_EMPLOYEE.UPDATED_BY</code>. 「updatedBy」- * 更新人 */ @Override public String getUpdatedBy() { return this.updatedBy; } /** * Setter for <code>DB_ETERNAL.E_EMPLOYEE.UPDATED_BY</code>. 「updatedBy」- * 更新人 */ @Override public EEmployee setUpdatedBy(String updatedBy) { this.updatedBy = updatedBy; return this; } @Override public String toString() { StringBuilder sb = new StringBuilder("EEmployee ("); sb.append(key); sb.append(", ").append(companyId); sb.append(", ").append(deptId); sb.append(", ").append(teamId); sb.append(", ").append(identityId); sb.append(", ").append(viceName); sb.append(", ").append(viceEmail); sb.append(", ").append(viceMobile); sb.append(", ").append(workNumber); sb.append(", ").append(workTitle); sb.append(", ").append(workLocation); sb.append(", ").append(workPhone); sb.append(", ").append(workExtension); sb.append(", ").append(type); sb.append(", ").append(metadata); sb.append(", ").append(active); sb.append(", ").append(sigma); sb.append(", ").append(language); sb.append(", ").append(createdAt); sb.append(", ").append(createdBy); sb.append(", ").append(updatedAt); sb.append(", ").append(updatedBy); sb.append(")"); return sb.toString(); } // ------------------------------------------------------------------------- // FROM and INTO // ------------------------------------------------------------------------- @Override public void from(IEEmployee from) { setKey(from.getKey()); setCompanyId(from.getCompanyId()); setDeptId(from.getDeptId()); setTeamId(from.getTeamId()); setIdentityId(from.getIdentityId()); setViceName(from.getViceName()); setViceEmail(from.getViceEmail()); setViceMobile(from.getViceMobile()); setWorkNumber(from.getWorkNumber()); setWorkTitle(from.getWorkTitle()); setWorkLocation(from.getWorkLocation()); setWorkPhone(from.getWorkPhone()); setWorkExtension(from.getWorkExtension()); setType(from.getType()); setMetadata(from.getMetadata()); setActive(from.getActive()); setSigma(from.getSigma()); setLanguage(from.getLanguage()); setCreatedAt(from.getCreatedAt()); setCreatedBy(from.getCreatedBy()); setUpdatedAt(from.getUpdatedAt()); setUpdatedBy(from.getUpdatedBy()); } @Override public <E extends IEEmployee> E into(E into) { into.from(this); return into; } }
7,549
1,080
#------------------------------------------------------------------------------ # Copyright (c) 2019, Nucleic Development Team. # # Distributed under the terms of the Modified BSD License. # # The full license is in the file LICENSE, distributed with this software. #------------------------------------------------------------------------------ import pytest import random from textwrap import dedent from utils import compile_source, is_qt_available, wait_for_window_displayed from enaml.core.api import Looper from enaml.widgets.api import Label @pytest.mark.skipif(not is_qt_available(), reason='Requires a Qt binding') def test_looper_refresh(enaml_qtbot, enaml_sleep): """ Test that the loop index is valid when items are reordered. """ source = dedent("""\ from enaml.core.api import Looper from enaml.widgets.api import Window, Container, Label, PushButton enamldef Main(Window): window: attr data: list = [] alias container Container: container: Looper: iterable << window.data Label: text << '{} {}'.format(loop.index, loop.item) """) tester = compile_source(source, 'Main')() tester.show() wait_for_window_displayed(enaml_qtbot, tester) for data in ( # Set initial ['a', 'b', 'c'], # Resort order data and ensure it matches ['b', 'c', 'a'], # Remove and resort ensure it still matches ['a', 'b'] ): enaml_qtbot.wait(enaml_sleep) tester.data = data expected = ['{} {}'.format(*it) for it in enumerate(data)] assert [c.text for c in tester.container.children if isinstance(c, Label)] == expected @pytest.mark.skipif(not is_qt_available(), reason='Requires a Qt binding') def test_looper_refresh_iterator(enaml_qtbot, enaml_sleep): """ Test that a looper properly refreshes when given an iterator. """ source = dedent("""\ from enaml.core.api import Looper, Conditional from enaml.widgets.api import Window, Container, Label, ObjectCombo enamldef Main(Window): window: attr data: list = [] attr flag: str = 'a' attr show_more: bool << flag == 'b' or flag == 'c' alias container Container: container: ObjectCombo: combo: items = ['a', 'b', 'c'] selected := window.flag Conditional: condition << show_more # Nested loop forces re-eval twice Conditional: condition << flag == 'c' Looper: iterable << reversed(data) Label: text << '{} {}'.format(loop.index, loop.item) """) tester = compile_source(source, 'Main')() tester.show() wait_for_window_displayed(enaml_qtbot, tester) enaml_qtbot.wait(enaml_sleep) data = [1, 2, 3] tester.data = data # Conditional is still hiding it assert not any( c for c in tester.container.children if isinstance(c, Label)) # Now they should all be shown tester.flag = 'c' enaml_qtbot.wait(enaml_sleep) expected = ['{} {}'.format(*it) for it in enumerate(reversed(data))] assert [c.text for c in tester.container.children if isinstance(c, Label)] == expected def test_looper_iterable(enaml_qtbot, enaml_sleep): """ Test that a looper validates the iterator properly. """ from enaml.core.api import Looper looper = Looper() looper.iterable = {1, 2, 3} looper.iterable = {'a': 1, 'b': 2} looper.iterable = 'abc' with pytest.raises(TypeError): looper.iterable = 1 with pytest.raises(TypeError): looper.iterable = None
1,641