hexsha
stringlengths
40
40
size
int64
5
1.05M
ext
stringclasses
98 values
lang
stringclasses
21 values
max_stars_repo_path
stringlengths
3
945
max_stars_repo_name
stringlengths
4
118
max_stars_repo_head_hexsha
stringlengths
40
78
max_stars_repo_licenses
listlengths
1
10
max_stars_count
int64
1
368k
max_stars_repo_stars_event_min_datetime
stringlengths
24
24
max_stars_repo_stars_event_max_datetime
stringlengths
24
24
max_issues_repo_path
stringlengths
3
945
max_issues_repo_name
stringlengths
4
118
max_issues_repo_head_hexsha
stringlengths
40
78
max_issues_repo_licenses
listlengths
1
10
max_issues_count
int64
1
134k
max_issues_repo_issues_event_min_datetime
stringlengths
24
24
max_issues_repo_issues_event_max_datetime
stringlengths
24
24
max_forks_repo_path
stringlengths
3
945
max_forks_repo_name
stringlengths
4
135
max_forks_repo_head_hexsha
stringlengths
40
78
max_forks_repo_licenses
listlengths
1
10
max_forks_count
int64
1
105k
max_forks_repo_forks_event_min_datetime
stringlengths
24
24
max_forks_repo_forks_event_max_datetime
stringlengths
24
24
content
stringlengths
5
1.05M
avg_line_length
float64
1
1.03M
max_line_length
int64
2
1.03M
alphanum_fraction
float64
0
1
ddd4bf679e1605b13b5f42799af6446722472659
470
php
PHP
resources/views/layouts/auth/partials/footer.blade.php
mishajib/FYP
21e86d30b2dddada85e29e2a1a34bda1ad5311d0
[ "MIT" ]
null
null
null
resources/views/layouts/auth/partials/footer.blade.php
mishajib/FYP
21e86d30b2dddada85e29e2a1a34bda1ad5311d0
[ "MIT" ]
6
2021-02-03T02:15:57.000Z
2022-02-27T09:58:12.000Z
resources/views/layouts/auth/partials/footer.blade.php
mishajib/FYP
21e86d30b2dddada85e29e2a1a34bda1ad5311d0
[ "MIT" ]
null
null
null
<!-- jQuery --> <script src="{{ asset('assets/backend/js/jquery.min.js') }}"></script> <!-- Bootstrap 4 --> <script src="{{ asset('assets/backend/js/bootstrap.bundle.min.js') }}"></script> <!-- AdminLTE App --> <script src="{{ asset('assets/backend/js/adminlte.min.js') }}"></script> <script src="{{ asset('assets/backend/js/sweetalert2@9.js') }}"></script> @include('sweetalert::alert') @include('notify::messages') @notifyJs @include("layouts.errors") </body> </html>
33.571429
80
0.646809
84b61eb65f0cb2a0e222ec01551b9669f331651d
1,782
h
C
YmsCoreBluetooth/YMSCBDescriptor.h
TileCorporation/YmsCoreBluetooth
0017f25fe6f107ceccb4affb1e545c49768ba59f
[ "Apache-2.0" ]
1
2019-12-13T06:04:32.000Z
2019-12-13T06:04:32.000Z
YmsCoreBluetooth/YMSCBDescriptor.h
TileCorporation/YmsCoreBluetooth
0017f25fe6f107ceccb4affb1e545c49768ba59f
[ "Apache-2.0" ]
null
null
null
YmsCoreBluetooth/YMSCBDescriptor.h
TileCorporation/YmsCoreBluetooth
0017f25fe6f107ceccb4affb1e545c49768ba59f
[ "Apache-2.0" ]
1
2019-12-13T06:04:56.000Z
2019-12-13T06:04:56.000Z
// // Copyright 2013-2015 Yummy Melon Software 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. // // Author: Charles Y. Choi <charles.choi@yummymelon.com> // @import Foundation; @import CoreBluetooth; #import "YMSCBUtils.h" NS_ASSUME_NONNULL_BEGIN @class YMSCBCharacteristic; @class YMSCBDescriptor; @protocol YMSCBCharacteristicInterface; @protocol YMSCBDescriptorInterface @property(readonly, nonatomic) CBUUID *UUID; @property(assign, readonly, nonatomic) id<YMSCBCharacteristicInterface> characteristicInterface; @property(retain, readonly) id value; @end @class YMSCBPeripheral; /** * Base class for defining a Bluetooth LE descriptor. */ @interface YMSCBDescriptor : NSObject /// Pointer to actual CBDescriptor @property (atomic, strong) id<YMSCBDescriptorInterface> descriptorInterface; // TODO: define constructor with id<YMSCBDescriptorInterface> /// Descriptor UUID @property(readonly, nonatomic, nullable) CBUUID *UUID; @property(retain, readonly, nullable) id value; @property (nonatomic, strong, nullable) id<YMSCBLogging> logger; // TODO: need to make constructor //- (instancetype)initWithName:(NSString *)oName parent:(YMSCBCharacteristic *)ct uuid:(CBUUID *)oUUID offset:(int)addrOffset; //- (void)reset; NS_ASSUME_NONNULL_END @end
27
126
0.769921
183c443c7190ec12e6b17253918cc62d2b225471
593
asm
Assembly
programs/oeis/173/A173740.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
programs/oeis/173/A173740.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
programs/oeis/173/A173740.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
; A173740: Triangle T(n,k) = binomial(n,k) + 2 for 1 <= k <= n - 1, n >= 2, and T(n,0) = T(n,n) = 1 for n >= 0, read by rows. ; 1,1,1,1,4,1,1,5,5,1,1,6,8,6,1,1,7,12,12,7,1,1,8,17,22,17,8,1,1,9,23,37,37,23,9,1,1,10,30,58,72,58,30,10,1,1,11,38,86,128,128,86,38,11,1,1,12,47,122,212,254,212,122,47,12,1,1,13,57,167,332,464,464,332,167,57,13,1 cal $0,206735 ; Triangle T(n,k), read by rows, given by (0, 2, -1/2, 1/2, 0, 0, 0, 0, 0, 0, 0, ...) DELTA (1, 0, -1/2, 1/2, 0, 0, 0, 0, 0, 0, 0, ...) where DELTA is the operator defined in A084938. add $0,1 lpb $0,1 mov $1,$0 mod $0,3 lpe add $1,1
53.909091
213
0.561551
020b62915b325b568edd76dcbc8c2284a7c0d65b
3,533
swift
Swift
ChessEngine/Source/Checkboard/CheckboardViewModel.swift
DarthRumata/ChessEngine
381677b6094829b9ff6f4387da4bb0a8a62d0d39
[ "MIT" ]
1
2021-02-09T06:19:42.000Z
2021-02-09T06:19:42.000Z
ChessEngine/Source/Checkboard/CheckboardViewModel.swift
DarthRumata/ChessEngine
381677b6094829b9ff6f4387da4bb0a8a62d0d39
[ "MIT" ]
null
null
null
ChessEngine/Source/Checkboard/CheckboardViewModel.swift
DarthRumata/ChessEngine
381677b6094829b9ff6f4387da4bb0a8a62d0d39
[ "MIT" ]
null
null
null
// // CheckboardViewModel.swift // ChessEngine // // Created by Stas Kirichok on 27.01.2021. // import Combine class CheckboardViewModel { private let checkboard: Checkboard private var moveInProgress: AvailableMove? var checkboardInfoPublisher: AnyPublisher<CheckboardValue, Never> { return checkboardInfoSubject.eraseToAnyPublisher() } var availableMovesPublisher: AnyPublisher<[AvailableMove], Never> { return availableMovesSubject.eraseToAnyPublisher() } var moveResultPublisher: AnyPublisher<AppliedMove, Never> { return moveResultSubject.eraseToAnyPublisher() } var shouldSelectPromotionPublisher: AnyPublisher<[PieceKind], Never> { return shouldSelectPromotionSubject.eraseToAnyPublisher() } private(set) lazy var onSelectPiece = AnySubscriber<String, Never>(receiveValue: { [weak self] pieceId in guard let strongSelf = self else { return .unlimited } switch strongSelf.checkboard.situation { case .stalemate, .checkmate: return .unlimited default: break } if let piece = strongSelf.checkboard.pieceValue(withId: pieceId), strongSelf.checkboard.canMovePiece(piece) { let moves = strongSelf.checkboard.availableMoves(for: piece) strongSelf.availableMovesSubject.send(moves) } return .unlimited }) private(set) lazy var onMoveSelectedPiece = AnySubscriber<AvailableMove, Never>(receiveValue: { [weak self] move in guard let strongSelf = self else { return .none } strongSelf.moveInProgress = move if case .promotion = move.type { strongSelf.shouldSelectPromotionSubject.send(strongSelf.checkboard.pawnPromotionKinds) return .none } strongSelf.applyCurrentMove() return .unlimited }) private(set) lazy var onSelectPromotion = AnySubscriber<PieceKind, Never>(receiveValue: { [weak self] kind in guard let strongSelf = self, var currentMove = strongSelf.moveInProgress else { return .none } let updatedMove = currentMove.updatedWithPromotion(kind) strongSelf.moveInProgress = updatedMove strongSelf.applyCurrentMove() return .unlimited }) private let checkboardInfoSubject = PassthroughSubject<CheckboardValue, Never>() private let availableMovesSubject = PassthroughSubject<[AvailableMove], Never>() private let moveResultSubject = PassthroughSubject<AppliedMove, Never>() private let shouldSelectPromotionSubject = PassthroughSubject<[PieceKind], Never>() init() { checkboard = Checkboard() } func startNewGame() { checkboard.generate() let info = CheckboardValue( rowCount: checkboard.rowCount, columnCount: checkboard.columnCount, pieces: checkboard.pieces.reduce(into: [:], { (result, piece) in result[piece.position] = piece.immutableValue }) ) checkboardInfoSubject.send(info) } private func applyCurrentMove() { guard let currentMove = moveInProgress else { return } do { let result = try checkboard.applyMove(currentMove) self.moveInProgress = nil moveResultSubject.send(result) } catch let error { print(error) } } }
33.971154
119
0.64591
a1b44643da2f927985d016d7ee97ebea51ca88a3
1,437
h
C
ash/display/root_window_transformers.h
google-ar/chromium
2441c86a5fd975f09a6c30cddb57dfb7fc239699
[ "Apache-2.0", "BSD-3-Clause-No-Nuclear-License-2014", "BSD-3-Clause" ]
2,151
2020-04-18T07:31:17.000Z
2022-03-31T08:39:18.000Z
ash/display/root_window_transformers.h
harrymarkovskiy/WebARonARCore
2441c86a5fd975f09a6c30cddb57dfb7fc239699
[ "Apache-2.0", "BSD-3-Clause-No-Nuclear-License-2014", "BSD-3-Clause" ]
395
2020-04-18T08:22:18.000Z
2021-12-08T13:04:49.000Z
ash/display/root_window_transformers.h
harrymarkovskiy/WebARonARCore
2441c86a5fd975f09a6c30cddb57dfb7fc239699
[ "Apache-2.0", "BSD-3-Clause-No-Nuclear-License-2014", "BSD-3-Clause" ]
338
2020-04-18T08:03:10.000Z
2022-03-29T12:33:22.000Z
// Copyright (c) 2013 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef ASH_DISPLAY_ROOT_WINDOW_TRANSFORMERS_H_ #define ASH_DISPLAY_ROOT_WINDOW_TRANSFORMERS_H_ #include "ash/ash_export.h" namespace aura { class Window; } namespace display { class Display; class ManagedDisplayInfo; } namespace gfx { class Rect; } namespace ash { class RootWindowTransformer; ASH_EXPORT RootWindowTransformer* CreateRootWindowTransformerForDisplay( aura::Window* root, const display::Display& display); // Creates a RootWindowTransformers for mirror root window. // |source_display_info| specifies the display being mirrored, // and |mirror_display_info| specifies the display used to // mirror the content. ASH_EXPORT RootWindowTransformer* CreateRootWindowTransformerForMirroredDisplay( const display::ManagedDisplayInfo& source_display_info, const display::ManagedDisplayInfo& mirror_display_info); // Creates a RootWindowTransformers for unified desktop mode. // |screen_bounds| specifies the unified desktop's bounds and // |display| specifies the display used to mirror the unified desktop. ASH_EXPORT RootWindowTransformer* CreateRootWindowTransformerForUnifiedDesktop( const gfx::Rect& screen_bounds, const display::Display& display); } // namespace ash #endif // ASH_DISPLAY_ROOT_WINDOW_TRANSFORMERS_H_
29.9375
80
0.802366
fb03299e51093fc213cd2ac7b630a9c658f1501c
3,306
php
PHP
views/cadastro/_form.php
raulmss/yiiCRUD
01c1d8326d5fc9a1f6ac4fb68c4fc64e28516103
[ "BSD-3-Clause" ]
null
null
null
views/cadastro/_form.php
raulmss/yiiCRUD
01c1d8326d5fc9a1f6ac4fb68c4fc64e28516103
[ "BSD-3-Clause" ]
null
null
null
views/cadastro/_form.php
raulmss/yiiCRUD
01c1d8326d5fc9a1f6ac4fb68c4fc64e28516103
[ "BSD-3-Clause" ]
null
null
null
<?php use yii\helpers\Html; use yii\widgets\ActiveForm; use kartik\datecontrol\DateControl; /* @var $this yii\web\View */ /* @var $model app\models\CadastroModel */ /* @var $form yii\widgets\ActiveForm */ ?> <div class="cadastro-model-form"> <?php $form = ActiveForm::begin(); ?> <?= $form->field($model, 'nome')->textInput(['maxlength' => true]) ?> <?= $form->field($model, 'usuario')->textInput(['maxlength' => true]) ?> <?= $form->field($model, 'senha')->textInput(['maxlength' => true]) ?> <?= $form->field($model, 'cpf')->textInput(['maxlength' => true]) ?> <?= $form->field($model, 'email')->textInput(['maxlength' => true]) ?> <?= $form->field($model, 'telefone')->textInput(['maxlength' => true]) ?> <?= $form->field($model, 'datanasc')->input('date') ?> <?= $form->field($model, 'pathFoto')->fileInput() ?> <?= $form->field($model, 'cep')->textInput(['maxlength' => true, 'placeholder'=>"Números somente", 'onchange'=>'buscaCep()'])?> <script> function preencheCampos(json) { if(json.logradouro == undefined){ document.querySelector('input[id="cadastromodel-logradouro"]').value = "CEP INVÁLIDO"; document.querySelector('input[id="cadastromodel-bairro"]').value = "CEP INVÁLIDO"; document.querySelector('input[id="cadastromodel-complemento"]').value = "CEP INVÁLIDO"; document.querySelector('input[id="cadastromodel-cidade"]').value = "CEP INVÁLIDO"; document.querySelector('input[id="cadastromodel-estado"]').value = "CEP INVÁLIDO"; }else{ document.querySelector('input[id="cadastromodel-logradouro"]').value = json.logradouro; document.querySelector('input[id="cadastromodel-bairro"]').value = json.bairro; document.querySelector('input[id="cadastromodel-complemento"]').value = json.complemento; document.querySelector('input[id="cadastromodel-cidade"]').value = json.localidade; document.querySelector('input[id="cadastromodel-estado"]').value = json.uf; } } function buscaCep() { let inputCep = document.querySelector('input[id="cadastromodel-cep"]'); let cep = inputCep.value.replace('-', ''); let url = 'http://viacep.com.br/ws/' + cep + '/json'; let xhr = new XMLHttpRequest(); xhr.open('GET', url, true); xhr.onreadystatechange = function() { if (xhr.readyState == 4) { if (xhr.status = 200) preencheCampos(JSON.parse(xhr.responseText)); } } xhr.send(); } </script> <?= $form->field($model, 'logradouro')->textInput(['maxlength' => true]) ?> <?= $form->field($model, 'bairro')->textInput(['maxlength' => true]) ?> <?= $form->field($model, 'complemento')->textInput(['maxlength' => true]) ?> <?= $form->field($model, 'cidade')->textInput(['maxlength' => true]) ?> <?= $form->field($model, 'estado')->textInput(['maxlength' => true]) ?> <div class="form-group"> <?= Html::submitButton('Save', ['class' => 'btn btn-success']) ?> </div> <?php ActiveForm::end(); ?> </div>
38.894118
131
0.565941
83e83c05d217113795fb5089a34aa4bebb5fb233
625
asm
Assembly
oeis/104/A104721.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/104/A104721.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/104/A104721.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A104721: Expansion of (1+x)^2/(1-4*x^2). ; 1,2,5,8,20,32,80,128,320,512,1280,2048,5120,8192,20480,32768,81920,131072,327680,524288,1310720,2097152,5242880,8388608,20971520,33554432,83886080,134217728,335544320,536870912,1342177280,2147483648,5368709120,8589934592,21474836480,34359738368,85899345920,137438953472,343597383680,549755813888,1374389534720,2199023255552,5497558138880,8796093022208,21990232555520,35184372088832,87960930222080,140737488355328,351843720888320,562949953421312,1407374883553280,2251799813685248,5629499534213120 mov $1,2 pow $1,$0 gcd $0,2 add $0,3 mul $0,$1 div $0,2 sub $0,2 div $0,2 add $0,1
48.076923
497
0.8208
34b44fe02f6363f60374110b75b1d97386a15472
2,161
sql
SQL
reservecar.sql
PhuwanartAnugool/aof-file
3f45bf8069d88daa28ca5709552c3e74c68da949
[ "BSD-3-Clause" ]
null
null
null
reservecar.sql
PhuwanartAnugool/aof-file
3f45bf8069d88daa28ca5709552c3e74c68da949
[ "BSD-3-Clause" ]
null
null
null
reservecar.sql
PhuwanartAnugool/aof-file
3f45bf8069d88daa28ca5709552c3e74c68da949
[ "BSD-3-Clause" ]
null
null
null
/* Navicat MySQL Data Transfer Source Server : xampp Source Server Version : 50505 Source Host : localhost:3306 Source Database : reservecar Target Server Type : MYSQL Target Server Version : 50505 File Encoding : 65001 Date: 2019-08-08 12:20:46 */ SET FOREIGN_KEY_CHECKS=0; -- ---------------------------- -- Table structure for `event` -- ---------------------------- DROP TABLE IF EXISTS `event`; CREATE TABLE `event` ( `id` int(11) NOT NULL AUTO_INCREMENT, `title` varchar(255) CHARACTER SET tis620 NOT NULL COMMENT 'หัวข้อการประชุม', `place_seminar` varchar(255) CHARACTER SET tis620 NOT NULL COMMENT 'สถานที่ไปประชุม', `create_date` date NOT NULL COMMENT 'วันที่ประชุม', `time_goback` int(11) NOT NULL COMMENT 'เวลาไป-กลับ', `unit_people` varchar(255) CHARACTER SET tis620 NOT NULL COMMENT 'จำนวนผู้ไปประชุม', `date_request` date DEFAULT NULL COMMENT 'วันที่ลงข้อมูลจองรถ', `who_request` varchar(255) CHARACTER SET tis620 NOT NULL COMMENT 'ชื่อผู้ลงข้อมูลจองรถ', PRIMARY KEY (`id`), KEY `time_goback` (`time_goback`), KEY `time_goback_2` (`time_goback`), CONSTRAINT `cnttime` FOREIGN KEY (`time_goback`) REFERENCES `rsc_time` (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1; -- ---------------------------- -- Records of event -- ---------------------------- INSERT INTO `event` VALUES ('1', 'ประชุม 43 แฟ้ม', 'สสจ อุบล', '2016-01-28', '3', '1', '2016-01-26', 'ภูวนารถ อนุกูล'); INSERT INTO `event` VALUES ('2', 'ประชุม HIWIN', 'สสจ.อุบลราชธานี', '2016-11-08', '3', '1', '2016-11-08', 'ภูวนารถ อนุกูล'); -- ---------------------------- -- Table structure for `rsc_time` -- ---------------------------- DROP TABLE IF EXISTS `rsc_time`; CREATE TABLE `rsc_time` ( `id` int(11) NOT NULL AUTO_INCREMENT, `time` varchar(255) NOT NULL COMMENT 'เวลา', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1; -- ---------------------------- -- Records of rsc_time -- ---------------------------- INSERT INTO `rsc_time` VALUES ('1', '8.00 - 12.00'); INSERT INTO `rsc_time` VALUES ('2', '12.00 - 16.00'); INSERT INTO `rsc_time` VALUES ('3', '8.00 - 16.00');
36.627119
124
0.605275
ddfbe78d1f4240dcf742925e5e604aabff850162
5,526
go
Go
restapi/embedded_spec.go
freesky-edward/directory
70117f04c69aaba3bf73db1c337bffb9a141977c
[ "Apache-2.0" ]
null
null
null
restapi/embedded_spec.go
freesky-edward/directory
70117f04c69aaba3bf73db1c337bffb9a141977c
[ "Apache-2.0" ]
null
null
null
restapi/embedded_spec.go
freesky-edward/directory
70117f04c69aaba3bf73db1c337bffb9a141977c
[ "Apache-2.0" ]
null
null
null
// Code generated by go-swagger; DO NOT EDIT. package restapi // This file was generated by the swagger tool. // Editing this file might prove futile when you re-run the swagger generate command import ( "encoding/json" ) var ( // SwaggerJSON embedded version of the swagger document used at generation time SwaggerJSON json.RawMessage // FlatSwaggerJSON embedded flattened version of the swagger document used at generation time FlatSwaggerJSON json.RawMessage ) func init() { SwaggerJSON = json.RawMessage([]byte(`{ "consumes": [ "application/json" ], "produces": [ "application/json" ], "schemes": [ "http" ], "swagger": "2.0", "info": { "description": "This is an API service to list all service metatdata that can be used in a place it contains", "title": "The API dictory list", "version": "0.0.1" }, "paths": { "/apis": { "get": { "tags": [ "metadaservices" ], "operationId": "apis", "parameters": [ { "type": "string", "name": "keywords", "in": "query" }, { "type": "integer", "format": "int64", "name": "start", "in": "query" }, { "type": "integer", "format": "int64", "default": 100, "name": "length", "in": "query" } ], "responses": { "200": { "description": "List all APIs the directory has, the result contains a collection of items, each item represents an API metadata service.", "schema": { "$ref": "#/definitions/directory" } } } } } }, "definitions": { "directory": { "type": "object", "required": [ "version" ], "properties": { "services": { "type": "array", "items": { "$ref": "#/definitions/service" } }, "version": { "description": "the directory version of this service", "type": "string", "minLength": 1 } } }, "service": { "type": "object", "required": [ "name", "version", "restUrl" ], "properties": { "description": { "type": "string" }, "documentationLink": { "type": "string" }, "id": { "description": "the version of the specified service", "type": "string" }, "name": { "description": "the name of a specified service", "type": "string", "minLength": 1 }, "restUrl": { "type": "string" }, "title": { "type": "string" }, "version": { "description": "the version of the specified service", "type": "string" } } } } }`)) FlatSwaggerJSON = json.RawMessage([]byte(`{ "consumes": [ "application/json" ], "produces": [ "application/json" ], "schemes": [ "http" ], "swagger": "2.0", "info": { "description": "This is an API service to list all service metatdata that can be used in a place it contains", "title": "The API dictory list", "version": "0.0.1" }, "paths": { "/apis": { "get": { "tags": [ "metadaservices" ], "operationId": "apis", "parameters": [ { "type": "string", "name": "keywords", "in": "query" }, { "type": "integer", "format": "int64", "name": "start", "in": "query" }, { "type": "integer", "format": "int64", "default": 100, "name": "length", "in": "query" } ], "responses": { "200": { "description": "List all APIs the directory has, the result contains a collection of items, each item represents an API metadata service.", "schema": { "$ref": "#/definitions/directory" } } } } } }, "definitions": { "directory": { "type": "object", "required": [ "version" ], "properties": { "services": { "type": "array", "items": { "$ref": "#/definitions/service" } }, "version": { "description": "the directory version of this service", "type": "string", "minLength": 1 } } }, "service": { "type": "object", "required": [ "name", "version", "restUrl" ], "properties": { "description": { "type": "string" }, "documentationLink": { "type": "string" }, "id": { "description": "the version of the specified service", "type": "string" }, "name": { "description": "the name of a specified service", "type": "string", "minLength": 1 }, "restUrl": { "type": "string" }, "title": { "type": "string" }, "version": { "description": "the version of the specified service", "type": "string" } } } } }`)) }
22.740741
151
0.435939
16af4628219100a1a9442fe663ae8bc821b184e6
6,738
ts
TypeScript
examples/bri-1/base-example/src/mods/avail/avail.ts
Meuko/baseline-commit-mgr
158713d7e57a88ba40c7d8621b47e04951d3172f
[ "CC0-1.0" ]
null
null
null
examples/bri-1/base-example/src/mods/avail/avail.ts
Meuko/baseline-commit-mgr
158713d7e57a88ba40c7d8621b47e04951d3172f
[ "CC0-1.0" ]
4
2021-03-26T10:03:58.000Z
2021-09-02T20:23:57.000Z
examples/bri-1/base-example/src/mods/avail/avail.ts
Meuko/baseline-ganache
158713d7e57a88ba40c7d8621b47e04951d3172f
[ "CC0-1.0" ]
1
2021-03-08T14:47:52.000Z
2021-03-08T14:47:52.000Z
import { fileReader } from "../../utils/utils"; import { FileStructure, FileContentStructure, SupplierType, Contents, } from "../types"; // Current test values, these are supposed to be sourced from // a single source of truth. const fileImporter = async (folders: string[]) => { const fs = require("fs"); if (folders.length === 0) Promise.reject("0x0"); // Queue all our contents for later processing let contentQueue: Promise<Contents>[] = []; await new Promise(async (resolve: any, reject: any) => { for (const folder of folders) { // Loop through all folders await new Promise((resolve: any, reject: any) => { fs.readdir(`src/mods/avail/${folder}`, (error: any, files: any) => { if (error) reject(error); if (files) { for (const file of files) { // Request file information of each file switch (folder) { case "ports": { contentQueue.push( fileReader( `src/mods/avail/${folder}/${file}`, SupplierType.PORT ) ); break; } case "spares": { contentQueue.push( fileReader( `src/mods/avail/${folder}/${file}`, SupplierType.SPARE ) ); break; } case "technicians": { contentQueue.push( fileReader( `src/mods/avail/${folder}/${file}`, SupplierType.TECHNICIAN ) ); break; } case "vessels": { contentQueue.push( fileReader( `src/mods/avail/${folder}/${file}`, SupplierType.VESSEL ) ); break; } default: { throw "Are you sure you're passing in the right folder name?"; break; } } } resolve(contentQueue); } }); }); } resolve(contentQueue); }); return contentQueue; }; let suitabilityFinder = ( suppInfo: number[], timeWindow: number[], taskLength: number ): number[] => { // TODO::(Hamza) --> Move this into its own function :) // Perform availability calculation and save result in either the "ERP" system or temp storage. if (!suppInfo) { return new Array(30).fill(0); } let keys_of_interest: Array<number> = new Array(30).fill(0); loop1: for (var [index, day] of suppInfo.entries()) { // We only care about the days starting from the start date if (index >= timeWindow[0] - 1) { // From starting day; check for each date if we have an available day if (Number(day) !== 0) { // If available day is found, start looping from now into the future untill we hit // the task_length cap -- ci = current index loop2: for (let ci = index; ci != index + Number(taskLength); ci++) { // Don't start day checks for task lengths which are too long for our current calendar. if ( index + Number(taskLength) >= suppInfo.length || index + Number(taskLength) >= timeWindow[1] ) { break loop2; } // Stop counting available days if we hit a 0. if (Number(suppInfo[ci]) === 0) { break loop2; } // For current index + n, incerement its index. keys_of_interest[index] += 1; } } } } let indices_available: Array<number> = []; let final_availability: Array<number> = new Array(30).fill(0); // Now check if we've encountered any days with enough available days in succession. // If yes, add them to the indices_available array. for (let i = 0; i < keys_of_interest.length; i++) { if (keys_of_interest[i] == taskLength) { indices_available.push(i); } } // For each available index, set the corresponding day to true. for (var a of indices_available) { final_availability[a] = a + 1; } return final_availability; }; const supplierResolver = (suppliers: SupplierType[]): string[] => { // Pretend like you didn't see this one. return suppliers.reduce( (pVal: any, cVal: any) => [ ...pVal, SupplierType[cVal].toLocaleLowerCase() + "s", ], [] ); }; export const requestAvailability = async ( suppliers: SupplierType[], timeWindow: number[], taskLength: number ): Promise<FileStructure[]> => { // Retrieve all file contents, this is an array of promises. const folderInfo = await fileImporter(supplierResolver(suppliers)); let suppFormatted: FileStructure[] = []; if (folderInfo.length === 0) return Promise.reject(); // Work on the values await Promise.all(folderInfo).then(async (res: Contents[]) => { new Promise((resolve, reject) => { res.map((entry: Contents) => { // @TODO Reformat this so that suitabilityFinder only accepts an array of days. const entryTag: SupplierType = entry.fileTag; // entryData in its raw form: // '0,0,0,4,5,6,7,0,0,0,11,12,13,14,15,16,17,0,0,0,0,22,23,24,25,26,27,0,0,0\n // 4\n // 140000\n // Vessel25' let entryData: string = entry.fileContents.split("\n"); //FileContentStructure let entryAvailability = suitabilityFinder( entryData[0].split(",").map((day: string) => parseInt(day) || 0), timeWindow, taskLength ); // Reconstruct our new object with our actual availability entryData // supplierId: string; // supplierCost: number; // supplierReputation: number; // supplierAvailability: number[]; const tempFCS: FileContentStructure = { supplierId: entryData[3], supplierCost: parseInt(entryData[2]) || -1, supplierReputation: parseInt(entryData[1]) || -1, supplierAvailability: entryAvailability, }; suppFormatted.push({ _type: entryTag, _metaData: { timeWindow: timeWindow, taskLength: taskLength, }, _content: tempFCS, } as FileStructure); }); // Formatted all our suppliers, let's send it back and return it for further processing. resolve(suppFormatted); }).then((e: any) => { Promise.resolve(suppFormatted); }); }); return suppFormatted; };
32.085714
97
0.540813
38dbc0f54b2a803b2d4ee7fb7d191dd378519736
1,893
h
C
Source/Foundation/bsfUtility/Math/BsConvexVolume.h
myrgy/bsf
2c31da99f5763a47c0dee7e2cdb3d4ac3b3c37a6
[ "MIT" ]
1
2018-04-16T12:14:52.000Z
2018-04-16T12:14:52.000Z
Source/Foundation/bsfUtility/Math/BsConvexVolume.h
myrgy/bsf
2c31da99f5763a47c0dee7e2cdb3d4ac3b3c37a6
[ "MIT" ]
null
null
null
Source/Foundation/bsfUtility/Math/BsConvexVolume.h
myrgy/bsf
2c31da99f5763a47c0dee7e2cdb3d4ac3b3c37a6
[ "MIT" ]
null
null
null
//************************************ bs::framework - Copyright 2018 Marko Pintera **************************************// //*********** Licensed under the MIT license. See LICENSE.md for full terms. This notice is not to be removed. ***********// #pragma once #include "Prerequisites/BsPrerequisitesUtil.h" #include "Math/BsPlane.h" namespace bs { /** @addtogroup Math * @{ */ /** Clip planes that form the camera frustum (visible area). */ enum FrustumPlane { FRUSTUM_PLANE_NEAR = 0, FRUSTUM_PLANE_FAR = 1, FRUSTUM_PLANE_LEFT = 2, FRUSTUM_PLANE_RIGHT = 3, FRUSTUM_PLANE_TOP = 4, FRUSTUM_PLANE_BOTTOM = 5 }; /** Represents a convex volume defined by planes representing the volume border. */ class BS_UTILITY_EXPORT ConvexVolume { public: ConvexVolume() = default; ConvexVolume(const Vector<Plane>& planes); /** Creates frustum planes from the provided projection matrix. */ ConvexVolume(const Matrix4& projectionMatrix, bool useNearPlane = true); /** * Checks does the volume intersects the provided axis aligned box. * This will return true if the box is fully inside the volume. */ bool intersects(const AABox& box) const; /** * Checks does the volume intersects the provided sphere. * This will return true if the sphere is fully inside the volume. */ bool intersects(const Sphere& sphere) const; /** * Checks if the convex volume contains the provided point. * * @param[in] p Point to check. * @param[in] expand Optional value to expand the size of the convex volume by the specified value during the * check. Negative values shrink the volume. */ bool contains(const Vector3& p, float expand = 0.0f) const; /** Returns the internal set of planes that represent the volume. */ Vector<Plane> getPlanes() const { return mPlanes; } private: Vector<Plane> mPlanes; }; /** @} */ }
29.123077
124
0.667195
d2b420035aacfe17f5a3b38e180969d37cea7177
978
php
PHP
app/Models/Account.php
takf-jp/laravel-graphql
7790ff2dbb5cf383b32d3acac24284eeef54a72d
[ "MIT" ]
null
null
null
app/Models/Account.php
takf-jp/laravel-graphql
7790ff2dbb5cf383b32d3acac24284eeef54a72d
[ "MIT" ]
null
null
null
app/Models/Account.php
takf-jp/laravel-graphql
7790ff2dbb5cf383b32d3acac24284eeef54a72d
[ "MIT" ]
1
2021-03-19T01:14:25.000Z
2021-03-19T01:14:25.000Z
<?php namespace App\Models; use Illuminate\Foundation\Auth\User as Authenticatable; use Illuminate\Notifications\Notifiable; use Tymon\JWTAuth\Contracts\JWTSubject; class Account extends Authenticatable implements JWTSubject { use Notifiable; protected $fillable = [ 'name', 'twitter_id', 'email', 'password', 'logged_in_at', 'signed_up_at', ]; protected $hidden = [ 'password', 'remember_token' ]; protected $casts = [ 'email_verified_at' => 'datetime', ]; public function getJWTIdentifier() { return $this->getKey(); } public function getJWTCustomClaims() { return []; } public function followers() { return $this->hasMany(Follower::class); } public function follower() { return $this->hasOne(Follower::class) ->where('follower_account_id', auth()->user()->id); } }
18.807692
71
0.584867
202001f3abd766d2dcb198ba868395effc951f2e
61,027
css
CSS
public/old/css/styles.css
DkpProject/we-project
112c0a7d91161f9f06b464302f7a7919d0494942
[ "BSD-2-Clause" ]
null
null
null
public/old/css/styles.css
DkpProject/we-project
112c0a7d91161f9f06b464302f7a7919d0494942
[ "BSD-2-Clause" ]
null
null
null
public/old/css/styles.css
DkpProject/we-project
112c0a7d91161f9f06b464302f7a7919d0494942
[ "BSD-2-Clause" ]
null
null
null
.a-profile { color: inherit; } .a-profile:hover, .a-profile:focus, .a-profile:active, .a-profile:visited { text-decoration: none; } .action { height: 150px; overflow-y: scroll; padding: 0px; } .action .message { background: #fafafa; padding: 10px 15px; } .action .message:nth-child(2n) { background: #eeeeee; } .add { width: 100%; height: 70px; text-align: center; padding: 25px 0; background: #4f5a6e; border-left: 1px solid #424b5f; color: #FFF; } body { background-color: #dee1e5; } .btn-primary, .btn-primary:visited { background-color: #65c178; border-color: #65c178; border-radius: 2px; transition: all .1s ease; } .btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary:target { background-color: #59a969 !important; border-color: #59a969 !important; border-radius: 2px; } .chat { height: 300px; overflow-y: scroll; padding: 0px; } .chat .text { border-top: 1px solid #dadada; padding-top: 5px; } .chat .message { background: #fafafa; border-bottom: 1px solid #dadada; padding: 10px 15px; } .chat .message.end { background: #f7ecb5 !important; } .chat .message.system { background: #bcf7cc !important; } .chat .message:nth-child(2n) { background: #eeeeee; } .contentbar { background-color: #FFF; float: left; height: 2000px; margin: 0; padding: 0; width: 800px; } .contentwrap { float: right; position: relative; width: 1050px; } .dropdown-menu { border-radius: 3px; margin-left: -58px; margin-top: 10px; width: 250px; } .dropdown-menu li a { padding-bottom: 8px; padding-top: 8px; } .dropdown-toggle:hover, .dropdown-toggle:active, .dropdown-toggle:focus, .dropdown-toggle:target { text-decoration: none; } .gr { padding: 0; } .f-good-price { font-size: 16px; } .filter { margin-bottom: 0; padding-left: 0; } .filter li { color: #b0b8bd; display: inline-block; font-family: Roboto; font-size: 14px; font-weight: 700; list-style: none; margin: 0 10px; padding: 10px 0 6px 0; text-transform: uppercase; } .filter li:first-child { margin-left: 0 !important; } .good-card { border-bottom: 1px solid #F0F0F0; padding-bottom: 20px; margin-top: 30px; } .good-quality { margin-left: 5px; } .good-title { font-family: Roboto; font-size: 18px; } .h1 { color: #333; font-family: Roboto; font-size: 22px; font-weight: 700; } .h5 { color: #444; font-family: Arial; font-size: 15px; font-weight: 300; padding: 2px 0; } .i-profile { font-size: 15px; margin-right: 10px; } .invites-table td { padding: 6px 0; } .item-button { background-color: #424b5f; border-radius: 3px; border: 0; box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.5); color: #fff; font-family: Roboto; font-weight: 500; padding: 5px 60px; } .item-content { color: #8b8b8b; display: table-cell; font-family: Roboto, sans-serif; padding-top: 30px; width: 580px; } .item-date { font-weight: 500; padding-right: 40px; padding-top: 10px; text-align: right; } .item-date span { border-bottom: 1px solid; } .item-descr { padding-right: 40px; padding-top: 10px; } .item-loc { font-weight: 500; margin-top: 10px; } .item-photo { display: table-cell; font-family: Roboto, sans-serif; font-weight: 500; padding-left: 15px; padding-right: 40px; padding-top: 35px; text-align: center; width: 200px; } .item-photo-link { border-bottom: 1px solid #8b8b8b; color: #8b8b8b; } .item-seller { border-bottom: 1px solid; font-weight: 500; margin-left: 20px; } .item-title { font-size: 25px; font-weight: 500; } .left-nav a:hover { text-decoration: none; } .left-nav li { color: #FFF; font-family: Roboto; font-weight: 500; list-style: none; padding: 12px 22px; } .left-nav li:hover { background-color: #424b5f; cursor: pointer; } .left-nav ul { padding-left: 0; } .logo { display: block; width: 100%; text-align: center; height: 70px; background: #424b5f; color: #FFF !important; font-size: 20px; font-family: Roboto; font-weight: 500; padding: 6px 0; } .logo:hover { color: #FFF; } .link, .link:hover, .link:active, .link:focus, .link:visited, .link:target { color: inherit; text-decoration: none; transition: all .1s ease-in; } .menu-button, .add-button { text-align: center; font-size: 26px; padding: 17px 0; } .no-padding { padding: 0; } .offset-40 { margin-bottom: 40px; } .page { width: 100%; min-height: 1000px; background: #FFF; padding-bottom: 40px; } .page-content { padding-top: 15px; } .page-subtitle { border-bottom: 1px solid #f0f0f0; font-family: Roboto; font-size: 18px; padding-bottom: 7px; } .page-subtitle span { } .page-title { border-bottom: 1px solid #f0f0f0; font-family: Roboto; font-size: 20px; padding: 20px 0 2px 0; } .page-wrap { padding: 0 10px; } .r-good-card { width: 180px; margin: auto; padding-top: 20px; } .r-good-card img { max-width: 180px; opacity: 0.7; } .r-good-price { font-size: 14px; padding-top: 1px; } .r-good-title { font-size: 16px; padding-top: 10px; } .right-panel { background-color: #4f5a6e; border-left: 1px solid #424b5f; height: 70px; padding-top: 25px; text-align: center; width: 100%; } .right-title { font-family: Roboto; font-size: 16px; font-weight: 500; text-align: center; padding: 20px 0 0 0; } .rightbar { background: #eef1f4; float: right; margin: 0; padding: 0; width: 100%; padding-bottom: 40px; } .search { width: 100%; height: 70px; background: #4f5a6e; color: #FFF; } .search-panel { text-align: center; padding: 18px 0; } .search-query { background-color: #424b5f; border-radius: 4px; border: 0; color: #FFF; outline: none; transition: all .1s ease; padding: 7px 20px 7px 20px; width: 90%; z-index: 1000; position: relative; } .search-query:hover, .search-query:focus, .search-query:active { background-color: #3a4357; } .separate { border-bottom: 1px solid #f0f0f0; width: 100%; } .sidebar { background-color: #4f5a6e; height: 100%; margin: 0; padding: 0; position: fixed; top: 0; width: 250px; z-index: 1000; } .sidebar-content { width: 100%; background: #4f5a6e; min-height: 1000px; padding-bottom: 40px; top: 0 !important; } .sidebar-logo { background-color: #424b5f; color: #FFF; font-family: Roboto; font-size: 20px; font-weight: 500; height: 70px; padding-top: 20px; text-align: center; width: 100%; } .sidebar-user { padding: 20px 15px; } .slideout-menu { position: fixed; left: 0; top: 0; bottom: 0; right: 0; z-index: 0; width: 380px; height: 100%; overflow-y: auto; -webkit-overflow-scrolling: touch; display: none; overflow: hidden; } .slideout-panel { margin: auto; max-width: 1400px; z-index: 1; } .slideout-open .slideout-menu { display: block; } .std { margin-top: -3px; } .stdbutton { background-color: #65c178; border-radius: 5px; color: #FFF; font-family: Roboto; font-size: 14px; font-weight: 300; outline: none; padding: 7px 20px; transition: all .1s ease; } .stdbutton:hover { background-color: #59a969; color: #FFF; cursor: pointer; text-decoration: none; } .topbutton { background-color: #65c178; border-radius: 2px; color: #FFF; font-family: Roboto; font-weight: 500; outline: none; padding: 8px 20px; transition: all .1s ease; } .topbutton:hover { background-color: #59a969; color: #FFF; cursor: pointer; text-decoration: none; } .user-avatar { background-color: #424b5f; border-radius: 50%; color: #fff; display: inline-block; font-size: 20px; padding: 6px 12px; } .user-chevron { color: #FFF; display: inline-block; font-weight: light; padding-top: 12px; } .user-name { color: #fff; display: inline-block; font-family: Roboto; font-size: 16px; font-weight: 500; padding-left: 10px; } .user-name a { color: #fff; font-size: 16px; font-weight: 500; } input:not([type="button"]):not([type="submit"]), select, textarea { width: 85%; resize: none; } .select2-container--bootstrap .select2-search--dropdown .select2-search__field { width: 100%; } .photo-add { cursor: pointer; font-size: 20px; color: green; margin-left: 10px; position: relative; top: -9px; } input[type="radio"] { display: none; } input[type="radio"]:checked + label.radio { background-color: #286090; color: white; } .price-confirm > label > input[type=checkbox] { display: none; } .price-confirm > label { margin-top: 10px; margin-right: 10px; } .deal-stage { cursor: pointer; } .deal-stage:hover { text-decoration: none; } .deal-finish { border-bottom: 2px solid #00f500; } .deal-starter { border-bottom: 2px solid #0090ff; } .deal-cancel { border-bottom: 2px solid #ff0000; } .deal-process { border-bottom: 2px solid orange; } @media screen and (max-width: 1400px) { .rightbar { min-height: 100px !important; } } @media screen and (max-width: 968px) { .page { min-height: 100px !important; } } @media screen and (max-width: 460px) { .margin-xs { margin-top: 10px; } .btn { margin: 5px 0 !important; display: block !important; width: 100% !important; float: none !important; } a:hover { text-decoration: none !important; } table th, table td { padding: 0 30px !important; } .avatar { float: none !important; margin: auto !important; } .good-link, .good-cat, .good-date, .good-show, .good-newphoto { float: none !important; display: block !important; margin: 4px 0 !important; width: 100% !important; } .good-newphoto { margin-top: 10px !important; } .good-separate { display: none; } } @media screen and (max-width: 768px) { table { border: 0; } table thead { display: none; } table tr { margin-bottom: 10px; display: block; border-bottom: 2px solid #ddd; } table td { display: block; text-align: right !important; font-size: 13px; } table td:last-child { border-bottom: 0; } table td:before { content: attr(data-label); float: left; font-weight: bold; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; } } footer { text-align: center; font-weight: bold; color: #dadada; padding: 10px; border-top: 1px solid #F0F0F0; background-color: #fff; } .row { margin: 0px !important; } .mgt10 { margin-top: 10px; } .mgb10 { margin-bottom: 10px; } .spec-delete { font-size: 18px; margin-top: 7px; color: #dadada; cursor: pointer; } .spec-delete:hover { color: #919191; } .jq-selectbox__search input { width: 100%; } .search-result-container { margin-top: -34px; position: absolute; width: 100%; z-index: 999; } .search-result { width: 85%; margin: auto; padding-top: 35px; background: white; border: 1px solid #F0F0F0; border-radius: 7px; padding-bottom: 5px; box-shadow: 0 0 5px rgba(0, 0, 0, 0.5); } .search-result > a { text-decoration: none !important; } .search-section { border-bottom: 1px solid #f0f0f0; color: #dadada; font-weight: bold; font-size: 14px; margin-top: 5px; } .search-item { text-align: left; padding: 7px 20px; border-bottom: 1px solid #f0f0f0; cursor: pointer; } .search-item:hover { background-color: #f9f9f9; } .search-item:hover > i { color: #337ab7; } .search-item > i { color: #dadada; margin-top: 4px; } .search-item > h5 { margin: 0px; font-weight: bold; } .search-item > span { color: #aaa; } .search-loading { position: absolute; margin: 10px -25px; z-index: 9999; } .search-show-all { padding: 10px 0; color: #dadada; border-bottom: 1px solid #f0f0f0; } .search-no-result { color: #444; padding: 10px 0; border-bottom: 1px solid #f0f0f0; } .icon-rate-1, .icon-rate-2, .icon-rate-3, .icon-rate-4, .icon-rate-5 { display: inline-block; height: 16px; background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAAQCAYAAAD0xERiAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoyREUxNDMzOEJCQzkxMUU2ODVBMUQ4Qzk1NTFCMDg5QSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDoyREUxNDMzOUJCQzkxMUU2ODVBMUQ4Qzk1NTFCMDg5QSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjJERTE0MzM2QkJDOTExRTY4NUExRDhDOTU1MUIwODlBIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjJERTE0MzM3QkJDOTExRTY4NUExRDhDOTU1MUIwODlBIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+NE9W1AAAA4ZJREFUeNpcU11oHFUYPXfunZ3dyWbZ3ezGpkk2sWmrpAgtKFVUqqIPFl980DffRLABxTcpFEEUVPBBX0Sxj74UfYugUBR8kKJg/CWmxfUnbtNNNtnszM7/3Hv7zWzNSi/MMHPvnDPnnO/7mNYaW99fQufKJYjSBBrzNoTJQNv5ovOyLjRfSgfdj+ltO9tjjJ4U0N+OkIY+msuPYuGxcxDZ4aC9hj8vfwazDHjzHFOtIpTMmOgmKk8uPv7Km+1fv/DSQec9xgUMzrB/I0FvU0JGRK55Tmbkf+IALxDOYvAchigwwQwLMjVQPXJyxZ5ponn3fS/AMIvcKkLKAoYDDW6NcEyMXBi4bWX2fCeBKDBYlclHphZaZ+Bew9TCzHKhXHuaSQV3NyblGuw27AFZloGmD5SUiIMUkR+hOt9asWw6CLYoxxCNY0svxnGC0BuRKTXC/bduCWQ1o4hTVnVyeqJqz9B9pjZXOVqfO/QU4r0cwCRDfa75UOgsf66tvXV3x70RutFWsD/cpor8TCTdnMywS888+Nw9H1YPTYFzTtFwOqeKqgA6yX8GRSY406x1onJ27jjOyqQMSSqHfQfdgf06ffRabjNxhxfXv7r6gYxT0u1Dhi6VfAiVhGQnoishUgfS+xuJ00bq7RAoUxxj49vep1Hfe+cgM84NudeOzq2t/n4hGLK8JVRKuaQJEaVQZFX6f1Eb7EMmER0HCAMLP3zpvL+9njwrOLwDsiwTah+EO7032t+1n49CnmhqtKwYKnJIySZZCkhpDJ2GiMnixhXvVeef3Ze5SXD1v2qWqiYai0B9sQKmvItOb/i11kauIvE6RBTRc4o0VyrhDsRPHMHb00dpYhaAiVphXE0hGFkF5SQRuqpYT7GUgdJgFzoe3pofY1QIlpUibCll3GFw3bVswCzxMVk0TOF06aVEgUMc4SZfzNSoaJcmoUB7FRjMowz9bFaJ0q9FgV5GEndlDEz66dimpK4mR9SskgSIk4USo+mLEYY2/v2jurq5gSe6ndonUVwncgOCB2RZ3uvvJwgGhPPlWJkiYhmOClFqiPtlEuDqWv+X7rX+ecvsr9ZmBfo9ffn6b+yjcoO/dXgpfoAL43Q2n5qwUajGZJXZuzB7+gwNrQ1dKv3YuS4uhMp5d/qEERTLJuxqgQqgKM/4G99VD3cHYsVuaXGYwlWJj+qdp3KymwIMAMly4oZAsO6bAAAAAElFTkSuQmCC); } .icon-rate-1 { width: 19px; } .icon-rate-2 { width: 38px; } .icon-rate-3 { width: 57px; } .icon-rate-4 { width: 76px; } .icon-rate-5 { width: 95px; } .icon-rate-1.bs-14, .icon-rate-2.bs-14, .icon-rate-3.bs-14, .icon-rate-4.bs-14, .icon-rate-5.bs-14 { background-size: 14px; height: 12px; } .icon-rate-1.bs-14 { width: 14px; } .icon-rate-2.bs-14 { width: 28px; } .icon-rate-3.bs-14 { width: 42px; } .icon-rate-4.bs-14 { width: 56px; } .icon-rate-5.bs-14 { width: 70px; } .icon-rate-opt-1 .jq-selectbox__select, .icon-rate-opt-2 .jq-selectbox__select, .icon-rate-opt-3 .jq-selectbox__select, .icon-rate-opt-4 .jq-selectbox__select, .icon-rate-opt-5 .jq-selectbox__select { padding-left: 2px; } .icon-rate-opt-1 .jq-selectbox__select-text, .jq-selectbox li.option.icon-rate-opt-1 { background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAAQCAYAAAD0xERiAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoyREUxNDMzOEJCQzkxMUU2ODVBMUQ4Qzk1NTFCMDg5QSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDoyREUxNDMzOUJCQzkxMUU2ODVBMUQ4Qzk1NTFCMDg5QSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjJERTE0MzM2QkJDOTExRTY4NUExRDhDOTU1MUIwODlBIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjJERTE0MzM3QkJDOTExRTY4NUExRDhDOTU1MUIwODlBIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+NE9W1AAAA4ZJREFUeNpcU11oHFUYPXfunZ3dyWbZ3ezGpkk2sWmrpAgtKFVUqqIPFl980DffRLABxTcpFEEUVPBBX0Sxj74UfYugUBR8kKJg/CWmxfUnbtNNNtnszM7/3Hv7zWzNSi/MMHPvnDPnnO/7mNYaW99fQufKJYjSBBrzNoTJQNv5ovOyLjRfSgfdj+ltO9tjjJ4U0N+OkIY+msuPYuGxcxDZ4aC9hj8vfwazDHjzHFOtIpTMmOgmKk8uPv7Km+1fv/DSQec9xgUMzrB/I0FvU0JGRK55Tmbkf+IALxDOYvAchigwwQwLMjVQPXJyxZ5ponn3fS/AMIvcKkLKAoYDDW6NcEyMXBi4bWX2fCeBKDBYlclHphZaZ+Bew9TCzHKhXHuaSQV3NyblGuw27AFZloGmD5SUiIMUkR+hOt9asWw6CLYoxxCNY0svxnGC0BuRKTXC/bduCWQ1o4hTVnVyeqJqz9B9pjZXOVqfO/QU4r0cwCRDfa75UOgsf66tvXV3x70RutFWsD/cpor8TCTdnMywS888+Nw9H1YPTYFzTtFwOqeKqgA6yX8GRSY406x1onJ27jjOyqQMSSqHfQfdgf06ffRabjNxhxfXv7r6gYxT0u1Dhi6VfAiVhGQnoishUgfS+xuJ00bq7RAoUxxj49vep1Hfe+cgM84NudeOzq2t/n4hGLK8JVRKuaQJEaVQZFX6f1Eb7EMmER0HCAMLP3zpvL+9njwrOLwDsiwTah+EO7032t+1n49CnmhqtKwYKnJIySZZCkhpDJ2GiMnixhXvVeef3Ze5SXD1v2qWqiYai0B9sQKmvItOb/i11kauIvE6RBTRc4o0VyrhDsRPHMHb00dpYhaAiVphXE0hGFkF5SQRuqpYT7GUgdJgFzoe3pofY1QIlpUibCll3GFw3bVswCzxMVk0TOF06aVEgUMc4SZfzNSoaJcmoUB7FRjMowz9bFaJ0q9FgV5GEndlDEz66dimpK4mR9SskgSIk4USo+mLEYY2/v2jurq5gSe6ndonUVwncgOCB2RZ3uvvJwgGhPPlWJkiYhmOClFqiPtlEuDqWv+X7rX+ecvsr9ZmBfo9ffn6b+yjcoO/dXgpfoAL43Q2n5qwUajGZJXZuzB7+gwNrQ1dKv3YuS4uhMp5d/qEERTLJuxqgQqgKM/4G99VD3cHYsVuaXGYwlWJj+qdp3KymwIMAMly4oZAsO6bAAAAAElFTkSuQmCC); background-repeat: no-repeat; background-position: 4px center; padding-left: 27px; } .icon-rate-opt-2 .jq-selectbox__select-text, .jq-selectbox li.option.icon-rate-opt-2 { background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAAQCAYAAAD0xERiAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoyREUxNDMzOEJCQzkxMUU2ODVBMUQ4Qzk1NTFCMDg5QSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDoyREUxNDMzOUJCQzkxMUU2ODVBMUQ4Qzk1NTFCMDg5QSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjJERTE0MzM2QkJDOTExRTY4NUExRDhDOTU1MUIwODlBIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjJERTE0MzM3QkJDOTExRTY4NUExRDhDOTU1MUIwODlBIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+NE9W1AAAA4ZJREFUeNpcU11oHFUYPXfunZ3dyWbZ3ezGpkk2sWmrpAgtKFVUqqIPFl980DffRLABxTcpFEEUVPBBX0Sxj74UfYugUBR8kKJg/CWmxfUnbtNNNtnszM7/3Hv7zWzNSi/MMHPvnDPnnO/7mNYaW99fQufKJYjSBBrzNoTJQNv5ovOyLjRfSgfdj+ltO9tjjJ4U0N+OkIY+msuPYuGxcxDZ4aC9hj8vfwazDHjzHFOtIpTMmOgmKk8uPv7Km+1fv/DSQec9xgUMzrB/I0FvU0JGRK55Tmbkf+IALxDOYvAchigwwQwLMjVQPXJyxZ5ponn3fS/AMIvcKkLKAoYDDW6NcEyMXBi4bWX2fCeBKDBYlclHphZaZ+Bew9TCzHKhXHuaSQV3NyblGuw27AFZloGmD5SUiIMUkR+hOt9asWw6CLYoxxCNY0svxnGC0BuRKTXC/bduCWQ1o4hTVnVyeqJqz9B9pjZXOVqfO/QU4r0cwCRDfa75UOgsf66tvXV3x70RutFWsD/cpor8TCTdnMywS888+Nw9H1YPTYFzTtFwOqeKqgA6yX8GRSY406x1onJ27jjOyqQMSSqHfQfdgf06ffRabjNxhxfXv7r6gYxT0u1Dhi6VfAiVhGQnoishUgfS+xuJ00bq7RAoUxxj49vep1Hfe+cgM84NudeOzq2t/n4hGLK8JVRKuaQJEaVQZFX6f1Eb7EMmER0HCAMLP3zpvL+9njwrOLwDsiwTah+EO7032t+1n49CnmhqtKwYKnJIySZZCkhpDJ2GiMnixhXvVeef3Ze5SXD1v2qWqiYai0B9sQKmvItOb/i11kauIvE6RBTRc4o0VyrhDsRPHMHb00dpYhaAiVphXE0hGFkF5SQRuqpYT7GUgdJgFzoe3pofY1QIlpUibCll3GFw3bVswCzxMVk0TOF06aVEgUMc4SZfzNSoaJcmoUB7FRjMowz9bFaJ0q9FgV5GEndlDEz66dimpK4mR9SskgSIk4USo+mLEYY2/v2jurq5gSe6ndonUVwncgOCB2RZ3uvvJwgGhPPlWJkiYhmOClFqiPtlEuDqWv+X7rX+ecvsr9ZmBfo9ffn6b+yjcoO/dXgpfoAL43Q2n5qwUajGZJXZuzB7+gwNrQ1dKv3YuS4uhMp5d/qEERTLJuxqgQqgKM/4G99VD3cHYsVuaXGYwlWJj+qdp3KymwIMAMly4oZAsO6bAAAAAElFTkSuQmCC), url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAAQCAYAAAD0xERiAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoyREUxNDMzOEJCQzkxMUU2ODVBMUQ4Qzk1NTFCMDg5QSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDoyREUxNDMzOUJCQzkxMUU2ODVBMUQ4Qzk1NTFCMDg5QSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjJERTE0MzM2QkJDOTExRTY4NUExRDhDOTU1MUIwODlBIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjJERTE0MzM3QkJDOTExRTY4NUExRDhDOTU1MUIwODlBIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+NE9W1AAAA4ZJREFUeNpcU11oHFUYPXfunZ3dyWbZ3ezGpkk2sWmrpAgtKFVUqqIPFl980DffRLABxTcpFEEUVPBBX0Sxj74UfYugUBR8kKJg/CWmxfUnbtNNNtnszM7/3Hv7zWzNSi/MMHPvnDPnnO/7mNYaW99fQufKJYjSBBrzNoTJQNv5ovOyLjRfSgfdj+ltO9tjjJ4U0N+OkIY+msuPYuGxcxDZ4aC9hj8vfwazDHjzHFOtIpTMmOgmKk8uPv7Km+1fv/DSQec9xgUMzrB/I0FvU0JGRK55Tmbkf+IALxDOYvAchigwwQwLMjVQPXJyxZ5ponn3fS/AMIvcKkLKAoYDDW6NcEyMXBi4bWX2fCeBKDBYlclHphZaZ+Bew9TCzHKhXHuaSQV3NyblGuw27AFZloGmD5SUiIMUkR+hOt9asWw6CLYoxxCNY0svxnGC0BuRKTXC/bduCWQ1o4hTVnVyeqJqz9B9pjZXOVqfO/QU4r0cwCRDfa75UOgsf66tvXV3x70RutFWsD/cpor8TCTdnMywS888+Nw9H1YPTYFzTtFwOqeKqgA6yX8GRSY406x1onJ27jjOyqQMSSqHfQfdgf06ffRabjNxhxfXv7r6gYxT0u1Dhi6VfAiVhGQnoishUgfS+xuJ00bq7RAoUxxj49vep1Hfe+cgM84NudeOzq2t/n4hGLK8JVRKuaQJEaVQZFX6f1Eb7EMmER0HCAMLP3zpvL+9njwrOLwDsiwTah+EO7032t+1n49CnmhqtKwYKnJIySZZCkhpDJ2GiMnixhXvVeef3Ze5SXD1v2qWqiYai0B9sQKmvItOb/i11kauIvE6RBTRc4o0VyrhDsRPHMHb00dpYhaAiVphXE0hGFkF5SQRuqpYT7GUgdJgFzoe3pofY1QIlpUibCll3GFw3bVswCzxMVk0TOF06aVEgUMc4SZfzNSoaJcmoUB7FRjMowz9bFaJ0q9FgV5GEndlDEz66dimpK4mR9SskgSIk4USo+mLEYY2/v2jurq5gSe6ndonUVwncgOCB2RZ3uvvJwgGhPPlWJkiYhmOClFqiPtlEuDqWv+X7rX+ecvsr9ZmBfo9ffn6b+yjcoO/dXgpfoAL43Q2n5qwUajGZJXZuzB7+gwNrQ1dKv3YuS4uhMp5d/qEERTLJuxqgQqgKM/4G99VD3cHYsVuaXGYwlWJj+qdp3KymwIMAMly4oZAsO6bAAAAAElFTkSuQmCC); background-repeat: no-repeat, no-repeat; background-position: 4px center, 11px center; padding-left: 34px; } .icon-rate-opt-3 .jq-selectbox__select-text, .jq-selectbox li.option.icon-rate-opt-3 { background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAAQCAYAAAD0xERiAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoyREUxNDMzOEJCQzkxMUU2ODVBMUQ4Qzk1NTFCMDg5QSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDoyREUxNDMzOUJCQzkxMUU2ODVBMUQ4Qzk1NTFCMDg5QSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjJERTE0MzM2QkJDOTExRTY4NUExRDhDOTU1MUIwODlBIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjJERTE0MzM3QkJDOTExRTY4NUExRDhDOTU1MUIwODlBIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+NE9W1AAAA4ZJREFUeNpcU11oHFUYPXfunZ3dyWbZ3ezGpkk2sWmrpAgtKFVUqqIPFl980DffRLABxTcpFEEUVPBBX0Sxj74UfYugUBR8kKJg/CWmxfUnbtNNNtnszM7/3Hv7zWzNSi/MMHPvnDPnnO/7mNYaW99fQufKJYjSBBrzNoTJQNv5ovOyLjRfSgfdj+ltO9tjjJ4U0N+OkIY+msuPYuGxcxDZ4aC9hj8vfwazDHjzHFOtIpTMmOgmKk8uPv7Km+1fv/DSQec9xgUMzrB/I0FvU0JGRK55Tmbkf+IALxDOYvAchigwwQwLMjVQPXJyxZ5ponn3fS/AMIvcKkLKAoYDDW6NcEyMXBi4bWX2fCeBKDBYlclHphZaZ+Bew9TCzHKhXHuaSQV3NyblGuw27AFZloGmD5SUiIMUkR+hOt9asWw6CLYoxxCNY0svxnGC0BuRKTXC/bduCWQ1o4hTVnVyeqJqz9B9pjZXOVqfO/QU4r0cwCRDfa75UOgsf66tvXV3x70RutFWsD/cpor8TCTdnMywS888+Nw9H1YPTYFzTtFwOqeKqgA6yX8GRSY406x1onJ27jjOyqQMSSqHfQfdgf06ffRabjNxhxfXv7r6gYxT0u1Dhi6VfAiVhGQnoishUgfS+xuJ00bq7RAoUxxj49vep1Hfe+cgM84NudeOzq2t/n4hGLK8JVRKuaQJEaVQZFX6f1Eb7EMmER0HCAMLP3zpvL+9njwrOLwDsiwTah+EO7032t+1n49CnmhqtKwYKnJIySZZCkhpDJ2GiMnixhXvVeef3Ze5SXD1v2qWqiYai0B9sQKmvItOb/i11kauIvE6RBTRc4o0VyrhDsRPHMHb00dpYhaAiVphXE0hGFkF5SQRuqpYT7GUgdJgFzoe3pofY1QIlpUibCll3GFw3bVswCzxMVk0TOF06aVEgUMc4SZfzNSoaJcmoUB7FRjMowz9bFaJ0q9FgV5GEndlDEz66dimpK4mR9SskgSIk4USo+mLEYY2/v2jurq5gSe6ndonUVwncgOCB2RZ3uvvJwgGhPPlWJkiYhmOClFqiPtlEuDqWv+X7rX+ecvsr9ZmBfo9ffn6b+yjcoO/dXgpfoAL43Q2n5qwUajGZJXZuzB7+gwNrQ1dKv3YuS4uhMp5d/qEERTLJuxqgQqgKM/4G99VD3cHYsVuaXGYwlWJj+qdp3KymwIMAMly4oZAsO6bAAAAAElFTkSuQmCC), url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAAQCAYAAAD0xERiAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoyREUxNDMzOEJCQzkxMUU2ODVBMUQ4Qzk1NTFCMDg5QSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDoyREUxNDMzOUJCQzkxMUU2ODVBMUQ4Qzk1NTFCMDg5QSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjJERTE0MzM2QkJDOTExRTY4NUExRDhDOTU1MUIwODlBIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjJERTE0MzM3QkJDOTExRTY4NUExRDhDOTU1MUIwODlBIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+NE9W1AAAA4ZJREFUeNpcU11oHFUYPXfunZ3dyWbZ3ezGpkk2sWmrpAgtKFVUqqIPFl980DffRLABxTcpFEEUVPBBX0Sxj74UfYugUBR8kKJg/CWmxfUnbtNNNtnszM7/3Hv7zWzNSi/MMHPvnDPnnO/7mNYaW99fQufKJYjSBBrzNoTJQNv5ovOyLjRfSgfdj+ltO9tjjJ4U0N+OkIY+msuPYuGxcxDZ4aC9hj8vfwazDHjzHFOtIpTMmOgmKk8uPv7Km+1fv/DSQec9xgUMzrB/I0FvU0JGRK55Tmbkf+IALxDOYvAchigwwQwLMjVQPXJyxZ5ponn3fS/AMIvcKkLKAoYDDW6NcEyMXBi4bWX2fCeBKDBYlclHphZaZ+Bew9TCzHKhXHuaSQV3NyblGuw27AFZloGmD5SUiIMUkR+hOt9asWw6CLYoxxCNY0svxnGC0BuRKTXC/bduCWQ1o4hTVnVyeqJqz9B9pjZXOVqfO/QU4r0cwCRDfa75UOgsf66tvXV3x70RutFWsD/cpor8TCTdnMywS888+Nw9H1YPTYFzTtFwOqeKqgA6yX8GRSY406x1onJ27jjOyqQMSSqHfQfdgf06ffRabjNxhxfXv7r6gYxT0u1Dhi6VfAiVhGQnoishUgfS+xuJ00bq7RAoUxxj49vep1Hfe+cgM84NudeOzq2t/n4hGLK8JVRKuaQJEaVQZFX6f1Eb7EMmER0HCAMLP3zpvL+9njwrOLwDsiwTah+EO7032t+1n49CnmhqtKwYKnJIySZZCkhpDJ2GiMnixhXvVeef3Ze5SXD1v2qWqiYai0B9sQKmvItOb/i11kauIvE6RBTRc4o0VyrhDsRPHMHb00dpYhaAiVphXE0hGFkF5SQRuqpYT7GUgdJgFzoe3pofY1QIlpUibCll3GFw3bVswCzxMVk0TOF06aVEgUMc4SZfzNSoaJcmoUB7FRjMowz9bFaJ0q9FgV5GEndlDEz66dimpK4mR9SskgSIk4USo+mLEYY2/v2jurq5gSe6ndonUVwncgOCB2RZ3uvvJwgGhPPlWJkiYhmOClFqiPtlEuDqWv+X7rX+ecvsr9ZmBfo9ffn6b+yjcoO/dXgpfoAL43Q2n5qwUajGZJXZuzB7+gwNrQ1dKv3YuS4uhMp5d/qEERTLJuxqgQqgKM/4G99VD3cHYsVuaXGYwlWJj+qdp3KymwIMAMly4oZAsO6bAAAAAElFTkSuQmCC), url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAAQCAYAAAD0xERiAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoyREUxNDMzOEJCQzkxMUU2ODVBMUQ4Qzk1NTFCMDg5QSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDoyREUxNDMzOUJCQzkxMUU2ODVBMUQ4Qzk1NTFCMDg5QSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjJERTE0MzM2QkJDOTExRTY4NUExRDhDOTU1MUIwODlBIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjJERTE0MzM3QkJDOTExRTY4NUExRDhDOTU1MUIwODlBIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+NE9W1AAAA4ZJREFUeNpcU11oHFUYPXfunZ3dyWbZ3ezGpkk2sWmrpAgtKFVUqqIPFl980DffRLABxTcpFEEUVPBBX0Sxj74UfYugUBR8kKJg/CWmxfUnbtNNNtnszM7/3Hv7zWzNSi/MMHPvnDPnnO/7mNYaW99fQufKJYjSBBrzNoTJQNv5ovOyLjRfSgfdj+ltO9tjjJ4U0N+OkIY+msuPYuGxcxDZ4aC9hj8vfwazDHjzHFOtIpTMmOgmKk8uPv7Km+1fv/DSQec9xgUMzrB/I0FvU0JGRK55Tmbkf+IALxDOYvAchigwwQwLMjVQPXJyxZ5ponn3fS/AMIvcKkLKAoYDDW6NcEyMXBi4bWX2fCeBKDBYlclHphZaZ+Bew9TCzHKhXHuaSQV3NyblGuw27AFZloGmD5SUiIMUkR+hOt9asWw6CLYoxxCNY0svxnGC0BuRKTXC/bduCWQ1o4hTVnVyeqJqz9B9pjZXOVqfO/QU4r0cwCRDfa75UOgsf66tvXV3x70RutFWsD/cpor8TCTdnMywS888+Nw9H1YPTYFzTtFwOqeKqgA6yX8GRSY406x1onJ27jjOyqQMSSqHfQfdgf06ffRabjNxhxfXv7r6gYxT0u1Dhi6VfAiVhGQnoishUgfS+xuJ00bq7RAoUxxj49vep1Hfe+cgM84NudeOzq2t/n4hGLK8JVRKuaQJEaVQZFX6f1Eb7EMmER0HCAMLP3zpvL+9njwrOLwDsiwTah+EO7032t+1n49CnmhqtKwYKnJIySZZCkhpDJ2GiMnixhXvVeef3Ze5SXD1v2qWqiYai0B9sQKmvItOb/i11kauIvE6RBTRc4o0VyrhDsRPHMHb00dpYhaAiVphXE0hGFkF5SQRuqpYT7GUgdJgFzoe3pofY1QIlpUibCll3GFw3bVswCzxMVk0TOF06aVEgUMc4SZfzNSoaJcmoUB7FRjMowz9bFaJ0q9FgV5GEndlDEz66dimpK4mR9SskgSIk4USo+mLEYY2/v2jurq5gSe6ndonUVwncgOCB2RZ3uvvJwgGhPPlWJkiYhmOClFqiPtlEuDqWv+X7rX+ecvsr9ZmBfo9ffn6b+yjcoO/dXgpfoAL43Q2n5qwUajGZJXZuzB7+gwNrQ1dKv3YuS4uhMp5d/qEERTLJuxqgQqgKM/4G99VD3cHYsVuaXGYwlWJj+qdp3KymwIMAMly4oZAsO6bAAAAAElFTkSuQmCC); background-repeat: no-repeat, no-repeat, no-repeat; background-position: 4px center, 11px center, 18px center; padding-left: 41px; } .icon-rate-opt-4 .jq-selectbox__select-text, .jq-selectbox li.option.icon-rate-opt-4 { background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAAQCAYAAAD0xERiAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoyREUxNDMzOEJCQzkxMUU2ODVBMUQ4Qzk1NTFCMDg5QSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDoyREUxNDMzOUJCQzkxMUU2ODVBMUQ4Qzk1NTFCMDg5QSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjJERTE0MzM2QkJDOTExRTY4NUExRDhDOTU1MUIwODlBIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjJERTE0MzM3QkJDOTExRTY4NUExRDhDOTU1MUIwODlBIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+NE9W1AAAA4ZJREFUeNpcU11oHFUYPXfunZ3dyWbZ3ezGpkk2sWmrpAgtKFVUqqIPFl980DffRLABxTcpFEEUVPBBX0Sxj74UfYugUBR8kKJg/CWmxfUnbtNNNtnszM7/3Hv7zWzNSi/MMHPvnDPnnO/7mNYaW99fQufKJYjSBBrzNoTJQNv5ovOyLjRfSgfdj+ltO9tjjJ4U0N+OkIY+msuPYuGxcxDZ4aC9hj8vfwazDHjzHFOtIpTMmOgmKk8uPv7Km+1fv/DSQec9xgUMzrB/I0FvU0JGRK55Tmbkf+IALxDOYvAchigwwQwLMjVQPXJyxZ5ponn3fS/AMIvcKkLKAoYDDW6NcEyMXBi4bWX2fCeBKDBYlclHphZaZ+Bew9TCzHKhXHuaSQV3NyblGuw27AFZloGmD5SUiIMUkR+hOt9asWw6CLYoxxCNY0svxnGC0BuRKTXC/bduCWQ1o4hTVnVyeqJqz9B9pjZXOVqfO/QU4r0cwCRDfa75UOgsf66tvXV3x70RutFWsD/cpor8TCTdnMywS888+Nw9H1YPTYFzTtFwOqeKqgA6yX8GRSY406x1onJ27jjOyqQMSSqHfQfdgf06ffRabjNxhxfXv7r6gYxT0u1Dhi6VfAiVhGQnoishUgfS+xuJ00bq7RAoUxxj49vep1Hfe+cgM84NudeOzq2t/n4hGLK8JVRKuaQJEaVQZFX6f1Eb7EMmER0HCAMLP3zpvL+9njwrOLwDsiwTah+EO7032t+1n49CnmhqtKwYKnJIySZZCkhpDJ2GiMnixhXvVeef3Ze5SXD1v2qWqiYai0B9sQKmvItOb/i11kauIvE6RBTRc4o0VyrhDsRPHMHb00dpYhaAiVphXE0hGFkF5SQRuqpYT7GUgdJgFzoe3pofY1QIlpUibCll3GFw3bVswCzxMVk0TOF06aVEgUMc4SZfzNSoaJcmoUB7FRjMowz9bFaJ0q9FgV5GEndlDEz66dimpK4mR9SskgSIk4USo+mLEYY2/v2jurq5gSe6ndonUVwncgOCB2RZ3uvvJwgGhPPlWJkiYhmOClFqiPtlEuDqWv+X7rX+ecvsr9ZmBfo9ffn6b+yjcoO/dXgpfoAL43Q2n5qwUajGZJXZuzB7+gwNrQ1dKv3YuS4uhMp5d/qEERTLJuxqgQqgKM/4G99VD3cHYsVuaXGYwlWJj+qdp3KymwIMAMly4oZAsO6bAAAAAElFTkSuQmCC), url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAAQCAYAAAD0xERiAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoyREUxNDMzOEJCQzkxMUU2ODVBMUQ4Qzk1NTFCMDg5QSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDoyREUxNDMzOUJCQzkxMUU2ODVBMUQ4Qzk1NTFCMDg5QSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjJERTE0MzM2QkJDOTExRTY4NUExRDhDOTU1MUIwODlBIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjJERTE0MzM3QkJDOTExRTY4NUExRDhDOTU1MUIwODlBIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+NE9W1AAAA4ZJREFUeNpcU11oHFUYPXfunZ3dyWbZ3ezGpkk2sWmrpAgtKFVUqqIPFl980DffRLABxTcpFEEUVPBBX0Sxj74UfYugUBR8kKJg/CWmxfUnbtNNNtnszM7/3Hv7zWzNSi/MMHPvnDPnnO/7mNYaW99fQufKJYjSBBrzNoTJQNv5ovOyLjRfSgfdj+ltO9tjjJ4U0N+OkIY+msuPYuGxcxDZ4aC9hj8vfwazDHjzHFOtIpTMmOgmKk8uPv7Km+1fv/DSQec9xgUMzrB/I0FvU0JGRK55Tmbkf+IALxDOYvAchigwwQwLMjVQPXJyxZ5ponn3fS/AMIvcKkLKAoYDDW6NcEyMXBi4bWX2fCeBKDBYlclHphZaZ+Bew9TCzHKhXHuaSQV3NyblGuw27AFZloGmD5SUiIMUkR+hOt9asWw6CLYoxxCNY0svxnGC0BuRKTXC/bduCWQ1o4hTVnVyeqJqz9B9pjZXOVqfO/QU4r0cwCRDfa75UOgsf66tvXV3x70RutFWsD/cpor8TCTdnMywS888+Nw9H1YPTYFzTtFwOqeKqgA6yX8GRSY406x1onJ27jjOyqQMSSqHfQfdgf06ffRabjNxhxfXv7r6gYxT0u1Dhi6VfAiVhGQnoishUgfS+xuJ00bq7RAoUxxj49vep1Hfe+cgM84NudeOzq2t/n4hGLK8JVRKuaQJEaVQZFX6f1Eb7EMmER0HCAMLP3zpvL+9njwrOLwDsiwTah+EO7032t+1n49CnmhqtKwYKnJIySZZCkhpDJ2GiMnixhXvVeef3Ze5SXD1v2qWqiYai0B9sQKmvItOb/i11kauIvE6RBTRc4o0VyrhDsRPHMHb00dpYhaAiVphXE0hGFkF5SQRuqpYT7GUgdJgFzoe3pofY1QIlpUibCll3GFw3bVswCzxMVk0TOF06aVEgUMc4SZfzNSoaJcmoUB7FRjMowz9bFaJ0q9FgV5GEndlDEz66dimpK4mR9SskgSIk4USo+mLEYY2/v2jurq5gSe6ndonUVwncgOCB2RZ3uvvJwgGhPPlWJkiYhmOClFqiPtlEuDqWv+X7rX+ecvsr9ZmBfo9ffn6b+yjcoO/dXgpfoAL43Q2n5qwUajGZJXZuzB7+gwNrQ1dKv3YuS4uhMp5d/qEERTLJuxqgQqgKM/4G99VD3cHYsVuaXGYwlWJj+qdp3KymwIMAMly4oZAsO6bAAAAAElFTkSuQmCC), url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAAQCAYAAAD0xERiAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoyREUxNDMzOEJCQzkxMUU2ODVBMUQ4Qzk1NTFCMDg5QSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDoyREUxNDMzOUJCQzkxMUU2ODVBMUQ4Qzk1NTFCMDg5QSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjJERTE0MzM2QkJDOTExRTY4NUExRDhDOTU1MUIwODlBIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjJERTE0MzM3QkJDOTExRTY4NUExRDhDOTU1MUIwODlBIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+NE9W1AAAA4ZJREFUeNpcU11oHFUYPXfunZ3dyWbZ3ezGpkk2sWmrpAgtKFVUqqIPFl980DffRLABxTcpFEEUVPBBX0Sxj74UfYugUBR8kKJg/CWmxfUnbtNNNtnszM7/3Hv7zWzNSi/MMHPvnDPnnO/7mNYaW99fQufKJYjSBBrzNoTJQNv5ovOyLjRfSgfdj+ltO9tjjJ4U0N+OkIY+msuPYuGxcxDZ4aC9hj8vfwazDHjzHFOtIpTMmOgmKk8uPv7Km+1fv/DSQec9xgUMzrB/I0FvU0JGRK55Tmbkf+IALxDOYvAchigwwQwLMjVQPXJyxZ5ponn3fS/AMIvcKkLKAoYDDW6NcEyMXBi4bWX2fCeBKDBYlclHphZaZ+Bew9TCzHKhXHuaSQV3NyblGuw27AFZloGmD5SUiIMUkR+hOt9asWw6CLYoxxCNY0svxnGC0BuRKTXC/bduCWQ1o4hTVnVyeqJqz9B9pjZXOVqfO/QU4r0cwCRDfa75UOgsf66tvXV3x70RutFWsD/cpor8TCTdnMywS888+Nw9H1YPTYFzTtFwOqeKqgA6yX8GRSY406x1onJ27jjOyqQMSSqHfQfdgf06ffRabjNxhxfXv7r6gYxT0u1Dhi6VfAiVhGQnoishUgfS+xuJ00bq7RAoUxxj49vep1Hfe+cgM84NudeOzq2t/n4hGLK8JVRKuaQJEaVQZFX6f1Eb7EMmER0HCAMLP3zpvL+9njwrOLwDsiwTah+EO7032t+1n49CnmhqtKwYKnJIySZZCkhpDJ2GiMnixhXvVeef3Ze5SXD1v2qWqiYai0B9sQKmvItOb/i11kauIvE6RBTRc4o0VyrhDsRPHMHb00dpYhaAiVphXE0hGFkF5SQRuqpYT7GUgdJgFzoe3pofY1QIlpUibCll3GFw3bVswCzxMVk0TOF06aVEgUMc4SZfzNSoaJcmoUB7FRjMowz9bFaJ0q9FgV5GEndlDEz66dimpK4mR9SskgSIk4USo+mLEYY2/v2jurq5gSe6ndonUVwncgOCB2RZ3uvvJwgGhPPlWJkiYhmOClFqiPtlEuDqWv+X7rX+ecvsr9ZmBfo9ffn6b+yjcoO/dXgpfoAL43Q2n5qwUajGZJXZuzB7+gwNrQ1dKv3YuS4uhMp5d/qEERTLJuxqgQqgKM/4G99VD3cHYsVuaXGYwlWJj+qdp3KymwIMAMly4oZAsO6bAAAAAElFTkSuQmCC), url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAAQCAYAAAD0xERiAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoyREUxNDMzOEJCQzkxMUU2ODVBMUQ4Qzk1NTFCMDg5QSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDoyREUxNDMzOUJCQzkxMUU2ODVBMUQ4Qzk1NTFCMDg5QSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjJERTE0MzM2QkJDOTExRTY4NUExRDhDOTU1MUIwODlBIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjJERTE0MzM3QkJDOTExRTY4NUExRDhDOTU1MUIwODlBIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+NE9W1AAAA4ZJREFUeNpcU11oHFUYPXfunZ3dyWbZ3ezGpkk2sWmrpAgtKFVUqqIPFl980DffRLABxTcpFEEUVPBBX0Sxj74UfYugUBR8kKJg/CWmxfUnbtNNNtnszM7/3Hv7zWzNSi/MMHPvnDPnnO/7mNYaW99fQufKJYjSBBrzNoTJQNv5ovOyLjRfSgfdj+ltO9tjjJ4U0N+OkIY+msuPYuGxcxDZ4aC9hj8vfwazDHjzHFOtIpTMmOgmKk8uPv7Km+1fv/DSQec9xgUMzrB/I0FvU0JGRK55Tmbkf+IALxDOYvAchigwwQwLMjVQPXJyxZ5ponn3fS/AMIvcKkLKAoYDDW6NcEyMXBi4bWX2fCeBKDBYlclHphZaZ+Bew9TCzHKhXHuaSQV3NyblGuw27AFZloGmD5SUiIMUkR+hOt9asWw6CLYoxxCNY0svxnGC0BuRKTXC/bduCWQ1o4hTVnVyeqJqz9B9pjZXOVqfO/QU4r0cwCRDfa75UOgsf66tvXV3x70RutFWsD/cpor8TCTdnMywS888+Nw9H1YPTYFzTtFwOqeKqgA6yX8GRSY406x1onJ27jjOyqQMSSqHfQfdgf06ffRabjNxhxfXv7r6gYxT0u1Dhi6VfAiVhGQnoishUgfS+xuJ00bq7RAoUxxj49vep1Hfe+cgM84NudeOzq2t/n4hGLK8JVRKuaQJEaVQZFX6f1Eb7EMmER0HCAMLP3zpvL+9njwrOLwDsiwTah+EO7032t+1n49CnmhqtKwYKnJIySZZCkhpDJ2GiMnixhXvVeef3Ze5SXD1v2qWqiYai0B9sQKmvItOb/i11kauIvE6RBTRc4o0VyrhDsRPHMHb00dpYhaAiVphXE0hGFkF5SQRuqpYT7GUgdJgFzoe3pofY1QIlpUibCll3GFw3bVswCzxMVk0TOF06aVEgUMc4SZfzNSoaJcmoUB7FRjMowz9bFaJ0q9FgV5GEndlDEz66dimpK4mR9SskgSIk4USo+mLEYY2/v2jurq5gSe6ndonUVwncgOCB2RZ3uvvJwgGhPPlWJkiYhmOClFqiPtlEuDqWv+X7rX+ecvsr9ZmBfo9ffn6b+yjcoO/dXgpfoAL43Q2n5qwUajGZJXZuzB7+gwNrQ1dKv3YuS4uhMp5d/qEERTLJuxqgQqgKM/4G99VD3cHYsVuaXGYwlWJj+qdp3KymwIMAMly4oZAsO6bAAAAAElFTkSuQmCC); background-repeat: no-repeat, no-repeat, no-repeat, no-repeat; background-position: 4px center, 11px center, 18px center, 25px center; padding-left: 48px; } .icon-rate-opt-5 .jq-selectbox__select-text, .icon-rate-opt-5 .jq-selectbox__select-text, .jq-selectbox li.option.icon-rate-opt-5 { background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAAQCAYAAAD0xERiAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoyREUxNDMzOEJCQzkxMUU2ODVBMUQ4Qzk1NTFCMDg5QSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDoyREUxNDMzOUJCQzkxMUU2ODVBMUQ4Qzk1NTFCMDg5QSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjJERTE0MzM2QkJDOTExRTY4NUExRDhDOTU1MUIwODlBIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjJERTE0MzM3QkJDOTExRTY4NUExRDhDOTU1MUIwODlBIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+NE9W1AAAA4ZJREFUeNpcU11oHFUYPXfunZ3dyWbZ3ezGpkk2sWmrpAgtKFVUqqIPFl980DffRLABxTcpFEEUVPBBX0Sxj74UfYugUBR8kKJg/CWmxfUnbtNNNtnszM7/3Hv7zWzNSi/MMHPvnDPnnO/7mNYaW99fQufKJYjSBBrzNoTJQNv5ovOyLjRfSgfdj+ltO9tjjJ4U0N+OkIY+msuPYuGxcxDZ4aC9hj8vfwazDHjzHFOtIpTMmOgmKk8uPv7Km+1fv/DSQec9xgUMzrB/I0FvU0JGRK55Tmbkf+IALxDOYvAchigwwQwLMjVQPXJyxZ5ponn3fS/AMIvcKkLKAoYDDW6NcEyMXBi4bWX2fCeBKDBYlclHphZaZ+Bew9TCzHKhXHuaSQV3NyblGuw27AFZloGmD5SUiIMUkR+hOt9asWw6CLYoxxCNY0svxnGC0BuRKTXC/bduCWQ1o4hTVnVyeqJqz9B9pjZXOVqfO/QU4r0cwCRDfa75UOgsf66tvXV3x70RutFWsD/cpor8TCTdnMywS888+Nw9H1YPTYFzTtFwOqeKqgA6yX8GRSY406x1onJ27jjOyqQMSSqHfQfdgf06ffRabjNxhxfXv7r6gYxT0u1Dhi6VfAiVhGQnoishUgfS+xuJ00bq7RAoUxxj49vep1Hfe+cgM84NudeOzq2t/n4hGLK8JVRKuaQJEaVQZFX6f1Eb7EMmER0HCAMLP3zpvL+9njwrOLwDsiwTah+EO7032t+1n49CnmhqtKwYKnJIySZZCkhpDJ2GiMnixhXvVeef3Ze5SXD1v2qWqiYai0B9sQKmvItOb/i11kauIvE6RBTRc4o0VyrhDsRPHMHb00dpYhaAiVphXE0hGFkF5SQRuqpYT7GUgdJgFzoe3pofY1QIlpUibCll3GFw3bVswCzxMVk0TOF06aVEgUMc4SZfzNSoaJcmoUB7FRjMowz9bFaJ0q9FgV5GEndlDEz66dimpK4mR9SskgSIk4USo+mLEYY2/v2jurq5gSe6ndonUVwncgOCB2RZ3uvvJwgGhPPlWJkiYhmOClFqiPtlEuDqWv+X7rX+ecvsr9ZmBfo9ffn6b+yjcoO/dXgpfoAL43Q2n5qwUajGZJXZuzB7+gwNrQ1dKv3YuS4uhMp5d/qEERTLJuxqgQqgKM/4G99VD3cHYsVuaXGYwlWJj+qdp3KymwIMAMly4oZAsO6bAAAAAElFTkSuQmCC), url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAAQCAYAAAD0xERiAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoyREUxNDMzOEJCQzkxMUU2ODVBMUQ4Qzk1NTFCMDg5QSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDoyREUxNDMzOUJCQzkxMUU2ODVBMUQ4Qzk1NTFCMDg5QSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjJERTE0MzM2QkJDOTExRTY4NUExRDhDOTU1MUIwODlBIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjJERTE0MzM3QkJDOTExRTY4NUExRDhDOTU1MUIwODlBIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+NE9W1AAAA4ZJREFUeNpcU11oHFUYPXfunZ3dyWbZ3ezGpkk2sWmrpAgtKFVUqqIPFl980DffRLABxTcpFEEUVPBBX0Sxj74UfYugUBR8kKJg/CWmxfUnbtNNNtnszM7/3Hv7zWzNSi/MMHPvnDPnnO/7mNYaW99fQufKJYjSBBrzNoTJQNv5ovOyLjRfSgfdj+ltO9tjjJ4U0N+OkIY+msuPYuGxcxDZ4aC9hj8vfwazDHjzHFOtIpTMmOgmKk8uPv7Km+1fv/DSQec9xgUMzrB/I0FvU0JGRK55Tmbkf+IALxDOYvAchigwwQwLMjVQPXJyxZ5ponn3fS/AMIvcKkLKAoYDDW6NcEyMXBi4bWX2fCeBKDBYlclHphZaZ+Bew9TCzHKhXHuaSQV3NyblGuw27AFZloGmD5SUiIMUkR+hOt9asWw6CLYoxxCNY0svxnGC0BuRKTXC/bduCWQ1o4hTVnVyeqJqz9B9pjZXOVqfO/QU4r0cwCRDfa75UOgsf66tvXV3x70RutFWsD/cpor8TCTdnMywS888+Nw9H1YPTYFzTtFwOqeKqgA6yX8GRSY406x1onJ27jjOyqQMSSqHfQfdgf06ffRabjNxhxfXv7r6gYxT0u1Dhi6VfAiVhGQnoishUgfS+xuJ00bq7RAoUxxj49vep1Hfe+cgM84NudeOzq2t/n4hGLK8JVRKuaQJEaVQZFX6f1Eb7EMmER0HCAMLP3zpvL+9njwrOLwDsiwTah+EO7032t+1n49CnmhqtKwYKnJIySZZCkhpDJ2GiMnixhXvVeef3Ze5SXD1v2qWqiYai0B9sQKmvItOb/i11kauIvE6RBTRc4o0VyrhDsRPHMHb00dpYhaAiVphXE0hGFkF5SQRuqpYT7GUgdJgFzoe3pofY1QIlpUibCll3GFw3bVswCzxMVk0TOF06aVEgUMc4SZfzNSoaJcmoUB7FRjMowz9bFaJ0q9FgV5GEndlDEz66dimpK4mR9SskgSIk4USo+mLEYY2/v2jurq5gSe6ndonUVwncgOCB2RZ3uvvJwgGhPPlWJkiYhmOClFqiPtlEuDqWv+X7rX+ecvsr9ZmBfo9ffn6b+yjcoO/dXgpfoAL43Q2n5qwUajGZJXZuzB7+gwNrQ1dKv3YuS4uhMp5d/qEERTLJuxqgQqgKM/4G99VD3cHYsVuaXGYwlWJj+qdp3KymwIMAMly4oZAsO6bAAAAAElFTkSuQmCC), url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAAQCAYAAAD0xERiAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoyREUxNDMzOEJCQzkxMUU2ODVBMUQ4Qzk1NTFCMDg5QSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDoyREUxNDMzOUJCQzkxMUU2ODVBMUQ4Qzk1NTFCMDg5QSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjJERTE0MzM2QkJDOTExRTY4NUExRDhDOTU1MUIwODlBIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjJERTE0MzM3QkJDOTExRTY4NUExRDhDOTU1MUIwODlBIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+NE9W1AAAA4ZJREFUeNpcU11oHFUYPXfunZ3dyWbZ3ezGpkk2sWmrpAgtKFVUqqIPFl980DffRLABxTcpFEEUVPBBX0Sxj74UfYugUBR8kKJg/CWmxfUnbtNNNtnszM7/3Hv7zWzNSi/MMHPvnDPnnO/7mNYaW99fQufKJYjSBBrzNoTJQNv5ovOyLjRfSgfdj+ltO9tjjJ4U0N+OkIY+msuPYuGxcxDZ4aC9hj8vfwazDHjzHFOtIpTMmOgmKk8uPv7Km+1fv/DSQec9xgUMzrB/I0FvU0JGRK55Tmbkf+IALxDOYvAchigwwQwLMjVQPXJyxZ5ponn3fS/AMIvcKkLKAoYDDW6NcEyMXBi4bWX2fCeBKDBYlclHphZaZ+Bew9TCzHKhXHuaSQV3NyblGuw27AFZloGmD5SUiIMUkR+hOt9asWw6CLYoxxCNY0svxnGC0BuRKTXC/bduCWQ1o4hTVnVyeqJqz9B9pjZXOVqfO/QU4r0cwCRDfa75UOgsf66tvXV3x70RutFWsD/cpor8TCTdnMywS888+Nw9H1YPTYFzTtFwOqeKqgA6yX8GRSY406x1onJ27jjOyqQMSSqHfQfdgf06ffRabjNxhxfXv7r6gYxT0u1Dhi6VfAiVhGQnoishUgfS+xuJ00bq7RAoUxxj49vep1Hfe+cgM84NudeOzq2t/n4hGLK8JVRKuaQJEaVQZFX6f1Eb7EMmER0HCAMLP3zpvL+9njwrOLwDsiwTah+EO7032t+1n49CnmhqtKwYKnJIySZZCkhpDJ2GiMnixhXvVeef3Ze5SXD1v2qWqiYai0B9sQKmvItOb/i11kauIvE6RBTRc4o0VyrhDsRPHMHb00dpYhaAiVphXE0hGFkF5SQRuqpYT7GUgdJgFzoe3pofY1QIlpUibCll3GFw3bVswCzxMVk0TOF06aVEgUMc4SZfzNSoaJcmoUB7FRjMowz9bFaJ0q9FgV5GEndlDEz66dimpK4mR9SskgSIk4USo+mLEYY2/v2jurq5gSe6ndonUVwncgOCB2RZ3uvvJwgGhPPlWJkiYhmOClFqiPtlEuDqWv+X7rX+ecvsr9ZmBfo9ffn6b+yjcoO/dXgpfoAL43Q2n5qwUajGZJXZuzB7+gwNrQ1dKv3YuS4uhMp5d/qEERTLJuxqgQqgKM/4G99VD3cHYsVuaXGYwlWJj+qdp3KymwIMAMly4oZAsO6bAAAAAElFTkSuQmCC), url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAAQCAYAAAD0xERiAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoyREUxNDMzOEJCQzkxMUU2ODVBMUQ4Qzk1NTFCMDg5QSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDoyREUxNDMzOUJCQzkxMUU2ODVBMUQ4Qzk1NTFCMDg5QSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjJERTE0MzM2QkJDOTExRTY4NUExRDhDOTU1MUIwODlBIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjJERTE0MzM3QkJDOTExRTY4NUExRDhDOTU1MUIwODlBIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+NE9W1AAAA4ZJREFUeNpcU11oHFUYPXfunZ3dyWbZ3ezGpkk2sWmrpAgtKFVUqqIPFl980DffRLABxTcpFEEUVPBBX0Sxj74UfYugUBR8kKJg/CWmxfUnbtNNNtnszM7/3Hv7zWzNSi/MMHPvnDPnnO/7mNYaW99fQufKJYjSBBrzNoTJQNv5ovOyLjRfSgfdj+ltO9tjjJ4U0N+OkIY+msuPYuGxcxDZ4aC9hj8vfwazDHjzHFOtIpTMmOgmKk8uPv7Km+1fv/DSQec9xgUMzrB/I0FvU0JGRK55Tmbkf+IALxDOYvAchigwwQwLMjVQPXJyxZ5ponn3fS/AMIvcKkLKAoYDDW6NcEyMXBi4bWX2fCeBKDBYlclHphZaZ+Bew9TCzHKhXHuaSQV3NyblGuw27AFZloGmD5SUiIMUkR+hOt9asWw6CLYoxxCNY0svxnGC0BuRKTXC/bduCWQ1o4hTVnVyeqJqz9B9pjZXOVqfO/QU4r0cwCRDfa75UOgsf66tvXV3x70RutFWsD/cpor8TCTdnMywS888+Nw9H1YPTYFzTtFwOqeKqgA6yX8GRSY406x1onJ27jjOyqQMSSqHfQfdgf06ffRabjNxhxfXv7r6gYxT0u1Dhi6VfAiVhGQnoishUgfS+xuJ00bq7RAoUxxj49vep1Hfe+cgM84NudeOzq2t/n4hGLK8JVRKuaQJEaVQZFX6f1Eb7EMmER0HCAMLP3zpvL+9njwrOLwDsiwTah+EO7032t+1n49CnmhqtKwYKnJIySZZCkhpDJ2GiMnixhXvVeef3Ze5SXD1v2qWqiYai0B9sQKmvItOb/i11kauIvE6RBTRc4o0VyrhDsRPHMHb00dpYhaAiVphXE0hGFkF5SQRuqpYT7GUgdJgFzoe3pofY1QIlpUibCll3GFw3bVswCzxMVk0TOF06aVEgUMc4SZfzNSoaJcmoUB7FRjMowz9bFaJ0q9FgV5GEndlDEz66dimpK4mR9SskgSIk4USo+mLEYY2/v2jurq5gSe6ndonUVwncgOCB2RZ3uvvJwgGhPPlWJkiYhmOClFqiPtlEuDqWv+X7rX+ecvsr9ZmBfo9ffn6b+yjcoO/dXgpfoAL43Q2n5qwUajGZJXZuzB7+gwNrQ1dKv3YuS4uhMp5d/qEERTLJuxqgQqgKM/4G99VD3cHYsVuaXGYwlWJj+qdp3KymwIMAMly4oZAsO6bAAAAAElFTkSuQmCC), url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAAQCAYAAAD0xERiAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoyREUxNDMzOEJCQzkxMUU2ODVBMUQ4Qzk1NTFCMDg5QSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDoyREUxNDMzOUJCQzkxMUU2ODVBMUQ4Qzk1NTFCMDg5QSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjJERTE0MzM2QkJDOTExRTY4NUExRDhDOTU1MUIwODlBIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjJERTE0MzM3QkJDOTExRTY4NUExRDhDOTU1MUIwODlBIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+NE9W1AAAA4ZJREFUeNpcU11oHFUYPXfunZ3dyWbZ3ezGpkk2sWmrpAgtKFVUqqIPFl980DffRLABxTcpFEEUVPBBX0Sxj74UfYugUBR8kKJg/CWmxfUnbtNNNtnszM7/3Hv7zWzNSi/MMHPvnDPnnO/7mNYaW99fQufKJYjSBBrzNoTJQNv5ovOyLjRfSgfdj+ltO9tjjJ4U0N+OkIY+msuPYuGxcxDZ4aC9hj8vfwazDHjzHFOtIpTMmOgmKk8uPv7Km+1fv/DSQec9xgUMzrB/I0FvU0JGRK55Tmbkf+IALxDOYvAchigwwQwLMjVQPXJyxZ5ponn3fS/AMIvcKkLKAoYDDW6NcEyMXBi4bWX2fCeBKDBYlclHphZaZ+Bew9TCzHKhXHuaSQV3NyblGuw27AFZloGmD5SUiIMUkR+hOt9asWw6CLYoxxCNY0svxnGC0BuRKTXC/bduCWQ1o4hTVnVyeqJqz9B9pjZXOVqfO/QU4r0cwCRDfa75UOgsf66tvXV3x70RutFWsD/cpor8TCTdnMywS888+Nw9H1YPTYFzTtFwOqeKqgA6yX8GRSY406x1onJ27jjOyqQMSSqHfQfdgf06ffRabjNxhxfXv7r6gYxT0u1Dhi6VfAiVhGQnoishUgfS+xuJ00bq7RAoUxxj49vep1Hfe+cgM84NudeOzq2t/n4hGLK8JVRKuaQJEaVQZFX6f1Eb7EMmER0HCAMLP3zpvL+9njwrOLwDsiwTah+EO7032t+1n49CnmhqtKwYKnJIySZZCkhpDJ2GiMnixhXvVeef3Ze5SXD1v2qWqiYai0B9sQKmvItOb/i11kauIvE6RBTRc4o0VyrhDsRPHMHb00dpYhaAiVphXE0hGFkF5SQRuqpYT7GUgdJgFzoe3pofY1QIlpUibCll3GFw3bVswCzxMVk0TOF06aVEgUMc4SZfzNSoaJcmoUB7FRjMowz9bFaJ0q9FgV5GEndlDEz66dimpK4mR9SskgSIk4USo+mLEYY2/v2jurq5gSe6ndonUVwncgOCB2RZ3uvvJwgGhPPlWJkiYhmOClFqiPtlEuDqWv+X7rX+ecvsr9ZmBfo9ffn6b+yjcoO/dXgpfoAL43Q2n5qwUajGZJXZuzB7+gwNrQ1dKv3YuS4uhMp5d/qEERTLJuxqgQqgKM/4G99VD3cHYsVuaXGYwlWJj+qdp3KymwIMAMly4oZAsO6bAAAAAElFTkSuQmCC); background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat; background-position: 4px center, 11px center, 18px center, 25px center, 32px center; padding-left: 55px; } .evaluation-table td { padding: 5px; cursor: pointer; } div.bug.tracker { padding: 7px; background: #424B5F; border-radius: 3px 3px 0 0; } div.bug.tracker textarea { margin: 5px; width: calc(100% - 10px); } div.bug.tracker input[type="button"] { margin: 5px; } div.bug.block { position: fixed; min-width: 400px; bottom: -141px; z-index: 999; left: 5px; transition: all 0.5s ease-out 0s; max-width: 40%; } div.bug.block i.fa-bug { color: white; background: #424B5F; padding: 7px; cursor: pointer; margin-left: 10px; border-radius: 3px 3px 0 0; position: absolute; top: -38px; } /* Диалоги */ .dialogs { padding: 0 15px; } .dialog { width: 100%; padding: 15px; border-bottom: 1px solid #F1FCFF; background: #ffffff none repeat scroll 0 0; transition: background 0.3s ease 0s; display: block; position: relative; height: 100px; text-decoration: none; } .dialog img.avatar { border-radius: 50%; height: 60px; width: 60px; } .dialog:hover { background: #f3f6f9 none repeat scroll 0 0; } .dialogs > a:hover, .dialogs > a:active, .dialogs > a:focus { text-decoration: none; } .dialogs > a { text-decoration: none; width: 100%; } .dialog .avatar-block { float: left; left: 10px; margin: 5px 15px 5px 5px; position: absolute; } .dialog .chat_body { margin-left: 80px; } .dialog .chat_body .title { color: #111; font-size: 18px; font-weight: bold; margin: 5px 0 0; padding: 0; transition: color 0.3s ease 0s; margin-bottom: 5px; } .dialog .chat_body .time { color: #9dadc4; font-size: 10px; transition: color 0.3s ease 0s; padding: 3px 5px; } .dialog .chat_body p { color: #aaa; font-size: 13px; margin-bottom: 0; padding-bottom: 0; transition: color 0.3s ease 0s; padding: 3px 5px; } .dialog .chat_body p.unread { background: #f3f6f9 none repeat scroll 0 0; } /* Сообщения */ .messages { padding: 0 15px; } .messages .message { width: 100%; padding: 15px; border-bottom: 1px solid #F1FCFF; background: #ffffff none repeat scroll 0 0; transition: background 0.3s ease 0s; display: block; position: relative; height: 100px; text-decoration: none; } .messages .message img.avatar { border-radius: 50%; height: 60px; width: 60px; } .messages > a:hover, .messages > a:active, .messages > a:focus { text-decoration: none; } .messages > a { text-decoration: none; width: 100%; } .messages .message .avatar-block { float: left; left: 10px; margin: 5px 15px 5px 5px; position: absolute; } .messages .message .chat_body { margin-left: 80px; } .messages .message .chat_body .title { font-weight: bold; margin: 5px 0 0; padding: 0; transition: color 0.3s ease 0s; margin-bottom: 5px; } .messages .message .chat_body .time { color: #9dadc4; font-size: 10px; transition: color 0.3s ease 0s; padding: 3px 5px; } .messages .message .chat_body p { color: #aaa; font-size: 13px; margin-bottom: 0; padding-bottom: 0; transition: color 0.3s ease 0s; padding: 5px 0px; } .messages .message .chat_body p.unread { background: #f3f6f9 none repeat scroll 0 0; } .response { padding: 10px; } .response textarea { width: calc(100% - 60px); } .response .send-button { color: #4F5A6E; cursor: pointer; margin: 10px; } /* Голосования */ .polls { width: 100%; padding: 0 15px; } .polls-cat { width: 100%; background: white; border-bottom: 1px solid #F1FCFF; transition: all 0.3s ease 0s; } .polls-cat .polls-cat-title[aria-expanded="false"]:hover { background: #F3F6F9; } .polls-cat .polls-cat-title[aria-expanded="true"] { background: #EEF1F4; border-bottom: 1px solid #eceff2; } .polls-cat .polls-cat-title { padding: 20px 30px; cursor: pointer; } .polls-cat .polls-cat-title span { color: #9dadc4; font-size: 10px; margin-top: 3px; } .polls-cat .polls-list { background: #F3F6F9; padding: 10px; } .polls-cat .polls-list ul { list-style: none; padding: 0px; margin: 0px; } li.poll-row { padding: 5px 20px; } .poll-row a, .poll-row a:hover { text-decoration: none; } .poll-title { font-size: 16px; color: black; margin-left: 40px; } .poll-row .fa-question { float: left; font-size: 22px; margin-left: 10px; margin-top: -1px; } .poll-row .questions { color: #9dadc4; font-size: 10px; margin-top: 3px; } .poll-title .cat { border-radius: 30px; color: #fff; display: inline; font-size: 10px; font-weight: bold; padding: 3px 7px; position: relative; top: -2px; white-space: nowrap; } .poll-page { padding: 0 15px; } .poll-wizard .navbar { margin-top: 10px; margin-bottom: 0px; } .poll-wizard .navbar li { margin: 3px; } .poll-wizard .navbar li a { padding: 5px 10px; } .poll-wizard .progress { height: 10px; } .poll-wizard .tab-pane { padding: 10px; } .poll-wizard .tab-pane .question { font-size: 18px; margin-bottom: 20px; } .poll-wizard .tab-pane .answers { margin: 0 20px; } .poll-wizard .tab-pane .answers label { display: block; margin: 10px 15px; font-weight: normal; cursor: pointer; } .poll-wizard .tab-pane .answers label > div { margin-right: 10px; margin-top: -1px; } .wizard.control { padding-left: 0; margin: 20px 0; list-style: none; text-align: center; } .wizard.control li { display: inline; } .wizard.control li.disabled a { color: darkgrey; cursor: default; } .wizard.control li.disabled a:hover, .wizard.control li.disabled a:active, .wizard.control li.disabled a:focus { text-decoration: none; } .wizard.control li a { text-decoration: none; display: inline; padding: 10px; } .wizard.control li a:hover { background: #f3f3f3; border-radius: 3px; } .wizard.control li.previous a { float: left; } .wizard.control li.next a { float: right; } .wizard.control li.finish button { float: right; margin-top: 3px; } /* Цвета */ .text-red{color:#dd4b39!important}.text-yellow{color:#f39c12!important}.text-aqua{color:#00c0ef!important}.text-blue{color:#0073b7!important}.text-black{color:#111!important}.text-light-blue{color:#3c8dbc!important}.text-green{color:#00a65a!important}.text-gray{color:#d2d6de!important}.text-navy{color:#001F3F!important}.text-teal{color:#39CCCC!important}.text-olive{color:#3D9970!important}.text-lime{color:#01FF70!important}.text-orange{color:#FF851B!important}.text-fuchsia{color:#F012BE!important}.text-purple{color:#605ca8!important}.text-maroon{color:#D81B60!important}
46.907763
2,462
0.847199
2a04b5e61133f1109d87cb57307dd2d7839de70c
1,844
sql
SQL
tool-box/audit-log-detection-samples/queries/modify_policy.sql
pradeepsavadi/treasure-boxes
d169605492b68a96ca1bac7d162ed6907a946fb5
[ "MIT" ]
52
2019-07-27T07:59:29.000Z
2022-02-20T16:32:35.000Z
tool-box/audit-log-detection-samples/queries/modify_policy.sql
pradeepsavadi/treasure-boxes
d169605492b68a96ca1bac7d162ed6907a946fb5
[ "MIT" ]
62
2019-07-23T08:18:32.000Z
2022-02-10T01:48:24.000Z
tool-box/audit-log-detection-samples/queries/modify_policy.sql
isabella232/treasure-boxes
a7eb9a6416a71d4e0af8e6a9a2f5ed2a49d7961f
[ "MIT" ]
54
2019-07-23T14:22:09.000Z
2022-01-19T21:28:21.000Z
with source as ( select td_time_format(time, 'yyyy-MM-dd HH:mm:ss', 'JST') as time ,id ,resource_id as policy_id ,resource_name as policy_name ,new_value ,old_value from access where td_interval(time, '-1d', 'JST') and event_name = 'permission_policy_modify' and resource_name = 'test_ysmr_user' ) ,old as ( select time ,policy_id ,policy_name ,id ,k as item ,array_sort(array_agg(json_extract_scalar(v2, '$.operation'))) as value from ( select time ,policy_id ,policy_name ,id ,k, v from source cross join unnest(cast(json_parse(old_value) as map<varchar, array<json>>)) as t(k, v) ) t cross join unnest(v) as t(v2) group by 1,2,3,4,5 ) ,new as ( select time ,policy_id ,policy_name ,id ,k as item ,array_sort(array_agg(json_extract_scalar(v2, '$.operation'))) as value from ( select time ,policy_id ,policy_name ,id ,k, v from source cross join unnest(cast(json_parse(new_value) as map<varchar, array<json>>)) as t(k, v) ) t cross join unnest(v) as t(v2) group by 1,2,3,4,5 ) select COALESCE(new.time, old.time) as time ,COALESCE(new.id, old.id) as id ,COALESCE(new.policy_id, old.policy_id) as policy_id ,COALESCE(new.policy_name, old.policy_name) as policy_name ,COALESCE(new.item, old.item) as item ,new.value as new_value ,old.value as old_value from new full outer join old on new.id = old.id and new.item = old.item where COALESCE(new.item, old.item) != 'Integrations' and ( array_join(new.value, ',') != array_join(old.value, ',') or array_join(new.value, ',') is null or array_join(old.value, ',') is null ) order by id
18.626263
81
0.610629
fe1c51a8687fe3ad107744d9d516ae90c071eafe
8,747
c
C
indigo_drivers/ccd_iidc/externals/libdc1394/dc1394/vendor/basler_sff_registry.c
RusDavies/indigo
f46003ffd0d9f5fd5d3cf1daf8292ca216ad982f
[ "RSA-MD" ]
83
2016-11-02T19:37:05.000Z
2022-03-25T00:46:48.000Z
indigo_drivers/ccd_iidc/externals/libdc1394/dc1394/vendor/basler_sff_registry.c
RusDavies/indigo
f46003ffd0d9f5fd5d3cf1daf8292ca216ad982f
[ "RSA-MD" ]
202
2016-11-05T10:58:09.000Z
2022-03-30T23:51:45.000Z
indigo_drivers/ccd_iidc/externals/libdc1394/dc1394/vendor/basler_sff_registry.c
RusDavies/indigo
f46003ffd0d9f5fd5d3cf1daf8292ca216ad982f
[ "RSA-MD" ]
57
2016-12-15T06:43:29.000Z
2022-03-10T17:53:16.000Z
/* * 1394-Based Digital Camera Control Library * * Basler Smart Feature Framework specific extensions * * Written by Mikael Olenfalk <mikael _DOT_ olenfalk _AT_ tobii _DOT_ com> * * Copyright (C) 2006 Tobii Technology AB, Stockholm Sweden * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #include <memory.h> #include <stdint.h> #include "../control.h" #include "basler_sff_registry.h" const struct sff_feature const sff_feature_registry[] = { /* DC1394_BASLER_SFF_EXTENDED_DATA_STREAM */ { /* name */ "Extended Data Stream", /* feature_id */ DC1394_BASLER_SFF_EXTENDED_DATA_STREAM, /* csr_guid */ {0x4e7abcb0, 0x1b84, 0x11d8, {0x96, 0x51, 0x00, 0x10, 0x5a, 0x5b, 0xae, 0x55}}, /* chunk_guid */ {0x94ed7c88, 0x1c0f, 0x11d8, {0x82, 0xe0, 0x00, 0x10, 0x5a, 0x5b, 0xae, 0x55}}, /* has_chunk */ DC1394_TRUE, /* generic */ DC1394_TRUE, /* data_size */ sizeof(dc1394basler_sff_extended_data_stream_t) }, /* DC1394_BASLER_SFF_FRAME_COUNTER */ { /* name */ "Frame Counter", /* feature_id */ DC1394_BASLER_SFF_FRAME_COUNTER, /* csr_guid */ {0x4433c4a4, 0x1b84, 0x11d8, {0x86, 0xb2, 0x00, 0x10, 0x5a, 0x5b, 0xae, 0x55}}, /* chunk_guid */ {0x8c5db844, 0x1c0f, 0x11d8, {0x96, 0x5f, 0x00, 0x10, 0x5a, 0x5b, 0xae, 0x55}}, /* has_chunk */ DC1394_TRUE, /* generic */ DC1394_TRUE, /* data_size */ sizeof(dc1394basler_sff_frame_counter_t) }, /* DC1394_BASLER_SFF_CYCLE_TIME_STAMP */ { /* name */ "Cycle Time Stamp", /* feature_id */ DC1394_BASLER_SFF_CYCLE_TIME_STAMP, /* csr_guid */ {0x5590d58e, 0x1b84, 0x11d8, {0x84, 0x47, 0x00, 0x10, 0x5a, 0x5b, 0xae, 0x55}}, /* chunk_guid */ {0x994dd430, 0x1c0f, 0x11d8, {0x8f, 0x6b, 0x00, 0x10, 0x5a, 0x5b, 0xae, 0x55}}, /* has_chunk */ DC1394_TRUE, /* generic */ DC1394_TRUE, /* data_size */ sizeof(dc1394basler_sff_cycle_time_stamp_t) }, /* DC1394_BASLER_SFF_DCAM_VALUES */ { /* name */ "DCAM Values", /* feature_id */ DC1394_BASLER_SFF_DCAM_VALUES, /* csr_guid */ {0x494de528, 0x1b84, 0x11d8, {0x8a, 0x0c, 0x00, 0x10, 0x5a, 0x5b, 0xae, 0x55}}, /* chunk_guid */ {0x911c8982, 0x1c0f, 0x11d8, {0x8a, 0xf0, 0x00, 0x10, 0x5a, 0x5b, 0xae, 0x55}}, /* has_chunk */ DC1394_TRUE, /* generic */ DC1394_TRUE, /* data_size */ sizeof(dc1394basler_sff_dcam_values_t) }, /* DC1394_BASLER_SFF_CRC_CHECKSUM */ { /* name */ "CRC Checksum", /* feature_id */ DC1394_BASLER_SFF_CRC_CHECKSUM, /* csr_guid */ {0x3b34004e, 0x1b84, 0x11d8, {0x83, 0xb3, 0x00, 0x10, 0x5a, 0x5b, 0xae, 0x55}}, /* chunk_guid */ {0, 0, 0, {0, 0, 0, 0, 0, 0, 0, 0} /* not used */ }, /* has_chunk */ DC1394_FALSE, /* generic */ DC1394_TRUE, /* data_size */ 0 }, /* DC1394_BASLER_SFF_TEST_IMAGES */ { /* name */ "Test Images", /* feature_id */ DC1394_BASLER_SFF_TEST_IMAGES, /* csr_guid */ {0x2a411342, 0xc0ca, 0x4368, {0xb4, 0x6e, 0xee, 0x5d, 0xee, 0xbf, 0x05, 0x48}}, /* chunk_guid */ {0, 0, 0, {0, 0, 0, 0, 0, 0, 0, 0} /* not used */ }, /* has_chunk */ DC1394_FALSE, /* generic */ DC1394_FALSE, /* data_size */ 0 }, /* DC1394_BASLER_SFF_EXTENDED_VERSION_INFO */ { /* name */ "Extended Version Info", /* feature_id */ DC1394_BASLER_SFF_EXTENDED_VERSION_INFO, /* csr_guid */ {0x2b2d8714, 0xc15e, 0x4176, {0xa2, 0x35, 0x6e, 0xf8, 0x43, 0xd7, 0x47, 0xb4}}, /* chunk_guid */ {0, 0, 0, {0, 0, 0, 0, 0, 0, 0, 0} /* not used */ }, /* has_chunk */ DC1394_FALSE, /* generic */ DC1394_FALSE, /* data_size */ 0 }, /* DC1394_BASLER_SFF_LOOKUP_TABLE */ { /* name */ "Lookup Table", /* feature_id */ DC1394_BASLER_SFF_LOOKUP_TABLE, /* csr_guid */ {0xb28c667c, 0xdf9d, 0x11d7, {0x86, 0x93, 0x00, 0x0c, 0x6e, 0x0b, 0xd1, 0xb0}}, /* chunk_guid */ {0, 0, 0, {0, 0, 0, 0, 0, 0, 0, 0} /* not used */ }, /* has_chunk */ DC1394_FALSE, /* generic */ DC1394_TRUE, /* data_size */ 0 }, /* DC1394_BASLER_SFF_TRIGGER_FLAG_AND_COUNTER */ { /* name */ "Trigger Flag and Counter", /* feature_id */ DC1394_BASLER_SFF_TRIGGER_FLAG_AND_COUNTER, /* csr_guid */ {0x16c31a78, 0x3f75, 0x11d8, {0x94, 0xec, 0x00, 0x10, 0x5a, 0x5b, 0xae, 0x55}}, /* chunk_guid */ {0, 0, 0, {0, 0, 0, 0, 0, 0, 0, 0} /* not used */ }, /* has_chunk */ DC1394_FALSE, /* generic */ DC1394_FALSE, /* data_size */ 0 }, /* DC1394_BASLER_SFF_OUTPUT_PORT_0_CONFIGURATION */ { /* name */ "Output Port 0 Configuration", /* feature_id */ DC1394_BASLER_SFF_OUTPUT_PORT_0_CONFIGURATION, /* csr_guid */ {0x5a889d7e, 0x41e5, 0x11d8, {0x84, 0x5b, 0x00, 0x10, 0x5a, 0x5b, 0xae, 0x55}}, /* chunk_guid */ {0, 0, 0, {0, 0, 0, 0, 0, 0, 0, 0} /* not used */ }, /* has_chunk */ DC1394_FALSE, /* generic */ DC1394_FALSE, /* data_size */ 0 }, /* DC1394_BASLER_SFF_OUTPUT_PORT_1_CONFIGURATION */ { /* name */ "Output Port 1 Configuration", /* feature_id */ DC1394_BASLER_SFF_OUTPUT_PORT_1_CONFIGURATION, /* csr_guid */ {0x949d820a, 0x4513, 0x11d8, {0x9e, 0xb1, 0x00, 0x10, 0x5a, 0x5b, 0xae, 0x55}}, /* chunk_guid */ {0, 0, 0, {0, 0, 0, 0, 0, 0, 0, 0} /* not used */ }, /* has_chunk */ DC1394_FALSE, /* generic */ DC1394_FALSE, /* data_size */ 0 }, /* DC1394_BASLER_SFF_OUTPUT_PORT_2_CONFIGURATION */ { /* name */ "Output Port 2 Configuration", /* feature_id */ DC1394_BASLER_SFF_OUTPUT_PORT_2_CONFIGURATION, /* csr_guid */ {0xc14e5072, 0x4513, 0x11d8, {0x81, 0xf3, 0x00, 0x10, 0x5a, 0x5b, 0xae, 0x55}}, /* chunk_guid */ {0, 0, 0, {0, 0, 0, 0, 0, 0, 0, 0} /* not used */ }, /* has_chunk */ DC1394_FALSE, /* generic */ DC1394_FALSE, /* data_size */ 0 }, /* DC1394_BASLER_SFF_OUTPUT_PORT_3_CONFIGURATION */ { /* name */ "Output Port 3 Configuration", /* feature_id */ DC1394_BASLER_SFF_OUTPUT_PORT_3_CONFIGURATION, /* csr_guid */ {0x949d820a, 0x4513, 0x11d8, {0x9e, 0xb1, 0x00, 0x10, 0x5a, 0x5b, 0xae, 0x55}}, /* chunk_guid */ {0, 0, 0, {0, 0, 0, 0, 0, 0, 0, 0} /* not used */ }, /* has_chunk */ DC1394_FALSE, /* generic */ DC1394_FALSE, /* data_size */ 0 } }; const uint32_t sff_feature_registry_size = sizeof (sff_feature_registry) / sizeof (sff_feature); /* * finds a feature by its API id */ const sff_feature* basler_sff_registry_find_by_id (dc1394basler_sff_feature_t feature_id) { if (feature_id < DC1394_BASLER_SFF_FEATURE_MIN || feature_id >= DC1394_BASLER_SFF_FEATURE_MAX || feature_id >= sff_feature_registry_size) return NULL; return &(sff_feature_registry[feature_id]); } /* * finds a feature by its CSR GUID */ const sff_feature* basler_sff_registry_find_by_csr_guid (dc1394basler_sff_guid_t* csr_guid) { uint32_t i; if (csr_guid == NULL) return NULL; for(i = 0; i < sff_feature_registry_size; i++) { if (!memcmp (&(sff_feature_registry[i].csr_guid), csr_guid, sizeof(dc1394basler_sff_guid_t))) return &(sff_feature_registry[i]); } return NULL; } /* * finds a feature by its CHUNK GUID */ const sff_feature* basler_sff_registry_find_by_chunk_guid (dc1394basler_sff_guid_t* chunk_guid) { uint32_t i; if (chunk_guid == NULL) return NULL; for(i = 0; i < sff_feature_registry_size; i++) { if (!memcmp (&(sff_feature_registry[i].chunk_guid), chunk_guid, sizeof(dc1394basler_sff_guid_t))) return &(sff_feature_registry[i]); } return NULL; }
39.759091
105
0.601921
a7b7d844a1ca8ba287a4d74bd1b17c583082a633
360
kt
Kotlin
app/src/main/java/com/avito/composetestingkit/common/C.kt
RuslanMingaliev/compose-testing-kit
3cbdcc2cbb236012ca3343e2ba5272039858f099
[ "Apache-2.0" ]
null
null
null
app/src/main/java/com/avito/composetestingkit/common/C.kt
RuslanMingaliev/compose-testing-kit
3cbdcc2cbb236012ca3343e2ba5272039858f099
[ "Apache-2.0" ]
null
null
null
app/src/main/java/com/avito/composetestingkit/common/C.kt
RuslanMingaliev/compose-testing-kit
3cbdcc2cbb236012ca3343e2ba5272039858f099
[ "Apache-2.0" ]
null
null
null
@file:Suppress("ClassName") package com.avito.composetestingkit.common // Like R, but C object C { object tag { const val root = "root" const val display = "display" const val control_panel = "control_panel" const val increase = "increase" const val decrease = "decrease" const val value = "value" } }
22.5
49
0.616667
64a14d0794f3d794e537cc02a1721c71f1e5117f
194
asm
Assembly
sw/552tests/inst_tests/jalr_18.asm
JPShen-UWM/ThreadKraken
849c510531f28e36d3469535737b2120bd774935
[ "MIT" ]
1
2022-02-15T16:03:25.000Z
2022-02-15T16:03:25.000Z
sw/552tests/inst_tests/jalr_18.asm
JPShen-UWM/ThreadKraken
849c510531f28e36d3469535737b2120bd774935
[ "MIT" ]
null
null
null
sw/552tests/inst_tests/jalr_18.asm
JPShen-UWM/ThreadKraken
849c510531f28e36d3469535737b2120bd774935
[ "MIT" ]
null
null
null
// Original test: ./neel/hw4/problem6/jalr_0.asm // Author: neel // Test source code follows //Tests jalr //branches to inst lbi r3,30 lbi r1,255 lbi r2,6 jalr r2,2 lbi r3,20 lbi r3,30 halt
12.933333
48
0.701031
3b5509ab9bc44379de347b303260e36f24fb16eb
854
h
C
src/Pods/SPLCore/SPLCore/Additions/UIView+SPLAdditions.h
splinesoft/MUDRammer
944666d46ae4f3a90165953608706286c9f32df5
[ "MIT" ]
76
2015-06-28T17:10:09.000Z
2022-02-26T16:05:00.000Z
SPLCore/Additions/UIView+SPLAdditions.h
splinesoft/SPLCore
cf636a6f8947b9665e77d98f71c1b4a867912da0
[ "MIT" ]
465
2015-01-02T16:31:21.000Z
2020-01-21T21:49:26.000Z
SPLCore/Additions/UIView+SPLAdditions.h
splinesoft/SPLCore
cf636a6f8947b9665e77d98f71c1b4a867912da0
[ "MIT" ]
34
2015-06-28T18:56:01.000Z
2022-02-09T18:37:57.000Z
// // UIView+SPLAdditions.h // SPLCore // // Created by Jonathan Hersh on 3/12/14. // Copyright (c) 2014 Jonathan Hersh. All rights reserved. // @import UIKit; @interface UIView (SPLAdditions) // wrap this view in a barbuttonitem. - (UIBarButtonItem *) wrappedBarButtonItem; /** * UIInterpolatingMotionEffect for the 'center' property, both X and Y. */ - (void) addCenteredInterpolatingMotionEffectWithBounds:(NSUInteger)bounds; /** * UIInterpolatingMotionEffect for either horizontal or vertical with the given max and (negative) min. */ - (void) addInterpolatingMotionEffectWithKeyPath:(NSString *)keyPath bound:(NSUInteger)bound type:(UIInterpolatingMotionEffectType)type; /** * Remove all motion effects. */ - (void) removeAllMotionEffects; @end
25.117647
103
0.673302
2a10de3b98a44f94bc0febcf025d64e19c01e22e
2,079
java
Java
src/main/java/dsr/amm/homebudget/data/entity/tx/Transaction.java
skycat36/home-budget-amm2018
ab9716a9c33d1d7226854ac793202634a51e84de
[ "MIT" ]
9
2018-11-23T12:02:46.000Z
2018-12-08T14:37:01.000Z
src/main/java/dsr/amm/homebudget/data/entity/tx/Transaction.java
skycat36/home-budget-amm2018
ab9716a9c33d1d7226854ac793202634a51e84de
[ "MIT" ]
3
2018-11-28T12:51:20.000Z
2018-12-06T16:33:10.000Z
src/main/java/dsr/amm/homebudget/data/entity/tx/Transaction.java
skycat36/home-budget-amm2018
ab9716a9c33d1d7226854ac793202634a51e84de
[ "MIT" ]
19
2018-11-23T13:39:30.000Z
2020-02-12T19:20:07.000Z
package dsr.amm.homebudget.data.entity.tx; import dsr.amm.homebudget.data.entity.Account; import dsr.amm.homebudget.data.entity.Category; import dsr.amm.homebudget.data.entity.Tag; import org.hibernate.validator.constraints.Length; import javax.persistence.*; import javax.validation.constraints.NotNull; import java.math.BigDecimal; import java.time.OffsetDateTime; import java.util.Set; /** * Created by knekrasov on 10/15/2018. */ @Entity @Inheritance(strategy = InheritanceType.SINGLE_TABLE) public abstract class Transaction { @Id @GeneratedValue(strategy = GenerationType.SEQUENCE) private Long id; @ManyToOne private Account src; private BigDecimal newValue; @NotNull @Length(max = 10240) private String reason; @NotNull private OffsetDateTime createDate; @OneToOne private Category category; @ManyToMany @JoinColumn(name = "transaction_id") private Set<Tag> tagSet; public Account getSrc() { return src; } public void setSrc(Account src) { this.src = src; } public Long getId() { return id; } public void setId(Long id) { this.id = id; } public OffsetDateTime getCreateDate() { return createDate; } public void setCreateDate(OffsetDateTime createDate) { this.createDate = createDate; } public String getReason() { return reason; } public void setReason(String reason) { this.reason = reason; } public BigDecimal getNewValue() { return newValue; } public void setNewValue(BigDecimal newValue) { this.newValue = newValue; } public Category getCategory() { return category; } public void setCategory(Category category) { this.category = category; } public Set<Tag> getTagSet() { return tagSet; } public void setTagSet(Set<Tag> tagSet) { this.tagSet = tagSet; } }
21
59
0.625782
578dd2c4805ade4815b298686f06fa6457ac9c2c
686
h
C
src/attributes.h
drobilla/pugl
452ac347e549c74bf9cd41c89f5b2bf6510b50a1
[ "ISC" ]
29
2016-05-30T12:14:35.000Z
2020-02-02T22:25:00.000Z
src/attributes.h
drobilla/pugl
452ac347e549c74bf9cd41c89f5b2bf6510b50a1
[ "ISC" ]
26
2019-02-15T12:22:10.000Z
2020-02-11T18:31:58.000Z
src/attributes.h
drobilla/pugl
452ac347e549c74bf9cd41c89f5b2bf6510b50a1
[ "ISC" ]
15
2017-05-05T22:13:50.000Z
2020-02-09T22:37:52.000Z
// Copyright 2012-2022 David Robillard <d@drobilla.net> // SPDX-License-Identifier: ISC #ifndef PUGL_SRC_ATTRIBUTES_H #define PUGL_SRC_ATTRIBUTES_H // Unused parameter macro to suppresses warnings and make it impossible to use #if defined(__cplusplus) # define PUGL_UNUSED(name) #elif defined(__GNUC__) || defined(__clang__) # define PUGL_UNUSED(name) name##_unused __attribute__((__unused__)) #else # define PUGL_UNUSED(name) name #endif // Unused result macro to warn when an important return status is ignored #ifndef _MSC_VER # define PUGL_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) #else # define PUGL_WARN_UNUSED_RESULT #endif #endif // PUGL_SRC_ATTRIBUTES_H
28.583333
78
0.797376
75516ec711bb65be08735a936b9a89b03ab7ddd4
1,145
rs
Rust
efi-dxe/src/serial.rs
reggies/efi-pcm-rs
45a5b86cbb35ddbb4d257a393ff7dbf6c14fe5ca
[ "MIT" ]
null
null
null
efi-dxe/src/serial.rs
reggies/efi-pcm-rs
45a5b86cbb35ddbb4d257a393ff7dbf6c14fe5ca
[ "MIT" ]
null
null
null
efi-dxe/src/serial.rs
reggies/efi-pcm-rs
45a5b86cbb35ddbb4d257a393ff7dbf6c14fe5ca
[ "MIT" ]
null
null
null
use uefi::proto::console::serial::Serial; use uefi::prelude::*; use core::fmt::{self, Write}; use core::ptr::NonNull; struct MySerial<'boot>(Serial<'boot>); pub struct Logger { writer: Option<NonNull<MySerial<'static>>>, } impl Logger { pub unsafe fn new(proto: &mut Serial) -> Self { Logger { writer: NonNull::new(proto as *const _ as *mut _), } } } impl<'boot> log::Log for Logger { fn enabled(&self, _metadata: &log::Metadata) -> bool { self.writer.is_some() } fn log(&self, record: &log::Record) { if let Some(mut ptr) = self.writer { let writer = unsafe { ptr.as_mut() }; let _ = writeln!(writer, "{}: {}", record.level(), record.args()); } } fn flush(&self) { // This simple logger does not buffer output. } } unsafe impl Sync for Logger {} unsafe impl Send for Logger {} impl<'boot> fmt::Write for MySerial<'boot> { fn write_str(&mut self, s: &str) -> fmt::Result { let bytes = s.as_bytes(); self.0.write(bytes) .warning_as_error() .map_err(|_| fmt::Error) } }
23.367347
78
0.564192
740ea95e143113ad703bf8f482a630d0ea6dfbeb
3,346
lua
Lua
addons/_ws_vehicles_3/lua/autorun/tdmcars_ferrari.lua
JacubRSTNC/PoliceRP-OpenSource
adcf19f765331521b6934ecb1c180a978ba7f44d
[ "MIT" ]
17
2021-08-17T16:05:20.000Z
2022-03-17T09:55:24.000Z
addons/_ws_vehicles_3/lua/autorun/tdmcars_ferrari.lua
JacubRSTNC/PoliceRP-OpenSource
adcf19f765331521b6934ecb1c180a978ba7f44d
[ "MIT" ]
null
null
null
addons/_ws_vehicles_3/lua/autorun/tdmcars_ferrari.lua
JacubRSTNC/PoliceRP-OpenSource
adcf19f765331521b6934ecb1c180a978ba7f44d
[ "MIT" ]
4
2021-08-19T11:41:36.000Z
2022-03-20T08:56:28.000Z
local PrVeh = "prop_vehicle_jeep" local Cat = "TDM Cars" local V = { Name = "Ferrari 250 GTO", Class = PrVeh, Category = Cat, Author = "TheDanishMaster, Turn 10", Information = "A drivable Ferrari 250 GTO by TheDanishMaster", Model = "models/tdmcars/fer_250gto.mdl", KeyValues = { vehiclescript = "scripts/vehicles/TDMCars/fer_250gto.txt" } } list.Set("Vehicles", "fer_250gtotdm", V) local V = { Name = "Ferrari 458 Spider", Class = PrVeh, Category = Cat, Author = "TheDanishMaster, Turn 10", Information = "A drivable Ferrari 458 Spider by TheDanishMaster", Model = "models/tdmcars/fer_458spid.mdl", KeyValues = { vehiclescript = "scripts/vehicles/TDMCars/fer458spid.txt" } } list.Set("Vehicles", "fer_458spidtdm", V) local V = { Name = "Ferrari Enzo", Class = PrVeh, Category = Cat, Author = "TheDanishMaster, Turn 10", Information = "A drivable Ferrari Enzo by TheDanishMaster", Model = "models/tdmcars/fer_enzo.mdl", KeyValues = { vehiclescript = "scripts/vehicles/TDMCars/enzo.txt" } } list.Set("Vehicles", "fer_enzotdm", V) local V = { Name = "Ferrari F12 Berlinetta", Class = PrVeh, Category = Cat, Author = "TheDanishMaster, Turn 10", Information = "A drivable Ferrari F12 Berlinetta by TheDanishMaster", Model = "models/tdmcars/fer_f12.mdl", KeyValues = { vehiclescript = "scripts/vehicles/TDMCars/fer_f12.txt" } } list.Set("Vehicles", "ferf12tdm", V) local V = { Name = "Ferrari F430", Class = PrVeh, Category = Cat, Author = "TheDanishMaster, Turn 10", Information = "A drivable Ferrari F430 by TheDanishMaster", Model = "models/tdmcars/fer_f430.mdl", KeyValues = { vehiclescript = "scripts/vehicles/TDMCars/fer_f430.txt" } } list.Set("Vehicles", "ferf430tdm", V) local V = { Name = "Ferrari F50", Class = PrVeh, Category = Cat, Author = "TheDanishMaster, Turn 10", Information = "A drivable Ferrari F50 by TheDanishMaster", Model = "models/tdmcars/fer_f50.mdl", KeyValues = { vehiclescript = "scripts/vehicles/TDMCars/f50.txt" } } list.Set("Vehicles", "fer_f50tdm", V) local V = { Name = "Ferrari 512 TR", Class = PrVeh, Category = Cat, Author = "TheDanishMaster, Turn 10", Information = "A drivable Ferrari 512 TR by TheDanishMaster", Model = "models/tdmcars/ferrari512tr.mdl", KeyValues = { vehiclescript = "scripts/vehicles/TDMCars/ferrari512tr.txt" } } list.Set("Vehicles", "fer_512trtdm", V) local V = { Name = "Ferrari 250GT", Class = PrVeh, Category = Cat, Author = "TheDanishMaster, Turn 10", Information = "A drivable Ferrari 250GT by TheDanishMaster", Model = "models/tdmcars/ferrari250gt.mdl", KeyValues = { vehiclescript = "scripts/vehicles/TDMCars/ferrari250gt.txt" } } list.Set( "Vehicles", "fer_250gttdm", V ) local V = { Name = "Ferrari LaFerrari", Class = PrVeh, Category = Cat, Author = "TheDanishMaster", Information = "A drivable Ferrari LaFerrari by TheDanishMaster", Model = "models/tdmcars/fer_lafer.mdl", KeyValues = { vehiclescript = "scripts/vehicles/TDMCars/laferrari.txt" } } list.Set("Vehicles", "fer_lafertdm", V)
28.117647
72
0.642857
96558291963828da85f6cacb3ce5a144daef4255
1,242
php
PHP
src/Traits/Arrayable.php
denpamusic/php-levin
87a025228a4f747d1f5287cb2a1f029b8cab52b6
[ "MIT" ]
7
2019-02-12T03:34:31.000Z
2022-01-07T16:32:08.000Z
src/Traits/Arrayable.php
denpamusic/php-levin
87a025228a4f747d1f5287cb2a1f029b8cab52b6
[ "MIT" ]
null
null
null
src/Traits/Arrayable.php
denpamusic/php-levin
87a025228a4f747d1f5287cb2a1f029b8cab52b6
[ "MIT" ]
null
null
null
<?php declare(strict_types=1); namespace Denpa\Levin\Traits; use ArrayIterator; trait Arrayable { /** * @param mixed $offset * @param mixed $value * * @return void */ public function offsetSet($offset, $value): void { $this->entries[$offset] = $value; } /** * @param mixed $offset * * @return bool */ public function offsetExists($offset): bool { return isset($this->entries[$offset]); } /** * @param mixed $offset * * @return void */ public function offsetUnset($offset): void { unset($this->entries[$offset]); } /** * @param mixed $offset * * @return mixed */ public function offsetGet($offset): mixed { return $this->entries[$offset] ?? null; } /** * @return int */ public function count(): int { return count($this->entries); } /** * @return array */ public function keys(): array { return array_keys($this->entries); } /** * @return \ArrayIterator */ public function getIterator(): ArrayIterator { return new ArrayIterator($this->entries); } }
16.342105
52
0.518519
f01f18aee33b562489b0d767d928372db30a59d2
4,501
js
JavaScript
js/jquery.engage.js
jatin-dwebguys/jquery-engage
3258eae4ea8f61cb52424abd6fc0bcb6d65528b5
[ "Unlicense", "MIT" ]
5
2015-05-03T13:46:11.000Z
2019-06-13T16:02:19.000Z
js/jquery.engage.js
jatin-dwebguys/jquery-engage
3258eae4ea8f61cb52424abd6fc0bcb6d65528b5
[ "Unlicense", "MIT" ]
null
null
null
js/jquery.engage.js
jatin-dwebguys/jquery-engage
3258eae4ea8f61cb52424abd6fc0bcb6d65528b5
[ "Unlicense", "MIT" ]
2
2015-05-17T00:57:39.000Z
2015-08-27T09:06:32.000Z
/* * Project: Engage - Engage you readers better with a dynamic social footer * Author: Cedric Dugas, http://www.position-relative.net * License: MIT */ ;(function ( $, window, document, undefined ) { var pluginName = "engage", defaults = { scrollhide : false, offset : 0, contents : ["comment", "share", "newsletter"] }; function Plugin( element, options ) { this.element = element; this.options = $.extend( {}, defaults, options ); this._defaults = defaults; this._name = pluginName; this.init(); } Plugin.prototype = { init: function() { this.loadContent(); this.loadScroller(); }, allContent : [], loadContent : function () { var self = this, colClass = "column" + this.options.contents.length, time = this.getTimes(), $el = $(self.element); this.distanceTop = ($el.offset().top + $el.height()) - ($(window).height()/2)-100 + this.options.offset; $(document).on("click.engage", "#footerEngageContainer .btn_x", function(){ self.hideFull(); return false; }); $.each(this.options.contents, function(i, type){ var contents = $.engage.contents; if(contents[type] && contents[type].init){ contents[type].options = $.extend( {}, contents[type].defaults, self.options[type] ); var $content = $(contents[type].init(time)).addClass(colClass); self.allContent.push($content); } }); }, loadScroller : function () { var self = this; $(window).on("scroll.engage", function() { if ($(window).scrollTop() > self.distanceTop) { self.show(); }else{ if(self.options.scrollhide) self.hide(); } }); }, getTimes : function () { var today = new Date(); var curHr = today.getHours(); var time = ""; if(curHr<10){ time = "morning"; }else if(curHr<20){ time = "defaults"; }else{ time = "night"; } return time; }, show : function(){ if(!$("#footerEngageContainer").length) { var containerClass = "containerColumn" + this.options.contents.length, $content = $(this.getHTML(containerClass)), self = this; $.each(this.allContent, function(i , html){ $content.find("#footerEngage").append(html); if(i !== (self.allContent.length -1)){ $content.find("#footerEngage").append("<div class='separator'></div>"); } }); $("body").append($content); $("#footerEngage").animate({ marginTop:0 }); $(document).trigger("engage.show"); } }, hideFull : function () { this.noshow = true; this.destroy(); this.hide(); }, hide : function () { if(!$("#footerEngageContainer").length) return false; $("#footerEngage").animate({ marginTop:205 }, function(){ $(document).trigger("engage.hide"); $("#footerEngageContainer").remove(); }); }, getHTML : function(containerClass){ var text = "<div id='footerEngageContainer'>\ <div id='footerEngage' class='"+containerClass+"'>\ <a href='#' class='btn_x'>&#215;</a>\ </div>\ </div>"; return text; }, destroy : function () { $(document).trigger("engage.destroy"); $(document).off("click.engage"); $(window).off("scroll.engage"); } }; $[pluginName] = { contents : {} }; $.fn[pluginName] = function ( options ) { return this.each(function () { if (!$.data(this, "plugin_" + pluginName)) { $.data(this, "plugin_" + pluginName, new Plugin( this, options )); } }); }; })( jQuery, window, document );
34.623077
122
0.457232
a4e5f97b914a1fb4486158cfb8975f8c73d33ece
263
sql
SQL
19_RestWithAspNet5_Docker/RestWithAspNet5/RestWithAspNet5/database/dataset/V2__Populate_Table_Person.sql
Laoviah/restWithAspNet5
0c0dd6706e67436d6bf6ed7159da0c42eb8381a3
[ "Apache-2.0" ]
null
null
null
19_RestWithAspNet5_Docker/RestWithAspNet5/RestWithAspNet5/database/dataset/V2__Populate_Table_Person.sql
Laoviah/restWithAspNet5
0c0dd6706e67436d6bf6ed7159da0c42eb8381a3
[ "Apache-2.0" ]
null
null
null
19_RestWithAspNet5_Docker/RestWithAspNet5/RestWithAspNet5/database/dataset/V2__Populate_Table_Person.sql
Laoviah/restWithAspNet5
0c0dd6706e67436d6bf6ed7159da0c42eb8381a3
[ "Apache-2.0" ]
null
null
null
INSERT IGNORE INTO `person` (`id`, `address`, `first_name`, `last_name`, `Gender`) VALUES (1, 'São Paulo, Brazil', 'Ayrton', 'Senna', 'Male'), (110, 'Rua 1234 ttt', 'Vially t', 'Israel t', 'Male'), (1111, '3 Rua 1234 ttt', '2 Vially t', '2 Israel t', 'Male');
65.75
90
0.60076
4fb681a8192a64f8b455def46ce02959cef85dc9
2,446
sql
SQL
db/payment_methods.sql
JayTechX/project001
6da5a0b3008bd72a26f950213c49ccb91dcb597a
[ "MIT" ]
1
2019-02-19T20:10:53.000Z
2019-02-19T20:10:53.000Z
db/payment_methods.sql
JayTechX/project001
6da5a0b3008bd72a26f950213c49ccb91dcb597a
[ "MIT" ]
null
null
null
db/payment_methods.sql
JayTechX/project001
6da5a0b3008bd72a26f950213c49ccb91dcb597a
[ "MIT" ]
null
null
null
-- phpMyAdmin SQL Dump -- version 4.5.4.1 -- http://www.phpmyadmin.net -- -- Host: localhost -- Generation Time: Jan 23, 2019 at 11:29 AM -- Server version: 5.7.11 -- PHP Version: 7.0.3 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `onitshamarket` -- -- -------------------------------------------------------- -- -- Table structure for table `payment_methods` -- CREATE TABLE `payment_methods` ( `id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `settings` text NOT NULL, `notes` text NOT NULL, `status` int(11) NOT NULL DEFAULT '0' ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `payment_methods` -- INSERT INTO `payment_methods` (`id`, `name`, `settings`, `notes`, `status`) VALUES (1, 'Payment on Delivery', '', 'Important information on this payment method:\n1. Payment must be made before opening a package;\n2. Once the seal is broken, item can only be returned if it is damaged, or has any missing item(s);\n3. Please ensure you have the exact amount for your order.\n\n**Please note, we will never ask you to make payment via SMS or email.**\n', 1), (2, 'Interswitch Webpay', '["secret_key:sk_test_j1NHfDoinTtxm25PyGNuV4xw","publishable_key:pk_test_nod5swtRu9mKvMZB28838BY8"]', 'We are going to redirect you to our secured online platform, where you will be able to pay with your Naira Mastercard, Visa or Verve cards.\n\nPlease have your phone ready for SMS token to complete payment.\nDo not hesitate to call us on 08070994845 if you have any question.\n\n**Please note, we will never ask you to make payment via SMS or email.**', 1); -- -- Indexes for dumped tables -- -- -- Indexes for table `payment_methods` -- ALTER TABLE `payment_methods` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `payment_methods` -- ALTER TABLE `payment_methods` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
36.507463
487
0.694603
f0381dfca10c4368751c2559cc6c34453070e410
1,548
js
JavaScript
js/couchfriends.js
Couchfriends/soccer
3d156b6275c8f17643211955427f77af6cfab60c
[ "MIT" ]
null
null
null
js/couchfriends.js
Couchfriends/soccer
3d156b6275c8f17643211955427f77af6cfab60c
[ "MIT" ]
null
null
null
js/couchfriends.js
Couchfriends/soccer
3d156b6275c8f17643211955427f77af6cfab60c
[ "MIT" ]
null
null
null
/** * The MIT License (MIT) * * Copyright (c) 2015 Couchfriends */ COUCHFRIENDS.settings.apiKey = 'soccer-1234'; /** * Host a new game */ function hostGame() { } function init() { //COUCHFRIENDS.connect(); } function identifyPlayer(playerId, color) { if (color == null || color == '') { return; } var jsonData = { id: playerId, topic: 'player', action: 'identify', type: 'player.identify', data: { id: playerId, color: color } }; COUCHFRIENDS.send(jsonData); } COUCHFRIENDS.on('connect', function() { SOCCER.newGame(); }); COUCHFRIENDS.on('disconnect', function() { }); /** * Callback after the server started the game and let players allow to join. * * @param {object} data List with game data * @param {string} data.code The game code players need to fill to join this game */ COUCHFRIENDS.on('game.start', function(data) { // SOCCER.newGame(); }); COUCHFRIENDS.on('player.left', function(data) { SOCCER.removePlayer(data.id); }); COUCHFRIENDS.on('player.join', function(data) { SOCCER.addPlayer(data.id); }); COUCHFRIENDS.on('player.orientation', function(data) { SOCCER.movePlayer(data.player.id, data); }); COUCHFRIENDS.on('player.clickUp', function(data) { SOCCER.shoot(data.player.id); }); COUCHFRIENDS.on('player.buttonClick', function(data) { SOCCER.shoot(data.player.id); }); COUCHFRIENDS.on('player.buttonUp', function(data) { SOCCER.shoot(data.player.id); }); window.onload = init;
21.802817
81
0.632429
16bb116354ec9ab61118dbf96ec02ede534983db
557
h
C
3DPhysics/Plane3D.h
ElectroBean/IntroToPhysics
0609174025cda25fa78d86e6eb4650ff130b59ef
[ "MIT" ]
null
null
null
3DPhysics/Plane3D.h
ElectroBean/IntroToPhysics
0609174025cda25fa78d86e6eb4650ff130b59ef
[ "MIT" ]
null
null
null
3DPhysics/Plane3D.h
ElectroBean/IntroToPhysics
0609174025cda25fa78d86e6eb4650ff130b59ef
[ "MIT" ]
null
null
null
#pragma once #include "PhysicsObject3D.h" #include "RigidBody3D.h" class Plane3D : public PhysicsObject3D { public: Plane3D(); Plane3D(glm::vec3 normal, float distance); ~Plane3D(); virtual void fixedUpdate(glm::vec3 gravity, float timeStep); virtual void debug() {} virtual void makeGizmo(); virtual void resetPosition(); glm::vec3 getNormal() { return m_normal; } float getDistance() { return m_distanceToOrigin; } void ResolveCollision(RigidBody3D * actor2, glm::vec3 contact); protected: glm::vec3 m_normal; float m_distanceToOrigin; };
22.28
64
0.745063
161e980192d8f1d43737fbf0b416973b3c6ced67
1,248
h
C
Alignment/MuonAlignmentAlgorithms/interface/MuonTrackCSCChamberResidual.h
ckamtsikis/cmssw
ea19fe642bb7537cbf58451dcf73aa5fd1b66250
[ "Apache-2.0" ]
852
2015-01-11T21:03:51.000Z
2022-03-25T21:14:00.000Z
Alignment/MuonAlignmentAlgorithms/interface/MuonTrackCSCChamberResidual.h
ckamtsikis/cmssw
ea19fe642bb7537cbf58451dcf73aa5fd1b66250
[ "Apache-2.0" ]
30,371
2015-01-02T00:14:40.000Z
2022-03-31T23:26:05.000Z
Alignment/MuonAlignmentAlgorithms/interface/MuonTrackCSCChamberResidual.h
ckamtsikis/cmssw
ea19fe642bb7537cbf58451dcf73aa5fd1b66250
[ "Apache-2.0" ]
3,240
2015-01-02T05:53:18.000Z
2022-03-31T17:24:21.000Z
#ifndef Alignment_MuonAlignmentAlgorithms_MuonTrackCSCChamberResidual_H #define Alignment_MuonAlignmentAlgorithms_MuonTrackCSCChamberResidual_H /** \class MuonTrackCSCChamberResidual * * Implementation of tracker muon chamber residuals for CSC * * $Id: $ */ #include "Alignment/MuonAlignmentAlgorithms/interface/MuonChamberResidual.h" class MuonTrackCSCChamberResidual : public MuonChamberResidual { public: MuonTrackCSCChamberResidual(edm::ESHandle<GlobalTrackingGeometry> globalGeometry, AlignableNavigator *navigator, DetId chamberId, AlignableDetOrUnitPtr chamberAlignable); // dummy method void addResidual(edm::ESHandle<Propagator> prop, const TrajectoryStateOnSurface *tsos, const TrackingRecHit *hit, double, double) override = 0; // for CSC, the residual is chamber local x, projected by the strip measurement direction // for CSC, the resslope is dresx/dz, or tan(phi_y) void setSegmentResidual(const reco::MuonChamberMatch *, const reco::MuonSegmentMatch *) override; }; #endif // Alignment_MuonAlignmentAlgorithms_MuonTrackCSCChamberResidual_H
37.818182
99
0.709936
bd6b55304dedb6d35b28cc8ea4986cdd2dab2b5e
1,124
rs
Rust
src/bin/dev_server.rs
fstephany/yogurt
64f20ec1aaa403f782666576bbdc64a2a0d1685a
[ "MIT" ]
null
null
null
src/bin/dev_server.rs
fstephany/yogurt
64f20ec1aaa403f782666576bbdc64a2a0d1685a
[ "MIT" ]
null
null
null
src/bin/dev_server.rs
fstephany/yogurt
64f20ec1aaa403f782666576bbdc64a2a0d1685a
[ "MIT" ]
null
null
null
//! This program starts a webserver on port 8080. It exposes a static file server //! that can be used to develop Yogurt without hitting a real server. extern crate iron; extern crate staticfile; extern crate mount; use std::path::Path; use std::process::exit; use iron::Iron; use staticfile::Static; use mount::Mount; fn main() { let port = 8080; let address = "127.0.0.1"; let path: &Path = Path::new("./dev-server-files"); if !path.exists() { println!("Path {:?} does not exist.", path); exit(1) } if !path.is_dir() { println!("Path {:?} is not a directory.", path); exit(1) } let mut mount: Mount = Mount::new(); mount.mount("/", Static::new(path)); match Iron::new(mount).http((address, port)) { Ok(_) => { println!("Starting up http-server, serving path {:?}", path); println!("Available on:"); println!(" http://{}:{}", address, port); println!("Hit CTRL-C to stop the server") } Err(err) => { println!("{}", err); exit(1) } } }
24.977778
81
0.545374
e4bb106d05e78f492be77d11c3defdcbca8e1a9c
1,212
kt
Kotlin
app/src/main/java/com/king/easychat/bean/User.kt
yetel/EasyChatAndroidClient
00ccc9bfb23477be59c7fb9e33c1288013aeb02a
[ "Apache-2.0" ]
121
2019-10-31T10:18:45.000Z
2022-03-04T15:48:22.000Z
app/src/main/java/com/king/easychat/bean/User.kt
luoxiao123/zhlinghang
879c38a9da8565b4d3d3949e55fef471d27d9076
[ "Apache-2.0" ]
3
2019-11-08T07:27:31.000Z
2021-05-26T09:34:16.000Z
app/src/main/java/com/king/easychat/bean/User.kt
luoxiao123/zhlinghang
879c38a9da8565b4d3d3949e55fef471d27d9076
[ "Apache-2.0" ]
37
2019-11-23T10:10:57.000Z
2022-01-24T02:02:58.000Z
package com.king.easychat.bean import android.os.Parcelable import androidx.room.Entity import androidx.room.Index import kotlinx.android.parcel.Parcelize import androidx.room.PrimaryKey /** * @author Zed * date: 2019/10/09. * description: */ @Entity(indices = [Index(value = ["userId"], unique = true)]) @Parcelize class User(val userId: String,val userName: String,var nickName: String?,var avatar: String?,var signature: String?, var remark: String? = null) : Parcelable { @PrimaryKey(autoGenerate = true) var id: Int = 0 fun getShowName(): String { remark?.let { return it } nickName?.let { return it } return userName } override fun toString(): String { return "User(userId=$userId, userName=$userName, nickName=$nickName, avatar=$avatar, signature=$signature)" } override fun equals(other: Any?): Boolean { if (this === other) return true if (javaClass != other?.javaClass) return false other as User if (userId != other.userId) return false return true } override fun hashCode(): Int { return userId.hashCode() } }
21.642857
116
0.624587
f051c00ce2a7516b086ddc1bb3cb411c9ca575b6
1,019
js
JavaScript
deps/mozjs/src/tests/js1_5/Function/regress-338121-02.js
ktrzeciaknubisa/jxcore-binary-packaging
5759df084be10a259a4a4f1b38c214c6084a7c0f
[ "Apache-2.0" ]
2,494
2015-02-11T04:34:13.000Z
2022-03-31T14:21:47.000Z
deps/mozjs/src/tests/js1_5/Function/regress-338121-02.js
ktrzeciaknubisa/jxcore-binary-packaging
5759df084be10a259a4a4f1b38c214c6084a7c0f
[ "Apache-2.0" ]
685
2015-02-11T17:14:26.000Z
2021-04-13T09:58:39.000Z
deps/mozjs/src/tests/js1_5/Function/regress-338121-02.js
ktrzeciaknubisa/jxcore-binary-packaging
5759df084be10a259a4a4f1b38c214c6084a7c0f
[ "Apache-2.0" ]
442
2015-02-12T13:45:46.000Z
2022-03-21T05:28:05.000Z
// |reftest| skip-if(Android) silentfail skip -- disabled pending bug 657444 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ //----------------------------------------------------------------------------- var BUGNUMBER = 338121; var summary = 'Issues with JS_ARENA_ALLOCATE_CAST'; var actual = 'No Crash'; var expect = 'No Crash'; printBugNumber(BUGNUMBER); printStatus (summary); expectExitCode(0); expectExitCode(5); var fe="vv"; for (i=0; i<24; i++) fe += fe; var fu=new Function( fe, fe, fe, fe, fe, fe, fe, fe, fe, fe, fe, fe, fe, fe, fe, fe, fe, fe, fe, fe, fe, fe, fe, fe, fe, fe, fe, fe, fe, fe, fe, fe, fe, fe, fe, fe, fe, fe, "done" ); //alert("fu="+fu); //print("fu="+fu); var fuout = 'fu=' + fu; print('Done'); reportCompare(expect, actual, summary);
27.540541
79
0.585868
8e9fd543ce3cedee46bb52b565496c130184137b
288
rb
Ruby
lib/visualize_ruby/optionalable.rb
zeisler/visualize-ruby
fddbc864731f13108b54b41566190e60dc505467
[ "MIT" ]
237
2018-06-19T04:31:00.000Z
2022-03-19T10:05:53.000Z
lib/visualize_ruby/optionalable.rb
picatz/visualize_ruby
38c9428afd4ca7b30fdc469f97c6c7994772d9f6
[ "MIT" ]
10
2018-06-19T06:32:37.000Z
2020-12-11T07:10:09.000Z
lib/visualize_ruby/optionalable.rb
picatz/visualize_ruby
38c9428afd4ca7b30fdc469f97c6c7994772d9f6
[ "MIT" ]
9
2018-06-21T18:40:41.000Z
2019-08-21T16:14:45.000Z
module VisualizeRuby module Optionalable def post_initialize(**opts) @graph_viz_options = opts super if defined? super end def options(args={}) @graph_viz_options.merge!(args) @graph_viz_options end attr_reader :graph_viz_options end end
18
37
0.680556
81c9aebd7f4b45593161165a6b691372e4c5b878
4,699
rs
Rust
src/commands/installer.rs
VarunPotti/joule.rs
cb8f0804b46b0b47132900027424136b67d4b493
[ "Apache-2.0" ]
2
2021-05-25T04:39:33.000Z
2021-06-04T16:15:19.000Z
src/commands/installer.rs
VarunPotti/joule.rs
cb8f0804b46b0b47132900027424136b67d4b493
[ "Apache-2.0" ]
null
null
null
src/commands/installer.rs
VarunPotti/joule.rs
cb8f0804b46b0b47132900027424136b67d4b493
[ "Apache-2.0" ]
null
null
null
//? This file is responsible for the installation of a particular app #[path = "../structs/Package.rs"] mod package; #[path = "../utils/requests.rs"] mod requests; #[path = "../utils/threadeddownloader.rs"] mod threadeddownloader; #[path = "../utils/ansi.rs"] mod ansi; use serde::{Deserialize, Serialize}; use std::env; use std::fs::File; use std::io; use std::io::Read; use std::ops::Deref; #[derive(Deserialize, Serialize)] pub struct PackageTemp { package_name: String, display_name: String, version: String, } #[derive(serde::Deserialize, serde::Serialize)] struct PackageList { packages: Vec<String>, } pub fn install(app_name: &str) { let mut s = String::new(); let db_list = &format!( r#"{}\{}\{}"#, env::var("USERPROFILE").unwrap(), r#"AppData\Roaming"#, r#"Joule\data\dblist.json"# ); let _contents = File::open(&db_list) .expect("Something went wrong reading the file") .read_to_string(&mut s); let json: PackageList = serde_json::from_str(&s).unwrap(); let package = json .packages .iter() .map(|item| item.deref()) .collect::<Vec<&str>>(); let result = difflib::get_close_matches(app_name, package, 1, 0.6); if result.len() > 0 { if app_name == result[0] { let resp = requests::get_package(app_name); let ref pkg = resp[&resp[r#"version"#].to_string()]; let _package = package::Package { package_name: resp["package_name"].to_string(), display_name: resp["display_name"].to_string(), version: resp["version"].to_string(), threads: resp["threads"].to_string().parse::<i8>().unwrap(), url: pkg["url"].to_string(), file_type: pkg[r#"file-type"#].to_string(), iswitches: pkg["iswitches"].as_array().unwrap().to_vec(), uswitches: pkg["uswitches"].as_array().unwrap().to_vec(), dependencies: pkg["dependencies"].as_array().unwrap().to_vec(), Home_page: resp["Home_page"].to_string(), creator: resp["creator"].to_string(), }; let output = if _package.file_type == ".exe" { format!(r#"{}{}"#, env::temp_dir().to_string_lossy(), "Setup.exe") } else if _package.file_type == ".msi" { format!(r#"{}{}"#, env::temp_dir().to_string_lossy(), "Setup.msi").to_string() } else { format!(r#"{}{}"#, env::temp_dir().to_string_lossy(), "Setup.exe") }; threadeddownloader::threadeddownload(&pkg["url"].as_str().unwrap(), &output); } else { println!( "{}- {}", ansi::green("Autocorrecting to "), ansi::blue(result[0]) ); println!("Continue? (y/n)"); let mut cont = String::new(); io::stdin() .read_line(&mut cont) .expect("Failed to read line"); if cont.to_ascii_lowercase() == "y\r\n" { let resp = requests::get_package(result[0]); let ref pkg = resp[&resp[r#"version"#].to_string()]; let _package = package::Package { package_name: resp["package_name"].to_string(), display_name: resp["display_name"].to_string(), version: resp["version"].to_string(), threads: resp["threads"].to_string().parse::<i8>().unwrap(), url: pkg["url"].to_string(), file_type: pkg[r#"file-type"#].to_string(), iswitches: pkg["iswitches"].as_array().unwrap().to_vec(), uswitches: pkg["uswitches"].as_array().unwrap().to_vec(), dependencies: pkg["dependencies"].as_array().unwrap().to_vec(), Home_page: resp["Home_page"].to_string(), creator: resp["creator"].to_string(), }; let output = "Setup.exe"; threadeddownloader::threadeddownload(&pkg["url"].as_str().unwrap(), output); } else { println!("Exiting") } } } else { println!( "{} {} {}\n\t {}", ansi::red("Couldn't find"), ansi::red(app_name), ansi::red(&format!( ":Run \"joule search {}\" to find apps matching {}", app_name, app_name )), ansi::blue("or ask for a package here https://github.com/joule-package-manager/joule-packages/issues/1") ) } }
38.516393
116
0.518834
0a3172cb81e549424954390d673e3431260bf332
292
ts
TypeScript
src/app/util/max-length.pipe.ts
gajop/spring-launcher-frontend
e1baf47bd5c76cf392b529c34a5247ba86dead2b
[ "0BSD" ]
null
null
null
src/app/util/max-length.pipe.ts
gajop/spring-launcher-frontend
e1baf47bd5c76cf392b529c34a5247ba86dead2b
[ "0BSD" ]
8
2020-03-15T15:05:35.000Z
2022-03-02T07:45:45.000Z
src/app/util/max-length.pipe.ts
gajop/spring-launcher-frontend
e1baf47bd5c76cf392b529c34a5247ba86dead2b
[ "0BSD" ]
null
null
null
import { Pipe, PipeTransform } from '@angular/core'; @Pipe({ name: 'maxLength' }) export class MaxLengthPipe implements PipeTransform { transform(str: string, maxLength: number): string { if (str.length < maxLength) { return str; } return str.substr(0, maxLength); } }
24.333333
53
0.667808
b507d3f62a0745b036fa2616965b379cb42c477f
4,678
rs
Rust
examples/app/model.rs
tramhao/tui-realm
74d9b2214acc90d0f4c7af9a3a4582199c2aa80e
[ "MIT" ]
null
null
null
examples/app/model.rs
tramhao/tui-realm
74d9b2214acc90d0f4c7af9a3a4582199c2aa80e
[ "MIT" ]
null
null
null
examples/app/model.rs
tramhao/tui-realm
74d9b2214acc90d0f4c7af9a3a4582199c2aa80e
[ "MIT" ]
null
null
null
//! ## Model //! //! app model /** * MIT License * * tui-realm - Copyright (C) 2021 Christian Visintin * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all * copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ use super::{Application, Id, Msg}; use tuirealm::terminal::TerminalBridge; use tuirealm::tui::layout::{Constraint, Direction, Layout}; use tuirealm::{AttrValue, Attribute, NoUserEvent, Update, View}; pub struct Model { /// Indicates that the application must quit pub quit: bool, /// Tells whether to redraw interface pub redraw: bool, /// Used to draw to terminal pub terminal: TerminalBridge, } impl Default for Model { fn default() -> Self { Self { quit: false, redraw: true, terminal: TerminalBridge::new().expect("Cannot initialize terminal"), } } } impl Model { pub fn view(&mut self, app: &mut Application<Id, Msg, NoUserEvent>) { assert!(self .terminal .raw_mut() .draw(|f| { let chunks = Layout::default() .direction(Direction::Vertical) .margin(1) .constraints( [ Constraint::Length(3), // Clock Constraint::Length(3), // Letter Counter Constraint::Length(3), // Digit Counter Constraint::Length(1), // Label ] .as_ref(), ) .split(f.size()); app.view(&Id::Clock, f, chunks[0]); app.view(&Id::LetterCounter, f, chunks[1]); app.view(&Id::DigitCounter, f, chunks[2]); app.view(&Id::Label, f, chunks[3]); }) .is_ok()); } } // Let's implement Update for model impl Update<Id, Msg, NoUserEvent> for Model { fn update(&mut self, view: &mut View<Id, Msg, NoUserEvent>, msg: Option<Msg>) -> Option<Msg> { if let Some(msg) = msg { // Set redraw self.redraw = true; // Match message match msg { Msg::AppClose => { self.quit = true; // Terminate None } Msg::Clock => None, Msg::DigitCounterBlur => { // Give focus to letter counter assert!(view.active(&Id::LetterCounter).is_ok()); None } Msg::DigitCounterChanged(v) => { // Update label assert!(view .attr( &Id::Label, Attribute::Text, AttrValue::String(format!("DigitCounter has now value: {}", v)) ) .is_ok()); None } Msg::LetterCounterBlur => { // Give focus to digit counter assert!(view.active(&Id::DigitCounter).is_ok()); None } Msg::LetterCounterChanged(v) => { // Update label assert!(view .attr( &Id::Label, Attribute::Text, AttrValue::String(format!("LetterCounter has now value: {}", v)) ) .is_ok()); None } } } else { None } } }
35.172932
98
0.497435
21cfd784d18f4b2209572abbeb2bcfd0de1a1989
639
html
HTML
_posts/2006-07-31-433.html
lingwhatics/lingwhatics.github.io
7fa3fbf42bc0d9fc9a28a8acca7c89636794874b
[ "MIT" ]
null
null
null
_posts/2006-07-31-433.html
lingwhatics/lingwhatics.github.io
7fa3fbf42bc0d9fc9a28a8acca7c89636794874b
[ "MIT" ]
null
null
null
_posts/2006-07-31-433.html
lingwhatics/lingwhatics.github.io
7fa3fbf42bc0d9fc9a28a8acca7c89636794874b
[ "MIT" ]
null
null
null
--- layout: post title: 'Twain quotation' date: 2006-07-31 15:21:00.000000000 -04:00 type: post published: true status: publish categories: - quotation tags: [] meta: blogger_blog: lingwhatics.blogspot.com blogger_author: Daley blogger_75f3a61779c514bc6a77ba36fb86a154_permalink: '115437735608448977' --- <p><br /> <blockquote> Sometimes I wonder whether the world is being run by smart people who are putting us on or by imbeciles who really mean it.<br /> <blockquote></blockquote> <p> Mark Twain</p></blockquote>
30.428571
147
0.621283
4aa49d36783014f6a54ae506d2e11ec75fe68cfb
2,413
kt
Kotlin
app/src/main/java/space/pal/sig/network/SpaceXApiService.kt
icatalin201/SpaceNow
9f8485e7ef1580be8c84dd34babd99571bed277a
[ "Apache-2.0" ]
null
null
null
app/src/main/java/space/pal/sig/network/SpaceXApiService.kt
icatalin201/SpaceNow
9f8485e7ef1580be8c84dd34babd99571bed277a
[ "Apache-2.0" ]
null
null
null
app/src/main/java/space/pal/sig/network/SpaceXApiService.kt
icatalin201/SpaceNow
9f8485e7ef1580be8c84dd34babd99571bed277a
[ "Apache-2.0" ]
null
null
null
package space.pal.sig.network import io.reactivex.Single import retrofit2.http.GET import retrofit2.http.Path import space.pal.sig.model.dto.* /** SpaceNow Created by Catalin on 12/6/2020 **/ interface SpaceXApiService { @GET("capsules") fun getAllCapsules(): Single<MutableList<Capsule>> @GET("capsules/{id}") fun getCapsule(@Path("id") id: String): Single<Capsule> @GET("cores") fun getAllCores(): Single<MutableList<Core>> @GET("cores/{id}") fun getCore(@Path("id") id: String): Single<Core> @GET("crew") fun getAllCrewMembers(): Single<MutableList<CrewMemberDto>> @GET("crew/{id}") fun getCrewMembers(@Path("id") id: String): Single<CrewMemberDto> @GET("dragons") fun getAllDragons(): Single<MutableList<Dragon>> @GET("dragons/{id}") fun getDragon(@Path("id") id: String): Single<MutableList<Dragon>> @GET("landpads") fun getAllLandpads(): Single<MutableList<LandingPad>> @GET("landpads/{id}") fun getLandpad(@Path("id") id: String): Single<LandingPad> @GET("launches/past") fun getPastLaunches(): Single<MutableList<LaunchDto>> @GET("launches/upcoming") fun getUpcomingLaunches(): Single<MutableList<LaunchDto>> @GET("launches/latest") fun getLatestLaunch(): Single<LaunchDto> @GET("launches/next") fun getNextLaunch(): Single<LaunchDto> @GET("launches") fun getAllLaunches(): Single<MutableList<LaunchDto>> @GET("launches/{id}") fun getLaunch(@Path("id") id: String): Single<LaunchDto> @GET("launchpads") fun getAllLaunchpads(): Single<MutableList<LaunchPadDto>> @GET("launchpads/{id}") fun getLaunchpad(@Path("id") id: String): Single<LaunchPadDto> @GET("payloads") fun getAllPayloads(): Single<MutableList<Payload>> @GET("payloads/{id}") fun getPayload(@Path("id") id: String): Single<Payload> @GET("roadster") fun getRoadster(): Single<RoadsterDto> @GET("rockets") fun getAllRockets(): Single<MutableList<RocketDto>> @GET("rockets/{id}") fun getRocket(@Path("id") id: String): Single<RocketDto> @GET("ships") fun getAllShips(): Single<MutableList<Ship>> @GET("ships/{id}") fun getShip(@Path("id") id: String): Single<Ship> @GET("history") fun getAllEvents(): Single<MutableList<Event>> @GET("history/{id}") fun getEvent(@Path("id") id: Long): Single<Event> }
25.670213
70
0.658931
9531c91ae34b0ee7e91d72e87a052dcdd58b2688
1,159
css
CSS
src/App.css
murphycj/agfusionweb-react
9305aa3caa653fa74608d1ae3dd59c03a3df6294
[ "MIT" ]
1
2019-12-11T22:22:02.000Z
2019-12-11T22:22:02.000Z
src/App.css
murphycj/agfusionweb-react
9305aa3caa653fa74608d1ae3dd59c03a3df6294
[ "MIT" ]
15
2020-03-25T02:21:18.000Z
2022-03-27T20:05:01.000Z
src/App.css
murphycj/agfusionweb-react
9305aa3caa653fa74608d1ae3dd59c03a3df6294
[ "MIT" ]
null
null
null
.App { text-align: center; } .App-header { color: white; font-size: 1.1rem; } .ant-header { padding: 0 1.1rem; } .App-header-left { display: flex; flex-direction: row; justify-content: flex-start; } .App-header-right { display: flex; flex-direction: row; justify-content: flex-end; } .App-header-link-name { color: white; } .App-header-link { color: white; margin: 0 1rem; } @media only screen and (max-width: 767px) { .App-header-desktop { display: none; } .App-header-link { color: white; margin: 0 0; } .App-header-mobile { font-size: 0.9rem; } } @media only screen and (min-width: 768px) { .App-header-mobile { display: none; } } .App-content { display: flex; min-height: 100vh; flex-direction: column; justify-content: center; padding: 10vh 10vw; } .App-footer { display: flex; flex-direction: row; align-items: center; justify-content: center; flex: 0 0 auto; margin-top: auto; background-color: #01101F; } .app-footer-text { text-align: center; margin: 0.5rem 0; display: flex; justify-content: center; align-items: center; color: white; }
13.963855
43
0.633305
76cda6e3bdc88fb253eb7abb5302f0a7be954da8
329
h
C
common/permutation/fixed_point.h
Loks-/competitions
3bb231ba9dd62447048832f45b09141454a51926
[ "MIT" ]
4
2018-06-05T14:15:52.000Z
2022-02-08T05:14:23.000Z
common/permutation/fixed_point.h
Loks-/competitions
3bb231ba9dd62447048832f45b09141454a51926
[ "MIT" ]
null
null
null
common/permutation/fixed_point.h
Loks-/competitions
3bb231ba9dd62447048832f45b09141454a51926
[ "MIT" ]
1
2018-10-21T11:01:35.000Z
2018-10-21T11:01:35.000Z
#pragma once #include "common/permutation/base.h" #include <vector> namespace permutation { inline std::vector<unsigned> FixedPoints(const TLine& line) { std::vector<unsigned> output; for (unsigned i = 0; i < line.size(); ++i) { if (line[i] == i) output.push_back(i); } return output; } } // namespace permutation
21.933333
61
0.674772
b5d959bc4e98e48fe7d4328de285c93e5462f939
6,517
swift
Swift
LoveCat/Class/MinePage/Models/MinePageModel.swift
xingtianwuganqi/iOS_petrescue
618aa0b00540a323f4d0debbdf7743abff3e6ed0
[ "MIT" ]
null
null
null
LoveCat/Class/MinePage/Models/MinePageModel.swift
xingtianwuganqi/iOS_petrescue
618aa0b00540a323f4d0debbdf7743abff3e6ed0
[ "MIT" ]
null
null
null
LoveCat/Class/MinePage/Models/MinePageModel.swift
xingtianwuganqi/iOS_petrescue
618aa0b00540a323f4d0debbdf7743abff3e6ed0
[ "MIT" ]
null
null
null
// // MinePageModel.swift // LoveCat // // Created by jingjun on 2021/1/6. // import Foundation import HandyJSON struct MinePageCellModel { var iconImg: String? var title: String? var num: Int = 0 } struct HistoryModel: HandyJSON { var history_id: Int? var topicInfo: HomePageModel? var topic_id: Int? } struct CollectionModel: HandyJSON { var collection_id: Int = 0 var userInfo: UserInfoModel? var topicInfo: HomePageModel? var topic_id: Int = 0 } struct TopicInfo: HandyJSON { var is_complete: Bool = false var topic_id: Int = 0 var views_num: Int = 0 var gambit_type: String? var comments_num: Int = 0 var user: Int = 0 var userInfo: UserInfoModel? var update_time: String? var create_time: String? var address_info: String? var liked: Bool = false var content: String? var collectioned: Bool = false var imgs: String? var likes_num: Int = 0 var contact: String? var is_get_contact: Bool = false } struct UserEditModel { var title: String? var placeholder: String? var textValue: String? var avator: UIImage? } struct ShowCollectionModel: HandyJSON { var showcollect_id: Int = 0 var userInfo: UserInfoModel? var showInfo: ShowPageModel? var topic_id: Int = 0 } struct MessageInfoModel: HandyJSON { var msg_id: Int? var id: Int? var from_info: UserInfoModel? var to_info: UserInfoModel? var msg_type: MsgTypeInfo? var content: String? var text: String? var create_time: String? var msgAttr: NSAttributedString? mutating func didFinishMapping() { if let time = self.create_time { self.create_time = Tool.shared.timeTDate(time: time) }else{ self.create_time = nil } let attrbute = NSMutableAttributedString() if let content = self.content { //设置段落属性 let paragraphStyle = NSMutableParagraphStyle() paragraphStyle.lineSpacing = 3 //设置行间距 paragraphStyle.alignment = .justified //文本对齐方向 attrbute.append(NSAttributedString(string: "您发表的", attributes: [NSAttributedString.Key.foregroundColor: UIColor.color(.content)!, NSAttributedString.Key.font: UIFont.et.fontSize(), NSAttributedString.Key.paragraphStyle: paragraphStyle])) attrbute.append(NSAttributedString(string: self.msg_type?.title ?? "", attributes: [NSAttributedString.Key.foregroundColor: UIColor.color(.content)!, NSAttributedString.Key.font: UIFont.et.fontSize(), NSAttributedString.Key.paragraphStyle: paragraphStyle])) attrbute.append(NSAttributedString(string: " \(content) ", attributes: [NSAttributedString.Key.foregroundColor: UIColor.color(.urlColor)!, NSAttributedString.Key.font: UIFont.et.fontSize(), NSAttributedString.Key.paragraphStyle: paragraphStyle])) switch msg_type { case .rescueLike, .showLike: attrbute.append(NSAttributedString(string: "获得一条点赞", attributes: [NSAttributedString.Key.foregroundColor: UIColor.color(.content)!, NSAttributedString.Key.font: UIFont.et.fontSize(), NSAttributedString.Key.paragraphStyle: paragraphStyle])) break case .rescueCollection, .showCollection: if let from_name = from_info?.username,from_name.count > 0 { attrbute.append(NSAttributedString(string: "被用户\(from_name)收藏了", attributes: [NSAttributedString.Key.foregroundColor: UIColor.color(.content)!, NSAttributedString.Key.font: UIFont.et.fontSize(), NSAttributedString.Key.paragraphStyle: paragraphStyle])) }else{ attrbute.append(NSAttributedString(string: "被他人收藏了", attributes: [NSAttributedString.Key.foregroundColor: UIColor.color(.content)!, NSAttributedString.Key.font: UIFont.et.fontSize(), NSAttributedString.Key.paragraphStyle: paragraphStyle])) } break case .rescueComment, .showComment: attrbute.append(NSAttributedString(string: "收到一条评论。", attributes: [NSAttributedString.Key.foregroundColor: UIColor.color(.content)!, NSAttributedString.Key.font: UIFont.et.fontSize(), NSAttributedString.Key.paragraphStyle: paragraphStyle])) if let text = self.text,text.count > 0 { attrbute.append(NSAttributedString(string: "他说:\(text)", attributes: [NSAttributedString.Key.foregroundColor: UIColor.color(.content)!, NSAttributedString.Key.font: UIFont.et.fontSize(), NSAttributedString.Key.paragraphStyle: paragraphStyle])) } break case .rescueReply, .showReply: attrbute.append(NSAttributedString(string: "收到一条回复。", attributes: [NSAttributedString.Key.foregroundColor: UIColor.color(.content)!, NSAttributedString.Key.font: UIFont.et.fontSize(), NSAttributedString.Key.paragraphStyle: paragraphStyle])) if let text = self.text,text.count > 0 { attrbute.append(NSAttributedString(string: "他说:\(text)", attributes: [NSAttributedString.Key.foregroundColor: UIColor.color(.content)!, NSAttributedString.Key.font: UIFont.et.fontSize(), NSAttributedString.Key.paragraphStyle: paragraphStyle])) } break default: break } } self.msgAttr = attrbute } } enum MsgTypeInfo: Int ,HandyJSONEnum{ case rescueLike = 1 case rescueCollection = 2 case rescueComment = 3 case rescueReply = 4 case showLike = 5 case showCollection = 6 case showComment = 7 case showReply = 8 var title: String { switch self { case .rescueLike, .rescueCollection,.rescueComment: return "领养" case .showLike, .showCollection,.showComment: return "秀宠" case .showReply, .rescueReply: return "评论" } } var desc: String { switch self { case .rescueLike,.showLike: return "点赞" case .rescueCollection, .showCollection: return "收藏" case .rescueComment, .showComment: return "评论" case .rescueReply, .showReply: return "回复" } } } struct UnreadModel: HandyJSON { var number: Int? } struct ViolationModel: HandyJSON { var id: Int? var vio_name: String? var selected: Bool = false }
36.819209
271
0.652141
25280bac2da3926d23dc3b26a7ca7b9ca29edb35
318
swift
Swift
card/Classes/Tools/Common.swift
yh8577/conact
a987d1f402a295d5705101425ef833b6885effe6
[ "MIT" ]
null
null
null
card/Classes/Tools/Common.swift
yh8577/conact
a987d1f402a295d5705101425ef833b6885effe6
[ "MIT" ]
null
null
null
card/Classes/Tools/Common.swift
yh8577/conact
a987d1f402a295d5705101425ef833b6885effe6
[ "MIT" ]
null
null
null
// // Common.swift // card // // Created by yihui on 2017/11/6. // Copyright © 2017年 yihui. All rights reserved. // import UIKit import Foundation // 屏幕wh let WIDTH = UIScreen.main.bounds.width let HEIGHT = UIScreen.main.bounds.height let BOUNDS = UIScreen.main.bounds // 刷新通知 let refreshData = "refreshData"
15.142857
49
0.707547
ec28531c9f99d3bf48822a7d862a2cc8b8b8a0ee
105
sql
SQL
Data Scientist Career Path/14. SQL for Interview Prep/2. Multiple/2. Challenge/8.sql
myarist/Codecademy
2ba0f104bc67ab6ef0f8fb869aa12aa02f5f1efb
[ "MIT" ]
23
2021-06-06T15:35:55.000Z
2022-03-21T06:53:42.000Z
Data Scientist Career Path/14. SQL for Interview Prep/2. Multiple/2. Challenge/8.sql
shivaniverma1/Data-Scientist
f82939a411484311171465591455880c8e354750
[ "MIT" ]
null
null
null
Data Scientist Career Path/14. SQL for Interview Prep/2. Multiple/2. Challenge/8.sql
shivaniverma1/Data-Scientist
f82939a411484311171465591455880c8e354750
[ "MIT" ]
9
2021-06-08T01:32:04.000Z
2022-03-18T15:38:09.000Z
SELECT '2017-01-01' AS 'month' UNION SELECT '2017-02-01' AS 'month' UNION SELECT '2017-03-01' AS 'month';
21
31
0.695238
73f2a7645a76ce1e315b39514221bb7b4d6dacdf
481
kt
Kotlin
user-management/keycloak-gateway/src/main/kotlin/co/nilin/opex/auth/gateway/config/KeycloakServerProperties.kt
opexdev/OPEX-core
a9744f9de772b76ae86335a387922c87a45f54a9
[ "MIT" ]
20
2021-09-21T10:08:58.000Z
2022-03-05T08:54:43.000Z
user-management/keycloak-gateway/src/main/kotlin/co/nilin/opex/auth/gateway/config/KeycloakServerProperties.kt
opexdev/OPEX-Core
a9744f9de772b76ae86335a387922c87a45f54a9
[ "MIT" ]
126
2021-09-11T09:59:50.000Z
2022-03-13T09:35:34.000Z
user-management/keycloak-gateway/src/main/kotlin/co/nilin/opex/auth/gateway/config/KeycloakServerProperties.kt
opexdev/OPEX-core
a9744f9de772b76ae86335a387922c87a45f54a9
[ "MIT" ]
6
2021-12-29T05:06:04.000Z
2022-02-07T10:08:32.000Z
package co.nilin.opex.auth.gateway.config import org.springframework.boot.context.properties.ConfigurationProperties import org.springframework.context.annotation.Configuration @Configuration @ConfigurationProperties(prefix = "keycloak.server") class KeycloakServerProperties { var contextPath = "/auth" var realmImportFile = "/opex-realm.json" var adminUser = AdminUser() class AdminUser { var username = "admin" var password = "admin" } }
25.315789
74
0.744283
7ac48393eef8c61d7a861d64816cc9bea136a18e
1,252
rb
Ruby
rename_generic_project.rb
michaeltansg/scripts
e25a4bab8ac8d921248c917e0eea875ea63692cb
[ "MIT" ]
null
null
null
rename_generic_project.rb
michaeltansg/scripts
e25a4bab8ac8d921248c917e0eea875ea63692cb
[ "MIT" ]
null
null
null
rename_generic_project.rb
michaeltansg/scripts
e25a4bab8ac8d921248c917e0eea875ea63692cb
[ "MIT" ]
null
null
null
#!/usr/bin/env ruby require 'find' require 'FileUtils' $generic_project_name = 'FirebaseAppBoilerplate' project_name = 'MyApp' file_paths = [] def return_first_matching_directory Dir.glob("**/*/").each { |path| return path.delete_suffix('/') if path =~ /#{Regexp.escape($generic_project_name)}/ } return nil end def return_first_matching_file Dir.glob("**/*").each { |path| return path.delete_suffix('/') if path =~ /#{Regexp.escape($generic_project_name)}/ } return nil end Find.find('.') do |path| if path =~ /(\.git\/|Pods\/|#{Regexp.escape(File.basename(__FILE__))}$)/ else file_paths << path unless File.directory?(path) end end replacements = [ [$generic_project_name, project_name] ] file_paths.each { |file| lines = File.readlines(file).join('') replacements.each { |replacement| lines.gsub!(replacement[0], replacement[1]) } File.open(file, "w") { |file| file.puts lines } } while dir = return_first_matching_directory do FileUtils.mv dir, dir.gsub($generic_project_name, project_name) end while file = return_first_matching_file do FileUtils.mv file, file.gsub($generic_project_name, project_name) end puts puts 'If you are using pods, run pod install again before launching the workspace.' puts
25.55102
87
0.717252
a75b4f9f9c09552620811543298c49ccd3686d3d
2,844
swift
Swift
IMProcessing/Classes/Extensions/NSimage(IMProcessing).swift
dehancer/improcessing
1c0d0a294562d69bd69b9311c98df85bdde8662f
[ "MIT" ]
9
2019-03-10T10:07:41.000Z
2022-02-01T20:53:55.000Z
IMProcessing/Classes/Extensions/NSimage(IMProcessing).swift
dehancer/improcessing
1c0d0a294562d69bd69b9311c98df85bdde8662f
[ "MIT" ]
null
null
null
IMProcessing/Classes/Extensions/NSimage(IMProcessing).swift
dehancer/improcessing
1c0d0a294562d69bd69b9311c98df85bdde8662f
[ "MIT" ]
null
null
null
// // NSimage(IMProcessing).swift // CryptoSwift // // Created by denn on 13.08.2018. // #if os(OSX) import AppKit //public extension NSImage { // // public func resize(factor level: CGFloat) -> NSImage { // let _image = self // let newRect: NSRect = NSMakeRect(0, 0, _image.size.width, _image.size.height) // // let imageSizeH: CGFloat = _image.size.height * level // let imageSizeW: CGFloat = _image.size.width * level // // let newImage = NSImage(size: NSMakeSize(imageSizeW, imageSizeH)) // newImage.lockFocus() // NSGraphicsContext.current?.imageInterpolation = NSImageInterpolation.medium // // _image.draw(in: NSMakeRect(0, 0, imageSizeW, imageSizeH), from: newRect, operation: .sourceOver, fraction: 1) // newImage.unlockFocus() // // return newImage // } // // convenience init(color: NSColor, size: NSSize) { // self.init(size: size) // lockFocus() // color.drawSwatch(in: NSMakeRect(0, 0, size.width, size.height)) // unlockFocus() // } // // public static var typeExtensions:[String] { // return NSImage.imageTypes.map { (name) -> String in // return name.components(separatedBy: ".").last! // } // } // // public class func getMeta(contentsOf url: URL) -> [String: AnyObject]? { // guard let imageSource = CGImageSourceCreateWithURL(url as CFURL, nil) else { return nil } // guard let properties = CGImageSourceCopyPropertiesAtIndex(imageSource, 0, nil) as? [String: AnyObject] else { return nil } // return properties // } // // public class func getSize(contentsOf url: URL) -> NSSize? { // guard let properties = NSImage.getMeta(contentsOf: url) else { return nil } // if let w = properties[kCGImagePropertyPixelWidth as String]?.floatValue, // let h = properties[kCGImagePropertyPixelHeight as String]?.floatValue { // return NSSize(width: w.cgfloat, height: h.cgfloat) // } // return nil // } // // public class func thumbNail(contentsOf url: URL, size max: Int) -> NSImage? { // // guard let imageSource = CGImageSourceCreateWithURL(url as CFURL, nil) else { return nil } // // let options = [ // kCGImageSourceShouldAllowFloat as String: true as NSNumber, // kCGImageSourceCreateThumbnailWithTransform as String: false as NSNumber, // kCGImageSourceCreateThumbnailFromImageAlways as String: true as NSNumber, // kCGImageSourceThumbnailMaxPixelSize as String: max as NSNumber // ] as CFDictionary // // guard let thumbnail = CGImageSourceCreateThumbnailAtIndex(imageSource, 0, options) else { return nil } // // return NSImage(cgImage: thumbnail, size: NSSize(width: max, height: max)) // } //} #endif
36
133
0.638889
164d448496adbf152d765a34f31cc0bd5d331f51
12,822
h
C
lib/nxp_driver/lpcopen/lpc15xx/lpc_chip_15xx/inc/swm_15xx.h
thiamchi/micropython_custom
b2d3ac286268502029a2215adb710c15f21ccae0
[ "MIT" ]
null
null
null
lib/nxp_driver/lpcopen/lpc15xx/lpc_chip_15xx/inc/swm_15xx.h
thiamchi/micropython_custom
b2d3ac286268502029a2215adb710c15f21ccae0
[ "MIT" ]
null
null
null
lib/nxp_driver/lpcopen/lpc15xx/lpc_chip_15xx/inc/swm_15xx.h
thiamchi/micropython_custom
b2d3ac286268502029a2215adb710c15f21ccae0
[ "MIT" ]
null
null
null
/* * @brief LPC15xx Switch Matrix driver * * @note * Copyright(C) NXP Semiconductors, 2014 * All rights reserved. * * @par * Software that is described herein is for illustrative purposes only * which provides customers with programming information regarding the * LPC products. This software is supplied "AS IS" without any warranties of * any kind, and NXP Semiconductors and its licensor disclaim any and * all warranties, express or implied, including all implied warranties of * merchantability, fitness for a particular purpose and non-infringement of * intellectual property rights. NXP Semiconductors assumes no responsibility * or liability for the use of the software, conveys no license or rights under any * patent, copyright, mask work right, or any other intellectual property rights in * or to any products. NXP Semiconductors reserves the right to make changes * in the software without notification. NXP Semiconductors also makes no * representation or warranty that such application will be suitable for the * specified use without further testing or modification. * * @par * Permission to use, copy, modify, and distribute this software and its * documentation is hereby granted, under NXP Semiconductors' and its * licensor's relevant copyrights in the software, without fee, provided that it * is used in conjunction with NXP Semiconductors microcontrollers. This * copyright, permission, and disclaimer notice must appear in all copies of * this code. */ #ifndef __SWM_15XX_H_ #define __SWM_15XX_H_ #ifdef __cplusplus extern "C" { #endif /** @defgroup SWM_15XX CHIP: LPC15xx Switch Matrix Driver * @ingroup CHIP_15XX_Drivers * @{ */ /** * @brief LPC15XX Switch Matrix register block structure */ typedef struct { __IO uint32_t PINASSIGN[16]; /*!< Pin Assignment register array */ __I uint32_t RESERVED0[96]; __IO uint32_t PINENABLE[2]; /*!< fixed pin enable/disable registers */ } LPC_SWM_T; /** * @brief LPC15XX Switch Matrix Movable pins */ typedef enum CHIP_SWM_PIN_MOVABLE { SWM_UART0_TXD_O = 0x00, /*!< PINASSIGN0 - UART0 TXD Output */ SWM_UART0_RXD_I = 0x01, /*!< PINASSIGN0 - UART0 RXD Input */ SWM_UART0_RTS_O = 0x02, /*!< PINASSIGN0 - UART0 RTS Output */ SWM_UART0_CTS_I = 0x03, /*!< PINASSIGN0 - UART0 CTS Input */ SWM_UART0_SCLK_IO = 0x10, /*!< PINASSIGN1 - UART0 SCLK I/O */ SWM_UART1_TXD_O = 0x11, /*!< PINASSIGN1 - UART1 TXD Output */ SWM_UART1_RXD_I = 0x12, /*!< PINASSIGN1 - UART1 RXD Input */ SWM_UART1_RTS_O = 0x13, /*!< PINASSIGN1 - UART1 RTS Output */ SWM_UART1_CTS_I = 0x20, /*!< PINASSIGN2 - UART1 CTS Input */ SWM_UART1_SCLK_IO = 0x21, /*!< PINASSIGN2 - UART1 SCLK I/O */ SWM_UART2_TXD_O = 0x22, /*!< PINASSIGN2 - UART2 TXD Output */ SWM_UART2_RXD_I = 0x23, /*!< PINASSIGN2 - UART2 RXD Input */ SWM_UART2_SCLK_IO = 0x30, /*!< PINASSIGN3 - UART2 SCLK I/O */ SWM_SSP0_SCK_IO = 0x31, /*!< PINASSIGN3 - SSP0 SCK I/O */ SWM_SPI0_SCK_IO = SWM_SSP0_SCK_IO, SWM_SSP0_MOSI_IO = 0x32, /*!< PINASSIGN3 - SSP0 MOSI I/O */ SWM_SPI0_MOSI_IO = SWM_SSP0_MOSI_IO, SWM_SSP0_MISO_IO = 0x33, /*!< PINASSIGN3 - SSP0 MISO I/O */ SWM_SPI0_MISO_IO = SWM_SSP0_MISO_IO, SWM_SSP0_SSELSN_0_IO = 0x40, SWM_SPI0_SSELSN_0_IO = SWM_SSP0_SSELSN_0_IO, SWM_SSP0_SSELSN_1_IO = 0x41, SWM_SPI0_SSELSN_1_IO = SWM_SSP0_SSELSN_1_IO, SWM_SSP0_SSELSN_2_IO = 0x42, SWM_SPI0_SSELSN_2_IO = SWM_SSP0_SSELSN_2_IO, SWM_SSP0_SSELSN_3_IO = 0x43, SWM_SPI0_SSELSN_3_IO = SWM_SSP0_SSELSN_3_IO, SWM_SSP1_SCK_IO = 0x50, /*!< PINASSIGN5 - SPI1 SCK I/O */ SWM_SPI1_SCK_IO = SWM_SSP1_SCK_IO, SWM_SSP1_MOSI_IO = 0x51, /*!< PINASSIGN5 - SPI1 MOSI I/O */ SWM_SPI1_MOSI_IO = SWM_SSP1_MOSI_IO, SWM_SSP1_MISO_IO = 0x52, /*!< PINASSIGN5 - SPI1 MISO I/O */ SWM_SPI1_MISO_IO = SWM_SSP1_MISO_IO, SWM_SSP1_SSELSN_0_IO = 0x53, /*!< PINASSIGN5 - SPI1 SSEL I/O */ SWM_SPI1_SSELSN_0_IO = SWM_SSP1_SSELSN_0_IO, SWM_SSP1_SSELSN_1_IO = 0x60, SWM_SPI1_SSELSN_1_IO = SWM_SSP1_SSELSN_1_IO, SWM_CAN_TD1_O = 0x61, SWM_CAN_RD1_I = 0x62, SWM_USB_VBUS_I = 0x70, SWM_SCT0_OUT0_O = 0x71, SWM_SCT0_OUT1_O = 0x72, SWM_SCT0_OUT2_O = 0x73, SWM_SCT1_OUT0_O = 0x80, SWM_SCT1_OUT1_O = 0x81, SWM_SCT1_OUT2_O = 0x82, SWM_SCT2_OUT0_O = 0x83, SWM_SCT2_OUT1_O = 0x90, SWM_SCT2_OUT2_O = 0x91, SWM_SCT3_OUT0_O = 0x92, SWM_SCT3_OUT1_O = 0x93, SWM_SCT3_OUT2_O = 0xA0, SWM_SCT_ABORT0_I = 0xA1, SWM_SCT_ABORT1_I = 0xA2, SWM_ADC0_PIN_TRIG0_I = 0xA3, SWM_ADC0_PIN_TRIG1_I = 0xB0, SWM_ADC1_PIN_TRIG0_I = 0xB1, SWM_ADC1_PIN_TRIG1_I = 0xB2, SWM_DAC_PIN_TRIG_I = 0xB3, SWM_DAC_SHUTOFF_I = 0xC0, SWM_ACMP0_OUT_O = 0xC1, SWM_ACMP1_OUT_O = 0xC2, SWM_ACMP2_OUT_O = 0xC3, SWM_ACMP3_OUT_O = 0xD0, SWM_CLK_OUT_O = 0xD1, SWM_ROSC0_O = 0xD2, SWM_ROSC_RST0_I = 0xD3, SWM_USB_FRAME_TOG_O = 0xE0, SWM_QEI0_PHA_I = 0xE1, SWM_QEI0_PHB_I = 0xE2, SWM_QEI0_IDX_I = 0xE3, SWM_GPIO_INT_BMATCH_O = 0xF0, SWM_SWO_O = 0xF1, } CHIP_SWM_PIN_MOVABLE_T; /** * @brief LPC15XX Switch Matrix Fixed pins */ typedef enum CHIP_SWM_PIN_FIXED { SWM_FIXED_ADC0_0 = 0x00, /*!< ADC0_0 fixed pin enable/disable on pin P0_8 */ SWM_FIXED_ADC0_1 = 0x01, /*!< ADC0_1 fixed pin enable/disable on pin P0_7 */ SWM_FIXED_ADC0_2 = 0x02, /*!< ADC0_2 fixed pin enable/disable on pin P0_6 */ SWM_FIXED_ADC0_3 = 0x03, /*!< ADC0_3 fixed pin enable/disable on pin P0_5 */ SWM_FIXED_ADC0_4 = 0x04, /*!< ADC0_4 fixed pin enable/disable on pin P0_4 */ SWM_FIXED_ADC0_5 = 0x05, /*!< ADC0_5 fixed pin enable/disable on pin P0_3 */ SWM_FIXED_ADC0_6 = 0x06, /*!< ADC0_6 fixed pin enable/disable on pin P0_2 */ SWM_FIXED_ADC0_7 = 0x07, /*!< ADC0_7 fixed pin enable/disable on pin P0_1 */ SWM_FIXED_ADC0_8 = 0x08, /*!< ADC0_8 fixed pin enable/disable on pin P1_0 */ SWM_FIXED_ADC0_9 = 0x09, /*!< ADC0_9 fixed pin enable/disable on pin P0_31 */ SWM_FIXED_ADC0_10 = 0x0A, /*!< ADC0_10 fixed pin enable/disable on pin P0_0 */ SWM_FIXED_ADC0_11 = 0x0B, /*!< ADC0_11 fixed pin enable/disable on pin P0_30 */ SWM_FIXED_ADC1_0 = 0x0C, /*!< ADC1_0 fixed pin enable/disable/disable on pin P1_1 */ SWM_FIXED_ADC1_1 = 0x0D, /*!< ADC1_1 fixed pin enable/disable on pin P0_9 */ SWM_FIXED_ADC1_2 = 0x0E, /*!< ADC1_2 fixed pin enable/disable on pin P0_10 */ SWM_FIXED_ADC1_3 = 0x0F, /*!< ADC1_3 fixed pin enable/disable on pin P0_11 */ SWM_FIXED_ADC1_4 = 0x10, /*!< ADC1_4 fixed pin enable/disable on pin P1_2 */ SWM_FIXED_ADC1_5 = 0x11, /*!< ADC1_5 fixed pin enable/disable on pin P1_3 */ SWM_FIXED_ADC1_6 = 0x12, /*!< ADC1_6 fixed pin enable/disable on pin P0_13 */ SWM_FIXED_ADC1_7 = 0x13, /*!< ADC1_7 fixed pin enable/disable on pin P0_14 */ SWM_FIXED_ADC1_8 = 0x14, /*!< ADC1_8 fixed pin enable/disable on pin P0_15 */ SWM_FIXED_ADC1_9 = 0x15, /*!< ADC1_9 fixed pin enable/disable on pin P0_16 */ SWM_FIXED_ADC1_10 = 0x16, /*!< ADC1_10 fixed pin enable/disable on pin P1_4 */ SWM_FIXED_ADC1_11 = 0x17, /*!< ADC1_11 fixed pin enable/disable on pin P1_5 */ SWM_FIXED_DAC_OUT = 0x18, /*!< DAC_OUT fixed pin enable/disable on pin P0_12 */ SWM_FIXED_ACMP_I1 = 0x19, /*!< ACMP input 1 (common input) fixed pin enable/disable on pin P0_27 */ SWM_FIXED_ACMP_I2 = 0x1A, /*!< ACMP input 1 (common input) fixed pin enable/disable on pin P1_6 */ SWM_FIXED_ACMP0_I3 = 0x1B, /*!< ACMP comparator 0 input 3 fixed pin enable/disable on pin P0_26 */ SWM_FIXED_ACMP0_I4 = 0x1C, /*!< ACMP comparator 0 input 4 fixed pin enable/disable on pin P0_25 */ SWM_FIXED_ACMP1_I3 = 0x1D, /*!< ACMP comparator 1 input 3 fixed pin enable/disable on pin P0_28 */ SWM_FIXED_ACMP1_I4 = 0x1E, /*!< ACMP comparator 1 input 4 fixed pin enable/disable on pin P1_10 */ SWM_FIXED_ACMP2_I3 = 0x1F, /*!< ACMP comparator 2 input 3 fixed pin enable/disable on pin P0_29 */ SWM_FIXED_ACMP2_I4 = 0x80, /*!< ACMP comparator 2 input 4 fixed pin enable/disable on pin P1_9 */ SWM_FIXED_ACMP3_I3 = 0x81, /*!< ACMP comparator 3 input 3 fixed pin enable/disable on pin P1_8 */ SWM_FIXED_ACMP3_I4 = 0x82, /*!< ACMP comparator 3 input 4 fixed pin enable/disable on pin P1_7 */ SWM_FIXED_I2C0_SDA = 0x83, /*!< I2C0_SDA fixed pin enable/disable on pin P0_23 */ SWM_FIXED_I2C0_SCL = 0x84, /*!< I2C0_SCL fixed pin enable/disable on pin P0_22 */ SWM_FIXED_SCT0_OUT3 = 0x85, /*!< SCT0_OUT3 fixed pin enable/disable on pin P0_0 */ SWM_FIXED_SCT0_OUT4 = 0x86, /*!< SCT0_OUT4 fixed pin enable/disable on pin P0_1 */ SWM_FIXED_SCT0_OUT5 = 0x87, /*!< SCT0_OUT5 fixed pin enable/disable on pin P0_18 */ SWM_FIXED_SCT0_OUT6 = 0x88, /*!< SCT0_OUT6 fixed pin enable/disable on pin P0_24 */ SWM_FIXED_SCT0_OUT7 = 0x89, /*!< SCT0_OUT7 fixed pin enable/disable on pin P1_14 */ SWM_FIXED_SCT1_OUT3 = 0x8A, /*!< SCT1_OUT3 fixed pin enable/disable on pin P0_2 */ SWM_FIXED_SCT1_OUT4 = 0x8B, /*!< SCT1_OUT4 fixed pin enable/disable on pin P0_3 */ SWM_FIXED_SCT1_OUT5 = 0x8C, /*!< SCT1_OUT5 fixed pin enable/disable on pin P0_14 */ SWM_FIXED_SCT1_OUT6 = 0x8D, /*!< SCT1_OUT6 fixed pin enable/disable on pin P0_20 */ SWM_FIXED_SCT1_OUT7 = 0x8E, /*!< SCT1_OUT7 fixed pin enable/disable on pin P1_17 */ SWM_FIXED_SCT2_OUT3 = 0x8F, /*!< SCT2_OUT3 fixed pin enable/disable on pin P0_6 */ SWM_FIXED_SCT2_OUT4 = 0x90, /*!< SCT2_OUT4 fixed pin enable/disable on pin P0_29 */ SWM_FIXED_SCT2_OUT5 = 0x91, /*!< SCT2_OUT5 fixed pin enable/disable on pin P1_20 */ SWM_FIXED_SCT3_OUT3 = 0x92, /*!< SCT3_OUT3 fixed pin enable/disable on pin P0_26 */ SWM_FIXED_SCT3_OUT4 = 0x93, /*!< SCT3_OUT4 fixed pin enable/disable on pin P1_8 */ SWM_FIXED_SCT3_OUT5 = 0x94, /*!< SCT3_OUT5 fixed pin enable/disable on pin P1_24 */ SWM_FIXED_RESETN = 0x95, /*!< RESETN fixed pin enable/disable on pin P0_21 */ SWM_FIXED_SWCLK_TCK = 0x96, /*!< SWCLK_TCK fixed pin enable/disable on pin P0_19 */ SWM_FIXED_SWDIO = 0x97, /*!< SWDIO fixed pin enable/disable on pin P0_20 */ } CHIP_SWM_PIN_FIXED_T; /** * @brief Initialize the SWM module * @return Nothing * @note This function only enables the SWM clock. */ STATIC INLINE void Chip_SWM_Init(void) { Chip_Clock_EnablePeriphClock(SYSCTL_CLOCK_SWM); } /** * @brief Deinitialise the SWM module * @return Nothing * @note This function only disables the SWM clock. */ STATIC INLINE void Chip_SWM_Deinit(void) { Chip_Clock_DisablePeriphClock(SYSCTL_CLOCK_SWM); } /** * @brief Assign movable pin function to physical pin in Switch Matrix * @param movable : Movable pin function * @param assign : Physical pin to be assigned * @return Nothing */ void Chip_SWM_MovablePinAssign(CHIP_SWM_PIN_MOVABLE_T movable, uint8_t assign); /** * @brief Assign movable pin function to port and pin in the Switch Matrix * @param movable : Movable pin function * @param port : Port number * @param pin : Pin number * @return Nothing * @note This function does the same thing as Chip_SWM_MovablePinAssign() * except works with a port and pin number instead of a physical * pin number. */ STATIC INLINE void Chip_SWM_MovablePortPinAssign(CHIP_SWM_PIN_MOVABLE_T movable, uint8_t port, uint8_t pin) { Chip_SWM_MovablePinAssign(movable, ((port * 32) + pin)); } /** * @brief Enables a fixed function pin in the Switch Matrix * @param pin : Pin to be enabled * @return Nothing */ void Chip_SWM_EnableFixedPin(CHIP_SWM_PIN_FIXED_T pin); /** * @brief Disables a fixed function pin in the Switch Matrix * @param pin : Pin to be disabled * @return Nothing */ void Chip_SWM_DisableFixedPin(CHIP_SWM_PIN_FIXED_T pin); /** * @brief Enables or disables a fixed function pin in the Switch Matrix * @param pin : Pin to be enabled or disabled * @param enable : True to enable the pin, False to disable the pin * @return Nothing */ void Chip_SWM_FixedPinEnable(CHIP_SWM_PIN_FIXED_T pin, bool enable); /** * @brief Tests whether a fixed function pin is enabled or disabled in the Switch Matrix * @param pin : The pin to test whether it is enabled or disabled * @return True if the pin is enabled, False if disabled */ bool Chip_SWM_IsFixedPinEnabled(CHIP_SWM_PIN_FIXED_T pin); /** * @} */ #ifdef __cplusplus } #endif #endif /* __SWM_15XX_H_ */
46.625455
108
0.690142
2a51a5684c9d37f1ba8d4364b4caa95120890d67
3,208
java
Java
src/org/myrobotlab/vision/OpenCVFilterResize.java
AutonomicPerfectionist/myrobotlab
744f5a4f94343eb069e2d91e61e1bc490684b555
[ "Apache-2.0" ]
null
null
null
src/org/myrobotlab/vision/OpenCVFilterResize.java
AutonomicPerfectionist/myrobotlab
744f5a4f94343eb069e2d91e61e1bc490684b555
[ "Apache-2.0" ]
null
null
null
src/org/myrobotlab/vision/OpenCVFilterResize.java
AutonomicPerfectionist/myrobotlab
744f5a4f94343eb069e2d91e61e1bc490684b555
[ "Apache-2.0" ]
null
null
null
/** * * @author greg (at) myrobotlab.org * * This file is part of MyRobotLab (http://myrobotlab.org). * * MyRobotLab 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 (subject to the "Classpath" exception * as provided in the LICENSE.txt file that accompanied this code). * * MyRobotLab is distributed in the hope that it will be useful or fun, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * All libraries in thirdParty bundle are subject to their own license * requirements - please refer to http://myrobotlab.org/libraries for * details. * * Enjoy ! * * */ // http://stackoverflow.com/questions/11515072/how-to-identify-optimal-parameters-for-cvcanny-for-polygon-approximation package org.myrobotlab.vision; import static org.bytedeco.javacpp.opencv_imgproc.resize; import org.bytedeco.javacpp.opencv_core.IplImage; import org.bytedeco.javacpp.opencv_core.Mat; import org.bytedeco.javacpp.opencv_core.Size; import org.bytedeco.javacv.OpenCVFrameConverter; import org.myrobotlab.logging.LoggerFactory; import org.slf4j.Logger; public class OpenCVFilterResize extends OpenCVFilter { private static final long serialVersionUID = 1L; transient IplImage resized; private int destWidth = 480; private int destHeight = 640; // TODO: why the heck do we need to convert back and forth, and is this // effecient?!?! private OpenCVFrameConverter.ToMat converterToMat = new OpenCVFrameConverter.ToMat(); private OpenCVFrameConverter.ToIplImage converterToIpl = new OpenCVFrameConverter.ToIplImage(); public final static Logger log = LoggerFactory.getLogger(OpenCVFilterResize.class.getCanonicalName()); public OpenCVFilterResize() { super(); } public OpenCVFilterResize(String name) { super(name); } @Override public void imageChanged(IplImage image) { resized = IplImage.createCompatible(image); } private Mat resizeImage(Mat img, int w, int h) { // TODO: move this to a base class. Mat resizedMat = new Mat(); // IplImage resizedImage = IplImage.create(modelSizeX, modelSizeY, // img.depth(), img.channels()); Size sz = new Size(w, h); resize(img, resizedMat, sz); return resizedMat; } @Override public IplImage process(IplImage image, VisionData data) { Mat resizedMat = converterToMat.convertToMat(converterToIpl.convert(image)); Mat res = resizeImage(resizedMat, destWidth, destHeight); return converterToMat.convertToIplImage(converterToIpl.convert(res)); } public int getDestWidth() { return destWidth; } public void setDestWidth(int destWidth) { this.destWidth = destWidth; } public int getDestHeight() { return destHeight; } public void setDestHeight(int destHeight) { this.destHeight = destHeight; } }
32.08
120
0.714464
77b93703d539c78c531a90d5f6bb52493d040ee0
1,312
rs
Rust
bbs_plus/src/error.rs
docknetwork/crypto
99a2f4bc9c92e3bd8d7780677d55dbb35fce787e
[ "Apache-2.0" ]
6
2021-09-12T08:15:17.000Z
2022-01-19T14:12:16.000Z
bbs_plus/src/error.rs
docknetwork/crypto
99a2f4bc9c92e3bd8d7780677d55dbb35fce787e
[ "Apache-2.0" ]
1
2022-02-08T16:55:33.000Z
2022-02-08T16:55:33.000Z
bbs_plus/src/error.rs
docknetwork/crypto
99a2f4bc9c92e3bd8d7780677d55dbb35fce787e
[ "Apache-2.0" ]
null
null
null
// TODO: At some point this should be replaced with crates anyhow and thiserror but thiserror is no_std compatible at the moment. use ark_serialize::SerializationError; use ark_std::fmt::Debug; use dock_crypto_utils::serde_utils::ArkSerializationError; use schnorr_pok::error::SchnorrError; use serde::Serialize; #[derive(Debug, Serialize)] pub enum BBSPlusError { NoMessageToSign, MessageCountIncompatibleWithSigParams(usize, usize), InvalidMessageIdx(usize), /// Signature's `A` is 0 ZeroSignature, InvalidSignature, /// Pairing check failed during verification of proof of knowledge of signature PairingCheckFailed, /// 1st schnorr proof failed during verification of proof of knowledge of signature FirstSchnorrVerificationFailed, /// 2nd schnorr proof failed during verification of proof of knowledge of signature SecondSchnorrVerificationFailed, InvalidMsgIdxForResponse(usize), #[serde(with = "ArkSerializationError")] Serialization(SerializationError), SchnorrError(SchnorrError), } impl From<SchnorrError> for BBSPlusError { fn from(e: SchnorrError) -> Self { Self::SchnorrError(e) } } impl From<SerializationError> for BBSPlusError { fn from(e: SerializationError) -> Self { Self::Serialization(e) } }
32.8
129
0.746189
9c097ac4bf003dcdeb7d23372ddf0026c9172bf3
1,381
kt
Kotlin
src/test/kotlin/testutils/TestSource.kt
md-5/proguard-core
6cd532a03c82eb27b14920e38b44130500acdf5d
[ "Apache-2.0" ]
169
2020-06-02T10:20:06.000Z
2022-03-22T11:33:08.000Z
src/test/kotlin/testutils/TestSource.kt
md-5/proguard-core
6cd532a03c82eb27b14920e38b44130500acdf5d
[ "Apache-2.0" ]
23
2020-06-02T20:21:00.000Z
2022-01-14T16:47:48.000Z
src/test/kotlin/testutils/TestSource.kt
md-5/proguard-core
6cd532a03c82eb27b14920e38b44130500acdf5d
[ "Apache-2.0" ]
25
2020-06-16T12:53:56.000Z
2022-01-16T08:34:26.000Z
/* * ProGuard -- shrinking, optimization, obfuscation, and preverification * of Java bytecode. * * Copyright (c) 2002-2021 Guardsquare NV */ package testutils import com.tschuchort.compiletesting.SourceFile import org.intellij.lang.annotations.Language import java.io.File import java.lang.IllegalStateException sealed class TestSource { companion object { fun fromFile(file: File): TestSource { return when { file.isJavaFile() -> JavaSource(file.name, file.readText()) file.isKotlinFile() -> KotlinSource(file.name, file.readText()) else -> FileSource(file) } } } abstract fun asSourceFile(): SourceFile } class JavaSource(val filename: String, @Language("Java") val contents: String) : TestSource() { override fun asSourceFile() = SourceFile.java(filename, contents) } class KotlinSource(val filename: String, @Language("Kotlin") val contents: String) : TestSource() { override fun asSourceFile() = SourceFile.kotlin(filename, contents) } class FileSource(val file: File) : TestSource() { override fun asSourceFile(): SourceFile = SourceFile.fromPath(file) } class AssemblerSource(val filename: String, val contents: String) : TestSource() { override fun asSourceFile(): SourceFile = throw IllegalStateException("Should not be called") }
31.386364
99
0.692252
e730b5224ddf8a659dcebe0130c1ea30bd31d9db
92,397
js
JavaScript
deadcode/editor.js
koreex/app
4d498cb8c43dd5c1e0927052ed71ca89f3c99713
[ "MIT" ]
148
2020-09-04T12:33:15.000Z
2022-03-31T05:39:25.000Z
deadcode/editor.js
koreex/app
4d498cb8c43dd5c1e0927052ed71ca89f3c99713
[ "MIT" ]
2,160
2020-09-05T19:34:53.000Z
2022-03-31T19:50:41.000Z
deadcode/editor.js
koreex/app
4d498cb8c43dd5c1e0927052ed71ca89f3c99713
[ "MIT" ]
84
2020-11-25T12:42:31.000Z
2022-03-29T04:34:40.000Z
import * as THREE from 'three'; import {BufferGeometryUtils} from 'three/examples/jsm/utils/BufferGeometryUtils'; import React from 'react'; const {Fragment, useState, useEffect, useRef} = React; import ReactDOM from 'react-dom'; import ReactThreeFiber from '@react-three/fiber'; import Babel from 'babel-standalone'; import JSZip from 'jszip'; // import {jsx} from 'jsx-tmpl'; import {world} from './world.js'; import transformControls from './transform-controls.js'; import physicsManager from './physics-manager.js'; import weaponsManager from './weapons-manager.js'; import cameraManager from './camera-manager.js'; import {rigManager} from './rig.js'; import controlsManager from './controls-manager.js'; import {downloadFile, getExt, flipGeomeryUvs, updateRaycasterFromMouseEvent, getCameraUiPlane, getUiForwardIntersection} from './util.js'; import App from './app.js'; import {camera, getRenderer} from './app-object.js'; import {CapsuleGeometry} from './CapsuleGeometry.js'; import HtmlRenderer from 'https://html-render.webaverse.com/html-render-api.js'; import {storageHost, tokensHost} from './constants.js'; // import TransformGizmo from './TransformGizmo.js'; // import transformControls from './transform-controls.js'; import easing from './easing.js'; import ghDownloadDirectory from './gh-download-directory.js'; const cubicBezier = easing(0, 1, 0, 1); // const cubicBezier2 = v => cubicBezier(cubicBezier(v)); const ghDownload = ghDownloadDirectory.default; // window.ghDownload = ghDownload; const htmlRenderer = new HtmlRenderer(); class GlobalState { constructor() { this.specs = {}; } useState(key, initialValue) { const result = useState(initialValue); const [value, setter] = result; this.specs[key] = { value, setter, }; return result; } get(key) { const spec = this.specs[key]; if (spec) { return spec.value; } else { throw new Error('setting nonexistent state: ' + key); } } set(key, value) { const spec = this.specs[key]; if (spec) { spec.setter(value); } else { throw new Error('setting nonexistent state: ' + key); } } } const globalState = new GlobalState(); const testImgUrl = window.location.protocol + '//' + window.location.host + '/assets/popup3.svg'; const testUserImgUrl = `https://preview.exokit.org/[https://app.webaverse.com/assets/type/robot.glb]/preview.png?width=128&height=128`; /* import BrowserFS from '/browserfs.js'; BrowserFS.configure({ fs: "IndexedDB", options: { storeName : "webaverse-editor", } }, function(e) { if (e) { // An error happened! throw e; } // Otherwise, BrowserFS is ready-to-use! }); const fs = (() => { const exports = {}; BrowserFS.install(exports); const {require} = exports; const fs = require('fs'); return fs; })(); window.BrowserFS = BrowserFS; window.fs = fs; */ const localVector = new THREE.Vector3(); const localVector2 = new THREE.Vector3(); const localVector3 = new THREE.Vector3(); const localVector4 = new THREE.Vector3(); const localVector5 = new THREE.Vector3(); const localVector6 = new THREE.Vector3(); const localVector7 = new THREE.Vector3(); const localVector8 = new THREE.Vector3(); const localVector2D = new THREE.Vector2(); const localVector2D2 = new THREE.Vector2(); const localQuaternion = new THREE.Quaternion(); const localEuler = new THREE.Euler(); const localMatrix = new THREE.Matrix4(); const localMatrix2 = new THREE.Matrix4(); const localMatrix3 = new THREE.Matrix4(); const localPlane = new THREE.Plane(); const localBox2D = new THREE.Box2(); const localBox2D2 = new THREE.Box2(); const localRaycaster = new THREE.Raycaster(); const localRay = new THREE.Ray(); const localArray = []; /* let getSelectedObjectIndex = () => null; let getErrors = () => null; let setErrors = () => {}; */ function createPointerEvents(store) { // const { handlePointer } = createEvents(store) const handlePointer = key => e => { // const handlers = eventObject.__r3f.handlers; // console.log('handle pointer', key, e); }; const names = { onClick: 'click', onContextMenu: 'contextmenu', onDoubleClick: 'dblclick', onWheel: 'wheel', onPointerDown: 'pointerdown', onPointerUp: 'pointerup', onPointerLeave: 'pointerleave', onPointerMove: 'pointermove', onPointerCancel: 'pointercancel', onLostPointerCapture: 'lostpointercapture', } return { connected: false, handlers: (Object.keys(names).reduce( (acc, key) => ({ ...acc, [key]: handlePointer(key) }), {}, )), connect: (target) => { const { set, events } = store.getState() events.disconnect?.() set((state) => ({ events: { ...state.events, connected: target } })) Object.entries(events?.handlers ?? []).forEach(([name, event]) => target.addEventListener(names[name], event, { passive: true }), ) }, disconnect: () => { const { set, events } = store.getState() if (events.connected) { Object.entries(events.handlers ?? []).forEach(([name, event]) => { if (events && events.connected instanceof HTMLElement) { events.connected.removeEventListener(names[name], event) } }) set((state) => ({ events: { ...state.events, connected: false } })) } }, } } class CameraGeometry extends THREE.BufferGeometry { constructor() { super(); const boxGeometry = new THREE.BoxBufferGeometry(1, 1, 1); const positions = new Float32Array(boxGeometry.attributes.position.array.length * 8); const indices = new Uint16Array(boxGeometry.index.array.length * 8); const _pushBoxGeometry = m => { const g = boxGeometry.clone(); g.applyMatrix4(m); positions.set(g.attributes.position.array, positionIndex); for (let i = 0; i < g.index.array.length; i++) { indices[indexIndex + i] = g.index.array[i] + positionIndex/3; } positionIndex += g.attributes.position.array.length; indexIndex += g.index.array.length; }; const topLeft = new THREE.Vector3(-1, 0.5, -2); const topRight = new THREE.Vector3(1, 0.5, -2); const bottomLeft = new THREE.Vector3(-1, -0.5, -2); const bottomRight = new THREE.Vector3(1, -0.5, -2); const back = new THREE.Vector3(0, 0, 0); const _setMatrixBetweenPoints = (m, p1, p2) => { const quaternion = localQuaternion.setFromRotationMatrix( localMatrix.lookAt( p1, p2, localVector.set(0, 1, 0) ) ); const position = localVector.copy(p1) .add(p2) .divideScalar(2) // .add(new THREE.Vector3(0, 2, 0)); const sc = 0.01; const scale = localVector2.set(sc, sc, p1.distanceTo(p2)); m.compose(position, quaternion, scale); return m; }; let positionIndex = 0; let indexIndex = 0; [ [topLeft, back], [topRight, back], [bottomLeft, back], [bottomRight, back], [topLeft, topRight], [topRight, bottomRight], [bottomRight, bottomLeft], [bottomLeft, topLeft], ].forEach(e => { const [p1, p2] = e; _pushBoxGeometry( _setMatrixBetweenPoints(localMatrix, p1, p2) ); }); this.setAttribute('position', new THREE.BufferAttribute(positions, 3)); this.setIndex(new THREE.BufferAttribute(indices, 1)); } } const _makeMouseUiMesh = () => { const geometry = new THREE.PlaneBufferGeometry(1, 1) .applyMatrix4( localMatrix.compose( localVector.set(1/2, 1/2, 0), localQuaternion.set(0, 0, 0, 1), localVector2.set(1, 1, 1), ) ); flipGeomeryUvs(geometry); const material = new THREE.MeshBasicMaterial({ color: 0xFFFFFF, map: new THREE.Texture(), side: THREE.DoubleSide, transparent: true, alphaTest: 0.5, }); const model = new THREE.Mesh(geometry, material); model.frustumCulled = false; const m = new THREE.Object3D(); m.add(model); m.target = new THREE.Object3D(); m.render = async ({ name, tokenId, type, hash, description, minterUsername, ownerUsername, minterAvatarUrl, ownerAvatarUrl, }) => { const result = await htmlRenderer.renderPopup({ name, tokenId, type, hash, description, minterUsername, ownerUsername, imgUrl: testImgUrl, minterAvatarUrl, ownerAvatarUrl, }); // console.log('got result', result); /* const img = await new Promise((accept, reject) => { const img = new Image(); img.crossOrigin = 'Anonymous'; img.onload = () => { accept(img); }; img.onerror = reject; img.src = `/assets/popup.svg`; }); */ material.map.image = result; material.map.minFilter = THREE.THREE.LinearMipmapLinearFilter; material.map.magFilter = THREE.LinearFilter; material.map.encoding = THREE.sRGBEncoding; material.map.anisotropy = 16; material.map.needsUpdate = true; model.scale.set(1, result.height/result.width, 1); }; let animationSpec = null; let lastHoverObject = null; m.update = () => { // model.position.set(model.scale.x/2, model.scale.y/2, 0); const hoverObject = weaponsManager.getMouseHoverObject(); m.position.copy(m.target.position) .add(camera.position); m.quaternion.copy(m.target.quaternion); m.visible = false; // !!hoverObject; if (hoverObject !== lastHoverObject) { const now = Date.now(); animationSpec = { startTime: now, endTime: now + 1000, }; lastHoverObject = hoverObject; } const _setDefaultScale = () => { m.scale.set(1, 1, 1); }; if (animationSpec) { const now = Date.now(); const {startTime, endTime} = animationSpec; const f = (now - startTime) / (endTime - startTime); if (f >= 0 && f < 1) { const fv = cubicBezier(f); m.scale.set(1, fv, 1); model.material.opacity = fv; } else { _setDefaultScale(); } } else { _setDefaultScale(); } }; const name = 'shiva'; const tokenId = 42; const type = 'vrm'; let hash = 'Qmej4c9FDJLTeSFhopvjF1f3KBi43xAk2j6v8jrzPQ4iRG'; hash = hash.slice(0, 6) + '...' + hash.slice(-2); const description = 'This is an awesome Synoptic on his first day in Webaverse This is an awesome Synoptic on his first day in Webaverse'; const minterUsername = 'robo'; const ownerUsername = 'sacks'; const minterAvatarUrl = testUserImgUrl; const ownerAvatarUrl = testUserImgUrl; m.render({ name, tokenId, type, hash, description, minterUsername, ownerUsername, minterAvatarUrl, ownerAvatarUrl, }) .then(() => { console.log('rendered'); }) .catch(err => { console.warn(err); }); return m; }; /* const lineBaseGeometry = new THREE.BoxBufferGeometry(0.005, 0.005, 1); const lineMaterial = new THREE.MeshBasicMaterial({ color: 0xFFFFFF, }); const _makeLineMesh = (object, objectUiMesh, lineLength, lineSubLength) => { const start = new THREE.Vector3(0, 0, 0); const end = new THREE.Vector3(0, lineLength, 0); const geometry = (() => { const distance = start.distanceTo(end); const geometries = []; const v = localVector.copy(start); const direction = localVector2.copy(end) .sub(start) .normalize(); for (let d = 0; d < distance; d += lineSubLength*2) { const intervalStart = v; const intervalEnd = localVector3.copy(v) .add( localVector4.copy(direction) .multiplyScalar(lineSubLength*2) ); const intervalMiddle = localVector5.copy(intervalStart) .add(intervalEnd) .divideScalar(2); const g = lineBaseGeometry.clone() .applyMatrix4( localMatrix.compose( intervalMiddle, localQuaternion.setFromUnitVectors( localVector7.set(0, 0, -1), localVector8.copy(intervalEnd) .sub(intervalStart) .normalize() ), localVector6.set(1, 1, lineSubLength) ) ); geometries.push(g); v.copy(intervalEnd); } const geometry = BufferGeometryUtils.mergeBufferGeometries(geometries); return geometry; })(); const material = lineMaterial; const mesh = new THREE.Mesh(geometry, material); mesh.update = () => { mesh.position.copy(object.position); mesh.quaternion.setFromUnitVectors( localVector.set(0, 1, 0), localVector2.copy(objectUiMesh.position) .sub(object.position) .normalize() ); mesh.scale.y = object.position .distanceTo(objectUiMesh.position) / lineLength; }; mesh.frustumCulled = false; return mesh; }; */ const lineLength = 0; const lineSubLength = 0.1; const objectUiMeshGeometry = new THREE.PlaneBufferGeometry(1, 1) .applyMatrix4( localMatrix.compose( localVector.set(1/2, 1/2, 0), localQuaternion.set(0, 0, 0, 1), localVector2.set(1, 1, 1), ) ); flipGeomeryUvs(objectUiMeshGeometry); const keySize = 0.3; const keyRadius = 0.045; const keyInnerFactor = 0.8; const keyGeometry = new THREE.PlaneBufferGeometry(keySize, keySize); const eKeyMaterial = (() => { const texture = new THREE.Texture(); texture.minFilter = THREE.THREE.LinearMipmapLinearFilter; texture.magFilter = THREE.LinearFilter; texture.encoding = THREE.sRGBEncoding; texture.anisotropy = 16; (async () => { const img = await new Promise((accept, reject) => { const img = new Image(); img.crossOrigin = 'Anonymous'; img.onload = () => { accept(img); }; img.onerror = reject; img.src = './assets/e-key.png'; }); texture.image = img; texture.needsUpdate = true; })(); const material = new THREE.MeshBasicMaterial({ map: texture, color: 0xFFFFFF, depthTest: false, transparent: true, alphaTest: 0.5, }); return material; })(); const keyCircleGeometry = createBoxWithRoundedEdges(keySize - keyRadius*2, keySize - keyRadius*2, keyRadius, keyInnerFactor); const keyCircleMaterial = new THREE.ShaderMaterial({ uniforms: { uColor: { type: 'c', value: new THREE.Color(0x42a5f5), }, uTime: { type: 'f', value: 0, needsUpdate: true, }, uTimeCubic: { type: 'f', value: 0, needsUpdate: true, }, }, vertexShader: `\ precision highp float; precision highp int; // uniform float uTime; // uniform vec4 uBoundingBox; // varying vec3 vPosition; // varying vec3 vNormal; varying vec2 vUv; void main() { vec4 mvPosition = modelViewMatrix * vec4(position, 1.0); gl_Position = projectionMatrix * mvPosition; vUv = uv; } `, fragmentShader: `\ precision highp float; precision highp int; #define PI 3.1415926535897932384626433832795 uniform vec3 uColor; uniform float uTime; // uniform float uTimeCubic; // varying vec3 vPosition; // varying vec3 vNormal; varying vec2 vUv; const float glowDistance = 0.2; const float glowIntensity = 0.3; void main() { vec3 c; float angle = mod((atan(vUv.x, vUv.y))/(PI*2.), 1.); if (angle <= uTime) { c = uColor; float angleDiff1 = (1. - min(max(uTime - angle, 0.), glowDistance)/glowDistance)*glowIntensity; // float angleDiff2 = min(max(angle - uTime, 0.), glowDistance)/glowDistance; // c *= 1. + angleDiff1 + angleDiff2; c *= 1. + angleDiff1; } else { c = vec3(0.2); } gl_FragColor = vec4(c, 1.); } `, transparent: true, depthTest: false, // polygonOffset: true, // polygonOffsetFactor: -1, // polygonOffsetUnits: 1, }); const _makeObjectUiMesh = object => { const model = (() => { const geometry = objectUiMeshGeometry; const material = new THREE.MeshBasicMaterial({ color: 0xFFFFFF, map: new THREE.Texture(), side: THREE.DoubleSide, depthTest: false, transparent: true, alphaTest: 0.5, }); const mesh = new THREE.Mesh(geometry, material); mesh.frustumCulled = false; return mesh; })(); const keyMesh = (() => { const geometry = keyGeometry; const material = eKeyMaterial; const mesh = new THREE.Mesh(geometry, material); mesh.frustumCulled = false; return mesh; })(); keyMesh.position.z = 0.01; const keyCircleMesh = (() => { const geometry = keyCircleGeometry; const material = keyCircleMaterial.clone(); const mesh = new THREE.Mesh(geometry, material); mesh.frustumCulled = false; return mesh; })(); keyCircleMesh.position.z = 0.01; const m = new THREE.Object3D(); m.add(model); m.add(keyMesh); m.keyMesh = keyMesh; m.add(keyCircleMesh); m.keyCircleMesh = keyCircleMesh; m.object = object; m.target = new THREE.Object3D(); m.render = async ({ name, tokenId, type, hash, description, previewUrl, minterUsername, ownerUsername, minterAvatarUrl, ownerAvatarUrl, }) => { const result = await htmlRenderer.renderPopup({ name, tokenId, type, hash, description, previewUrl, minterUsername, ownerUsername, imgUrl: testImgUrl, minterAvatarUrl, ownerAvatarUrl, }); const {map} = model.material; map.image = result; map.minFilter = THREE.THREE.LinearMipmapLinearFilter; map.magFilter = THREE.LinearFilter; map.encoding = THREE.sRGBEncoding; map.anisotropy = 16; map.needsUpdate = true; model.scale.set(1, result.height/result.width, 1); }; let animationSpec = null; m.update = () => { const now = Date.now(); const _updateMatrix = () => { const renderer = getRenderer(); const e = { clientX: canvas.width / renderer.getPixelRatio() / 2, clientY: canvas.height / renderer.getPixelRatio() / 2, }; updateRaycasterFromMouseEvent(renderer, camera, e, localRaycaster); const cameraUiPlane = getCameraUiPlane(camera, 5, localPlane); // cameraUiPlane.normal.multiplyScalar(-1); const objectPosition = localVector.copy(object.position) .add(localVector2.set(0, lineLength, 0)); localRay.set( objectPosition, localVector2.copy(camera.position) .sub(objectPosition) .normalize() ); const intersection = localRay.intersectPlane(cameraUiPlane, localVector2); if (intersection && localRay.direction.dot(cameraUiPlane.normal) > 0) { m.position.copy(intersection); } else { m.position.copy(objectPosition); } localEuler.setFromQuaternion(camera.quaternion, 'YXZ'); localEuler.x = 0; localEuler.z = 0; m.quaternion.setFromEuler(localEuler); }; _updateMatrix(); const _handleFadeInAnimation = () => { const closestObject = weaponsManager.getClosestObject(); const visible = closestObject === object; if (visible !== m.visible) { if (visible) { const now = Date.now(); animationSpec = { startTime: now, endTime: now + 1000, }; } else { animationSpec = null; } } m.visible = visible; }; _handleFadeInAnimation(); const _updateFadeInAnimation = () => { const _setDefaultScale = () => { m.scale.set(1, 1, 1); }; if (animationSpec) { const {startTime, endTime} = animationSpec; const f = (now - startTime) / (endTime - startTime); if (f >= 0 && f < 1) { const fv = cubicBezier(f); m.scale.set(fv, fv, 1); // model.material.opacity = fv; } else { _setDefaultScale(); animationSpec = null; } } else { _setDefaultScale(); animationSpec = null; } }; _updateFadeInAnimation(); }; (async () => { let name = ''; let tokenId = 0; let type = ''; let hash = ''; let description = ''; let previewUrl = ''; let ownerUsername = ''; let minterUsername = ''; let ownerAvatarUrl = ''; let minterAvatarUrl = ''; const {contentId} = object; if (typeof contentId === 'number') { const res = await fetch(`${tokensHost}/${contentId}`); const j = await res.json(); // console.log('got json', j); name = j.name; hash = j.hash; hash = hash.slice(0, 6) + '...' + hash.slice(-2); type = j.ext; description = j.description; previewUrl = j.image; minterUsername = j.minter.username; minterAvatarUrl = j.minter.avatarPreview; ownerUsername = j.owner.username; ownerAvatarUrl = j.owner.avatarPreview; } else if (typeof contentId === 'string') { const match = contentId.match(/([^\/]*)$/); const tail = match ? match[1] : contentId; type = getExt(tail); name = type ? tail.slice(0, tail.length - (type.length + 1)) : tail; hash = '<url>'; description = contentId; } /* console.log('render name', { contentId, name, type, hash, description, }); */ await m.render({ name, tokenId, type, hash, description, previewUrl, minterUsername, ownerUsername, minterAvatarUrl, ownerAvatarUrl, }) })() .then(() => { // console.log('rendered'); }) .catch(err => { console.warn(err); }); return m; }; const contextMenuOptions = [ 'New...', null, 'Select', 'Possess', 'Edit', 'Break', null, 'Remove', ]; const realContextMenuOptions = contextMenuOptions.filter(o => !!o); const _makeContextMenuGeomery = (y, x) => { const geometry = new THREE.PlaneBufferGeometry(1, 1) .applyMatrix4( localMatrix.compose( localVector.set(x/2, y/2, 0), localQuaternion.set(0, 0, 0, 1), localVector2.set(1, 1, 1), ) ); flipGeomeryUvs(geometry); return geometry; }; const contextMenuGeometries = { 'top-left': _makeContextMenuGeomery(1, -1), 'top-right': _makeContextMenuGeomery(1, 1), 'bottom-left': _makeContextMenuGeomery(-1, -1), 'bottom-right': _makeContextMenuGeomery(-1, 1), }; const _makeContextMenuMesh = mouseUiMesh => { const material = new THREE.MeshBasicMaterial({ // color: 0x808080, map: new THREE.Texture(), side: THREE.DoubleSide, transparent: true, alphaTest: 0.5, }); const model = new THREE.Mesh(contextMenuGeometries['bottom-right'], material); model.frustumCulled = false; let width = 0; let height = 0; let anchors = null; let optionsTextures = []; let blankOptionTexture = null; (async () => { const _getContextMenuData = (options, selectedOptionIndex) => htmlRenderer.renderContextMenu({ options, selectedOptionIndex, width: 512, height: 480, }); const _makeContextMenuTexture = spec => { const { width: newWidth, height: newHeight, imageBitmap, anchors: newAnchors, } = spec; const map = new THREE.Texture(imageBitmap); map.minFilter = THREE.THREE.LinearMipmapLinearFilter; map.magFilter = THREE.LinearFilter; map.encoding = THREE.sRGBEncoding; map.anisotropy = 16; map.needsUpdate = true; return map; }; let results; await Promise.all([ (async () => { results = await Promise.all(contextMenuOptions.map(async (object, i) => { if (object) { return await _getContextMenuData(contextMenuOptions, i); } else { return null; } })); optionsTextures = results .filter((result, i) => contextMenuOptions[i] !== null) .map(_makeContextMenuTexture); })(), (async () => { const blankResult = await _getContextMenuData(contextMenuOptions, -1); blankOptionTexture = _makeContextMenuTexture(blankResult); })(), ]); material.map = optionsTextures[0]; const result = results[0]; const { width: newWidth, height: newHeight, imageBitmap, anchors: newAnchors, } = result; model.scale.set(1, newHeight / newWidth, 1); // console.log('anchors', anchors); anchors = newAnchors; width = newWidth; height = newHeight; })(); const m = new THREE.Object3D(); m.add(model); let animationSpec = null; let lastContextMenu = false; /* const redElement = document.createElement('div'); redElement.style.cssText = `\ position: absolute; top: 0; left: 0; width: 100px; height: 100px; background: #FF0000; opacity: 0.5; pointer-events: none; `; document.body.appendChild(redElement); // window.redElement = redElement; */ m.update = () => { if (weaponsManager.contextMenu && !lastContextMenu) { m.position.copy(mouseUiMesh.position); m.updateMatrixWorld(); const renderer = getRenderer(); const projectVector = v => { const canvas = renderer.domElement; v.project(camera); v.x = Math.round((0.5 + v.x / 2) * (canvas.width / renderer.getPixelRatio())); v.y = Math.round((0.5 - v.y / 2) * (canvas.height / renderer.getPixelRatio())); return v; }; const vector = projectVector(localVector.copy(m.position)); const canvasBox = localBox2D.set( localVector.set(0, 0, 0), localVector2.set(canvas.width / renderer.getPixelRatio(), canvas.height / renderer.getPixelRatio(), 0), ); // console.log('got ratio', width/height, model.scale.y); const boundingBox = localBox2D2.set( projectVector(localVector.copy(m.position)), projectVector( localVector2.copy(m.position) .add( localVector3.set(1, -height/width, 0) .applyQuaternion(m.quaternion) ) ), ); // try to fit the context menu on the screen let overflowX = false; let overflowY = false; const bboxWidth = boundingBox.max.x - boundingBox.min.x; const bboxHeight = boundingBox.max.y - boundingBox.min.y; if (boundingBox.max.y > canvasBox.max.y && boundingBox.min.y - bboxHeight >= canvasBox.min.y) { boundingBox.min.y -= bboxHeight; boundingBox.max.y -= bboxHeight; /* const e = { clientX: boundingBox.min.x, clientY: boundingBox.min.y, }; const intersection = getUiForwardIntersection(renderer, camera, e, localVector); if (!intersection) { throw new Error('could not intersect in front of the camera; the math went wrong'); } m.position.copy(intersection); */ overflowY = true; } if (boundingBox.max.x > canvasBox.max.x && boundingBox.min.x - bboxWidth >= canvasBox.min.x) { boundingBox.min.x -= bboxWidth; boundingBox.max.x -= bboxWidth; /* updateRaycasterFromMouseEvent(renderer, camera, { clientX: boundingBox.min.x, clientY: boundingBox.min.y, }, localRaycaster); const intersection = getUiForwardIntersection(renderer, camera, e, localVector); if (!intersection) { throw new Error('could not intersect in front of the camera; the math went wrong'); } m.position.copy(intersection); */ overflowX = true; } /* // abandon hope if we cannot fit if (overflowX && overflowY) { boundingBox.min.x += bboxWidth; boundingBox.max.x += bboxWidth; boundingBox.min.y += bboxHeight; boundingBox.max.y += bboxHeight; overflowX = false; overflowY = false; } */ const geometryKey = (overflowY ? 'top' : 'bottom') + '-' + (overflowX ? 'left' : 'right'); model.geometry = contextMenuGeometries[geometryKey]; /* redElement.style.top = `${boundingBox.min.y}px`; redElement.style.left = `${boundingBox.min.x}px`; redElement.style.height = `${boundingBox.max.y - boundingBox.min.y}px`; redElement.style.width = `${boundingBox.max.x - boundingBox.min.x}px`; */ const now = Date.now(); animationSpec = { startTime: now, endTime: now + 1000, }; } m.quaternion.copy(mouseUiMesh.quaternion); m.visible = weaponsManager.contextMenu; lastContextMenu = weaponsManager.contextMenu; const _setDefaultScale = () => { m.scale.set(1, 1, 1); }; if (animationSpec) { const now = Date.now(); const {startTime, endTime} = animationSpec; const f = (now - startTime) / (endTime - startTime); if (f >= 0 && f < 1) { const fv = cubicBezier(f); m.scale.set(fv, fv, 1); // model.material.opacity = fv; } else { _setDefaultScale(); animationSpec = null; } } else { _setDefaultScale(); animationSpec = null; } }; let highlightedIndex = -1; m.getHighlightedIndex = () => highlightedIndex; m.intersectUv = uv => { highlightedIndex = -1; if (uv && anchors && width && height && optionsTextures) { const coords = localVector2D.copy(uv) .multiply(localVector2D2.set(width, height)); highlightedIndex = anchors.findIndex(anchor => { return ( (coords.x >= anchor.left && coords.x < anchor.right) && (coords.y >= anchor.top && coords.y < anchor.bottom) ); }); } material.map = highlightedIndex !== -1 ? optionsTextures[highlightedIndex] : blankOptionTexture; }; return m; }; const cardPreviewHost = `https://card-preview.exokit.org`; const cardWidth = 0.063; const cardHeight = cardWidth / 2.5 * 3.5; const cardsBufferFactor = 1.1; const menuWidth = cardWidth * cardsBufferFactor * 4; const menuHeight = cardHeight * cardsBufferFactor * 4; const menuRadius = 0.0025; const _loadImage = u => new Promise((accept, reject) => { const img = new Image(); img.crossOrigin = 'Anonymous'; img.src = u; img.onload = () => { accept(img); }; img.onerror = reject; }); function makeShape(shape, x, y, width, height, radius) { shape.absarc( x - width/2, y + height/2, radius, Math.PI, Math.PI / 2, true ); shape.absarc( x + width/2, y + height/2, radius, Math.PI / 2, 0, true ); shape.absarc( x + width/2, y - height/2, radius, 0, -Math.PI / 2, true ); shape.absarc( x - width/2, y - height/2, radius, -Math.PI / 2, -Math.PI, true ); return shape; } function createBoxWithRoundedEdges( width, height, radius, innerFactor) { const shape = makeShape(new THREE.Shape(), 0, 0, width, height, radius); const hole = makeShape(new THREE.Path(), 0, 0, width * innerFactor, height * innerFactor, radius); shape.holes.push(hole); const geometry = new THREE.ShapeGeometry(shape); return geometry; } const cardFrontGeometry = new THREE.PlaneBufferGeometry(cardWidth, cardHeight); const cardBackGeometry = cardFrontGeometry.clone() .applyMatrix4( new THREE.Matrix4().compose( new THREE.Vector3(0, 0, -0.001), new THREE.Quaternion() .setFromAxisAngle(new THREE.Vector3(0, 1, 0), Math.PI), new THREE.Vector3(1, 1, 1) ) ); const _makeCardBackMaterial = () => { const material = new THREE.MeshBasicMaterial({ color: 0xFFFFFF, map: new THREE.Texture(), transparent: true, }); (async () => { const img = await _loadImage('./assets/cardback.png'); material.map.image = img; material.map.minFilter = THREE.LinearMipmapLinearFilter; material.map.magFilter = THREE.LinearFilter; material.map.encoding = THREE.sRGBEncoding; material.map.anisotropy = 16; material.map.needsUpdate = true; })(); return material; }; const _makeCardMesh = img => { const geometry = cardFrontGeometry; const material = new THREE.MeshBasicMaterial({ color: 0xFFFFFF, map: new THREE.Texture(img), side: THREE.DoubleSide, transparent: true, }); material.map.minFilter = THREE.LinearMipmapLinearFilter; material.map.magFilter = THREE.LinearFilter; material.map.encoding = THREE.sRGBEncoding; material.map.anisotropy = 16; material.map.needsUpdate = true; const mesh = new THREE.Mesh(geometry, material); { const geometry = cardBackGeometry; const material = _makeCardBackMaterial(); const back = new THREE.Mesh(geometry, material); mesh.add(back); mesh.back = back; } return mesh; }; const _makeInventoryMesh = () => { const w = menuWidth + menuRadius*2; const h = menuHeight + menuRadius*2; const geometry = createBoxWithRoundedEdges(w, h, menuRadius, 0.99); const boundingBox = new THREE.Box3().setFromObject(new THREE.Mesh(geometry)); // console.log('got bounding box', boundingBox); const material = new THREE.ShaderMaterial({ uniforms: { uBoundingBox: { type: 'vec4', value: new THREE.Vector4( boundingBox.min.x, boundingBox.min.y, boundingBox.max.x - boundingBox.min.x, boundingBox.max.y - boundingBox.min.y ), needsUpdate: true, }, uTime: { type: 'f', value: 0, needsUpdate: true, }, uTimeCubic: { type: 'f', value: 0, needsUpdate: true, }, }, vertexShader: `\ precision highp float; precision highp int; // uniform float uTime; uniform vec4 uBoundingBox; varying vec3 vPosition; // varying vec3 vNormal; void main() { vec4 mvPosition = modelViewMatrix * vec4(position, 1.0); gl_Position = projectionMatrix * mvPosition; vPosition = ( position - vec3(uBoundingBox.x, uBoundingBox.y, 0.) ) / vec3(uBoundingBox.z, uBoundingBox.w, 1.); // vNormal = normal; } `, fragmentShader: `\ precision highp float; precision highp int; #define PI 3.1415926535897932384626433832795 // uniform vec4 uBoundingBox; uniform float uTime; uniform float uTimeCubic; varying vec3 vPosition; // varying vec3 vNormal; vec3 hueShift( vec3 color, float hueAdjust ){ const vec3 kRGBToYPrime = vec3 (0.299, 0.587, 0.114); const vec3 kRGBToI = vec3 (0.596, -0.275, -0.321); const vec3 kRGBToQ = vec3 (0.212, -0.523, 0.311); const vec3 kYIQToR = vec3 (1.0, 0.956, 0.621); const vec3 kYIQToG = vec3 (1.0, -0.272, -0.647); const vec3 kYIQToB = vec3 (1.0, -1.107, 1.704); float YPrime = dot (color, kRGBToYPrime); float I = dot (color, kRGBToI); float Q = dot (color, kRGBToQ); float hue = atan (Q, I); float chroma = sqrt (I * I + Q * Q); hue += hueAdjust; Q = chroma * sin (hue); I = chroma * cos (hue); vec3 yIQ = vec3 (YPrime, I, Q); return vec3( dot (yIQ, kYIQToR), dot (yIQ, kYIQToG), dot (yIQ, kYIQToB) ); } void main() { if ( (1. - vPosition.y) < uTimeCubic && abs(vPosition.x - 0.5) < uTimeCubic ) { gl_FragColor = vec4(hueShift(vPosition, uTime * PI * 2.), 1.); } else { discard; } } `, // transparent: true, // polygonOffset: true, // polygonOffsetFactor: -1, // polygonOffsetUnits: 1, }); const mesh = new THREE.Mesh(geometry, material); const cards = []; (async () => { const cardImgs = []; const numCols = 4; const numRows = 6; const promises = []; let i = 0; for (let row = 0; row < numRows; row++) { for (let col = 0; col < numCols; col++) { const promise = (async () => { const index = i; const id = ++i; const w = 1024; const ext = 'png'; const u = `${cardPreviewHost}/?t=${id}&w=${w}&ext=${ext}`; const img = await _loadImage(u); const cardMesh = _makeCardMesh(img); cardMesh.basePosition = new THREE.Vector3( menuRadius - menuWidth/2 + cardWidth/2 + col * cardWidth * cardsBufferFactor, -menuRadius + menuHeight/2 - cardHeight/2 - row * cardHeight * cardsBufferFactor, 0 ); cardMesh.position.copy(cardMesh.basePosition); cardMesh.index = index; mesh.add(cardMesh); cards.push(cardMesh); })(); promises.push(promise); } } await Promise.all(promises); })(); mesh.update = () => { const maxTime = 2000; const f = (Date.now() % maxTime) / maxTime; material.uniforms.uTime.value = f; material.uniforms.uTime.needsUpdate = true; material.uniforms.uTimeCubic.value = cubicBezier(f); material.uniforms.uTimeCubic.needsUpdate = true; // window.cards = cards; for (const card of cards) { const {index} = card; const cardStartTime = index * 0.02; const g = cubicBezier(f - cardStartTime); const h = 1 - g; card.position.copy(card.basePosition) .lerp( card.basePosition.clone() .add(new THREE.Vector3(0, -0.1, 0)) , h ); card.material.opacity = g; card.back.material.opacity = g; } }; return mesh; }; const _makeHeartMesh = () => { const geometry = BufferGeometryUtils.mergeBufferGeometries([ new CapsuleGeometry(undefined, undefined, undefined, 0.1, 0.02), new CapsuleGeometry(undefined, undefined, undefined, 0.1, 0.02) .applyMatrix4( new THREE.Matrix4() .compose( new THREE.Vector3(), new THREE.Quaternion() .setFromAxisAngle(new THREE.Vector3(1, 0, 0), Math.PI/2), new THREE.Vector3(1, 1, 1) ) ), new CapsuleGeometry(undefined, undefined, undefined, 0.1, 0.02) .applyMatrix4( new THREE.Matrix4() .compose( new THREE.Vector3(), new THREE.Quaternion() .setFromAxisAngle(new THREE.Vector3(0, 0, 1), Math.PI/2), new THREE.Vector3(1, 1, 1) ) ), ]); const material = new THREE.ShaderMaterial({ uniforms: { /* uBoundingBox: { type: 'vec4', value: new THREE.Vector4( boundingBox.min.x, boundingBox.min.y, boundingBox.max.x - boundingBox.min.x, boundingBox.max.y - boundingBox.min.y ), needsUpdate: true, }, */ uTime: { type: 'f', value: 0, needsUpdate: true, }, modelViewMatrixInverse: { type: 'm', value: new THREE.Matrix4(), needsUpdate: true, }, projectionMatrixInverse: { type: 'm', value: new THREE.Matrix4(), needsUpdate: true, }, viewport: { type: 'm', value: new THREE.Vector4(0, 0, 1, 1), needsUpdate: true, }, }, vertexShader: `\ precision highp float; precision highp int; uniform float uTime; // uniform vec4 uBoundingBox; // varying vec3 vPosition; // varying vec3 vNormal; // attribute vec3 position2; // attribute float time; // varying vec3 vPosition2; varying vec3 vNormal; varying float vF; float getBezierT(float x, float a, float b, float c, float d) { return float(sqrt(3.) * sqrt(-4. * b * d + 4. * b * x + 3. * c * c + 2. * c * d - 8. * c * x - d * d + 4. * d * x) + 6. * b - 9. * c + 3. * d) / (6. * (b - 2. * c + d)); } float easing(float x) { return getBezierT(x, 0., 1., 0., 1.); } float easing2(float x) { return easing(easing(x)); } // const float moveDistance = 20.; const float q = 0.1; void main() { float f = uTime < q ? easing(uTime/q) : 1. - (uTime - q)/(1. - q); vec4 mvPosition = modelViewMatrix * vec4( position * (1. + f * 2.), 1. ); gl_Position = projectionMatrix * mvPosition; vNormal = normal; vF = f; } `, fragmentShader: `\ precision highp float; precision highp int; #define PI 3.1415926535897932384626433832795 uniform mat4 modelViewMatrixInverse; uniform mat4 projectionMatrixInverse; uniform vec4 viewport; // uniform vec4 uBoundingBox; // uniform float uTime; // uniform float uTimeCubic; // varying vec3 vPosition2; varying vec3 vNormal; varying float vF; vec3 hueShift( vec3 color, float hueAdjust ){ const vec3 kRGBToYPrime = vec3 (0.299, 0.587, 0.114); const vec3 kRGBToI = vec3 (0.596, -0.275, -0.321); const vec3 kRGBToQ = vec3 (0.212, -0.523, 0.311); const vec3 kYIQToR = vec3 (1.0, 0.956, 0.621); const vec3 kYIQToG = vec3 (1.0, -0.272, -0.647); const vec3 kYIQToB = vec3 (1.0, -1.107, 1.704); float YPrime = dot (color, kRGBToYPrime); float I = dot (color, kRGBToI); float Q = dot (color, kRGBToQ); float hue = atan (Q, I); float chroma = sqrt (I * I + Q * Q); hue += hueAdjust; Q = chroma * sin (hue); I = chroma * cos (hue); vec3 yIQ = vec3 (YPrime, I, Q); return vec3( dot (yIQ, kYIQToR), dot (yIQ, kYIQToG), dot (yIQ, kYIQToB) ); } float getBezierT(float x, float a, float b, float c, float d) { return float(sqrt(3.) * sqrt(-4. * b * d + 4. * b * x + 3. * c * c + 2. * c * d - 8. * c * x - d * d + 4. * d * x) + 6. * b - 9. * c + 3. * d) / (6. * (b - 2. * c + d)); } float easing(float x) { return getBezierT(x, 0., 1., 0., 1.); } const vec3 c2 = vec3(${new THREE.Color(0xef5350).toArray().join(', ')}); const vec3 c1 = vec3(${new THREE.Color(0xff7043).toArray().join(', ')}); // const float q = 0.7; // const float q2 = 0.9; void main() { vec4 ndcPos; ndcPos.xy = ((2.0 * gl_FragCoord.xy) - (2.0 * viewport.xy)) / (viewport.zw) - 1.; ndcPos.z = (2.0 * gl_FragCoord.z - gl_DepthRange.near - gl_DepthRange.far) / (gl_DepthRange.far - gl_DepthRange.near); ndcPos.w = 1.0; vec4 clipPos = ndcPos / gl_FragCoord.w; vec4 eyePos = projectionMatrixInverse * clipPos; vec3 p = (modelViewMatrixInverse * eyePos).xyz; p /= (1. + vF); vec3 p2 = p / 0.1; float d = length(p2); float cF = (1. - pow(d, 2.) / 5.) * 1.2 * vF; vec3 c = (c1 * (1. - d/0.1)) + (c2 * d/0.1); gl_FragColor = vec4(c * cF, 1.); } `, // transparent: true, // polygonOffset: true, // polygonOffsetFactor: -1, // polygonOffsetUnits: 1, }); const mesh = new THREE.Mesh(geometry, material); mesh.update = () => { mesh.material.uniforms.uTime.value = (Date.now() % 1000) / 1000; mesh.material.uniforms.uTime.needsUpdate = true; mesh.material.uniforms.modelViewMatrixInverse.value .copy(camera.matrixWorldInverse) .multiply(mesh.matrixWorld) .invert(); mesh.material.uniforms.modelViewMatrixInverse.needsUpdate = true; mesh.material.uniforms.projectionMatrixInverse.value .copy(camera.projectionMatrix) .invert(); mesh.material.uniforms.projectionMatrixInverse.needsUpdate = true; const renderer = getRenderer(); mesh.material.uniforms.viewport.value.set(0, 0, renderer.domElement.width, renderer.domElement.height); mesh.material.uniforms.viewport.needsUpdate = true; }; return mesh; }; const _makeVaccumMesh = () => { const size = 0.1; const count = 5; const crunchFactor = 0.9; const innerSize = size * crunchFactor; const cubeGeometry = new THREE.BoxBufferGeometry(innerSize, innerSize, innerSize); let numCubes = 0; for (let x = 0; x < count; x++) { for (let y = 0; y < count; y++) { for (let z = 0; z < count; z++) { if ( (x === 0 || x === (count - 1)) || (y === 0 || y === (count - 1)) || (z === 0 || z === (count - 1)) ) { numCubes++; } } } } const geometry = new THREE.BufferGeometry(); geometry.setAttribute('position', new THREE.BufferAttribute(new Float32Array(cubeGeometry.attributes.position.array.length * numCubes), 3)); geometry.setAttribute('normal', new THREE.BufferAttribute(new Float32Array(cubeGeometry.attributes.normal.array.length * numCubes), 3)); geometry.setAttribute('time', new THREE.BufferAttribute(new Float32Array(cubeGeometry.attributes.position.array.length/3 * numCubes), 1)); geometry.setAttribute('position2', new THREE.BufferAttribute(new Float32Array(cubeGeometry.attributes.position.array.length * numCubes), 3)); geometry.setIndex(new THREE.BufferAttribute(new Uint16Array(cubeGeometry.index.array.length * numCubes), 1)); geometry.attributes.time.array.fill(-1); let positionIndex = 0; let normalIndex = 0; let indexIndex = 0; for (let x = 0; x < count; x++) { for (let y = 0; y < count; y++) { for (let z = 0; z < count; z++) { if ( (x === 0 || x === (count - 1)) || (y === 0 || y === (count - 1)) || (z === 0 || z === (count - 1)) ) { /* const g = cubeGeometry.clone() .applyMatrix4( new THREE.Matrix4() .compose( new THREE.Vector3(x * size, y * size, z * size), new THREE.Quaternion(), new THREE.Vector3(1, 1, 1) ) ); */ // console.log('got g offset', [x * size, y * size, z * size]); geometry.attributes.position.array.set(cubeGeometry.attributes.position.array, positionIndex); geometry.attributes.normal.array.set(cubeGeometry.attributes.normal.array, normalIndex); for (let i = 0; i < cubeGeometry.attributes.position.array.length/3; i++) { geometry.attributes.position2.array[positionIndex + i*3] = -(count * size / 2) + x * size; geometry.attributes.position2.array[positionIndex + i*3+1] = -(count * size / 2) + y * size; geometry.attributes.position2.array[positionIndex + i*3+2] = -(count * size / 2) + z * size; } for (let i = 0; i < cubeGeometry.index.array.length; i++) { geometry.index.array[indexIndex + i] = positionIndex/3 + cubeGeometry.index.array[i]; } positionIndex += cubeGeometry.attributes.position.array.length; normalIndex += cubeGeometry.attributes.normal.array.length; indexIndex += cubeGeometry.index.array.length; } } } } const material = new THREE.ShaderMaterial({ uniforms: { /* uBoundingBox: { type: 'vec4', value: new THREE.Vector4( boundingBox.min.x, boundingBox.min.y, boundingBox.max.x - boundingBox.min.x, boundingBox.max.y - boundingBox.min.y ), needsUpdate: true, }, */ uTime: { type: 'f', value: 0, needsUpdate: true, }, uTimeCubic: { type: 'f', value: 0, needsUpdate: true, }, }, vertexShader: `\ precision highp float; precision highp int; // uniform float uTime; // uniform vec4 uBoundingBox; // varying vec3 vPosition; // varying vec3 vNormal; attribute vec3 position2; attribute float time; varying vec3 vPosition2; varying vec3 vNormal; varying float vTime; float getBezierT(float x, float a, float b, float c, float d) { return float(sqrt(3.) * sqrt(-4. * b * d + 4. * b * x + 3. * c * c + 2. * c * d - 8. * c * x - d * d + 4. * d * x) + 6. * b - 9. * c + 3. * d) / (6. * (b - 2. * c + d)); } float easing(float x) { return getBezierT(x, 0., 1., 0., 1.); } float easing2(float x) { return easing(easing(x)); } const float moveDistance = 20.; const float q = 0.7; void main() { float offsetTime = min(max((time + (1. - q)) / q, 0.), 1.); vec4 mvPosition = modelViewMatrix * vec4( position * offsetTime + position2 * (1. + moveDistance * (1. - easing(offsetTime))), 1.0); gl_Position = projectionMatrix * mvPosition; vPosition2 = position2; vNormal = normal; vTime = time; } `, fragmentShader: `\ precision highp float; precision highp int; #define PI 3.1415926535897932384626433832795 // uniform vec4 uBoundingBox; // uniform float uTime; // uniform float uTimeCubic; varying vec3 vPosition2; varying vec3 vNormal; varying float vTime; vec3 hueShift( vec3 color, float hueAdjust ){ const vec3 kRGBToYPrime = vec3 (0.299, 0.587, 0.114); const vec3 kRGBToI = vec3 (0.596, -0.275, -0.321); const vec3 kRGBToQ = vec3 (0.212, -0.523, 0.311); const vec3 kYIQToR = vec3 (1.0, 0.956, 0.621); const vec3 kYIQToG = vec3 (1.0, -0.272, -0.647); const vec3 kYIQToB = vec3 (1.0, -1.107, 1.704); float YPrime = dot (color, kRGBToYPrime); float I = dot (color, kRGBToI); float Q = dot (color, kRGBToQ); float hue = atan (Q, I); float chroma = sqrt (I * I + Q * Q); hue += hueAdjust; Q = chroma * sin (hue); I = chroma * cos (hue); vec3 yIQ = vec3 (YPrime, I, Q); return vec3( dot (yIQ, kYIQToR), dot (yIQ, kYIQToG), dot (yIQ, kYIQToB) ); } float getBezierT(float x, float a, float b, float c, float d) { return float(sqrt(3.) * sqrt(-4. * b * d + 4. * b * x + 3. * c * c + 2. * c * d - 8. * c * x - d * d + 4. * d * x) + 6. * b - 9. * c + 3. * d) / (6. * (b - 2. * c + d)); } float easing(float x) { return getBezierT(x, 0., 1., 0., 1.); } const float q = 0.7; const float q2 = 0.9; void main() { float offsetTime = max(vTime - q, 0.); float a = 1. - max((vTime-q2)/(1.-q2), 0.); if (a > 0.) { gl_FragColor = vec4( vNormal * 0.3 + vec3(${new THREE.Color(0x29b6f6).toArray().join(', ')}), a ); gl_FragColor.rgb *= (0.1 + offsetTime); } else { discard; } } `, transparent: true, // depthWrite: false, // polygonOffset: true, // polygonOffsetFactor: -1, // polygonOffsetUnits: 1, }); const mesh = new THREE.Mesh(geometry, material); /* mesh.onBeforeRender = () => { const renderer = getRenderer(); const context = renderer.getContext(); context.disable(context.SAMPLE_ALPHA_TO_COVERAGE); }; mesh.onAfterRender = () => { const renderer = getRenderer(); const context = renderer.getContext(); context.enable(context.SAMPLE_ALPHA_TO_COVERAGE); }; */ let dots = []; const interval = setInterval(() => { const now = Date.now(); const x = Math.floor(Math.random() * count); const y = Math.floor(Math.random() * count); const z = Math.floor(Math.random() * count); const index = Math.floor(Math.random() * numCubes); dots.push({ x, y, z, index, startTime: now, endTime: now + 500, }); }, 50); mesh.update = () => { geometry.attributes.time.array.fill(-1); const now = Date.now(); dots = dots.filter(dot => { const {x, y, z, index, startTime, endTime} = dot; const f = (now - startTime) / (endTime - startTime); if (f <= 1) { const numTimesPerGeometry = cubeGeometry.attributes.position.array.length/3; const startIndex = index * numTimesPerGeometry; const endIndex = (index + 1) * numTimesPerGeometry; /* if (startIndex < 0) { debugger; } if (endIndex > geometry.attributes.time.array.length) { debugger; } */ for (let i = startIndex; i < endIndex; i++) { geometry.attributes.time.array[i] = f; } return true; } else { return false; } }); geometry.attributes.time.needsUpdate = true; }; return mesh; }; const _makeFractureMesh = () => { const size = 0.1; const count = 5; const crunchFactor = 0.9; const innerSize = size * crunchFactor; const cubeGeometry = new THREE.BoxBufferGeometry(innerSize, innerSize, innerSize); let numCubes = 0; for (let x = 0; x < count; x++) { for (let y = 0; y < count; y++) { for (let z = 0; z < count; z++) { if ( (x === 0 || x === (count - 1)) || (y === 0 || y === (count - 1)) || (z === 0 || z === (count - 1)) ) { numCubes++; } } } } const geometry = new THREE.BufferGeometry(); geometry.setAttribute('position', new THREE.BufferAttribute(new Float32Array(cubeGeometry.attributes.position.array.length * numCubes), 3)); geometry.setAttribute('normal', new THREE.BufferAttribute(new Float32Array(cubeGeometry.attributes.normal.array.length * numCubes), 3)); geometry.setAttribute('position2', new THREE.BufferAttribute(new Float32Array(cubeGeometry.attributes.position.array.length * numCubes), 3)); geometry.setAttribute('velocity', new THREE.BufferAttribute(new Float32Array(cubeGeometry.attributes.position.array.length * numCubes), 3)); geometry.setAttribute('quaternion', new THREE.BufferAttribute(new Float32Array(cubeGeometry.attributes.position.array.length/3*4 * numCubes), 4)); geometry.setIndex(new THREE.BufferAttribute(new Uint16Array(cubeGeometry.index.array.length * numCubes), 1)); let positionIndex = 0; let quaternionIndex = 0; let normalIndex = 0; let indexIndex = 0; for (let x = 0; x < count; x++) { for (let y = 0; y < count; y++) { for (let z = 0; z < count; z++) { if ( (x === 0 || x === (count - 1)) || (y === 0 || y === (count - 1)) || (z === 0 || z === (count - 1)) ) { geometry.attributes.position.array.set(cubeGeometry.attributes.position.array, positionIndex); geometry.attributes.normal.array.set(cubeGeometry.attributes.normal.array, normalIndex); const _getRandomDirection = localVector => localVector .set( -1 + Math.random() * 2, 0, -1 + Math.random() * 2 ) .normalize(); const _getRandomQuaternion = () => localQuaternion .set( Math.random(), Math.random(), Math.random(), Math.random() ) .normalize(); const velocity = _getRandomDirection(localVector); const quaternion = _getRandomQuaternion(localQuaternion); for (let i = 0; i < cubeGeometry.attributes.position.array.length/3; i++) { geometry.attributes.position2.array[positionIndex + i*3] = -(count * size / 2) + x * size; geometry.attributes.position2.array[positionIndex + i*3+1] = -(count * size / 2) + y * size; geometry.attributes.position2.array[positionIndex + i*3+2] = -(count * size / 2) + z * size; velocity .toArray(geometry.attributes.velocity.array, positionIndex + i*3); quaternion .toArray(geometry.attributes.quaternion.array, quaternionIndex + i*4); } for (let i = 0; i < cubeGeometry.index.array.length; i++) { geometry.index.array[indexIndex + i] = positionIndex/3 + cubeGeometry.index.array[i]; } positionIndex += cubeGeometry.attributes.position.array.length; quaternionIndex += cubeGeometry.attributes.position.array.length/3*4; normalIndex += cubeGeometry.attributes.normal.array.length; indexIndex += cubeGeometry.index.array.length; } } } } const material = new THREE.ShaderMaterial({ uniforms: { /* uBoundingBox: { type: 'vec4', value: new THREE.Vector4( boundingBox.min.x, boundingBox.min.y, boundingBox.max.x - boundingBox.min.x, boundingBox.max.y - boundingBox.min.y ), needsUpdate: true, }, */ uTime: { type: 'f', value: 0, needsUpdate: true, }, }, vertexShader: `\ precision highp float; precision highp int; uniform float uTime; // uniform vec4 uBoundingBox; // varying vec3 vPosition; varying vec3 vNormal; attribute vec3 position2; attribute vec3 velocity; attribute vec4 quaternion; vec4 slerp(vec4 p0, vec4 p1, float t) { float dotp = dot(normalize(p0), normalize(p1)); if ((dotp > 0.9999) || (dotp<-0.9999)) { if (t<=0.5) return p0; return p1; } float theta = acos(dotp * 3.14159/180.0); vec4 P = ((p0*sin((1.-t)*theta) + p1*sin(t*theta)) / sin(theta)); P.w = 1.; return P; } vec4 quat_conj(vec4 q) { return vec4(-q.x, -q.y, -q.z, q.w); } vec4 quat_mult(vec4 q1, vec4 q2) { vec4 qr; qr.x = (q1.w * q2.x) + (q1.x * q2.w) + (q1.y * q2.z) - (q1.z * q2.y); qr.y = (q1.w * q2.y) - (q1.x * q2.z) + (q1.y * q2.w) + (q1.z * q2.x); qr.z = (q1.w * q2.z) + (q1.x * q2.y) - (q1.y * q2.x) + (q1.z * q2.w); qr.w = (q1.w * q2.w) - (q1.x * q2.x) - (q1.y * q2.y) - (q1.z * q2.z); return qr; } vec3 applyQuaternion(vec3 position, vec4 qr) { // vec4 qr = quat_from_axis_angle(axis, angle); vec4 qr_conj = quat_conj(qr); vec4 q_pos = vec4(position.x, position.y, position.z, 0); vec4 q_tmp = quat_mult(qr, q_pos); qr = quat_mult(q_tmp, qr_conj); return vec3(qr.x, qr.y, qr.z); } // const float moveDistance = 20.; // const float q = 0.7; void main() { vec4 q = slerp(vec4(0., 0., 0., 1.), quaternion, uTime * 0.2); vec4 mvPosition = modelViewMatrix * vec4( applyQuaternion(position, q) + position2 + vec3(0., -9.8 * 0.2 * uTime * uTime, 0.) + velocity * uTime * 0.5, 1. ); gl_Position = projectionMatrix * mvPosition; vNormal = normal; } `, fragmentShader: `\ precision highp float; precision highp int; #define PI 3.1415926535897932384626433832795 // uniform vec4 uBoundingBox; uniform float uTime; // uniform float uTimeCubic; // varying vec3 vPosition2; varying vec3 vNormal; // varying float vTime; vec3 hueShift( vec3 color, float hueAdjust ){ const vec3 kRGBToYPrime = vec3 (0.299, 0.587, 0.114); const vec3 kRGBToI = vec3 (0.596, -0.275, -0.321); const vec3 kRGBToQ = vec3 (0.212, -0.523, 0.311); const vec3 kYIQToR = vec3 (1.0, 0.956, 0.621); const vec3 kYIQToG = vec3 (1.0, -0.272, -0.647); const vec3 kYIQToB = vec3 (1.0, -1.107, 1.704); float YPrime = dot (color, kRGBToYPrime); float I = dot (color, kRGBToI); float Q = dot (color, kRGBToQ); float hue = atan (Q, I); float chroma = sqrt (I * I + Q * Q); hue += hueAdjust; Q = chroma * sin (hue); I = chroma * cos (hue); vec3 yIQ = vec3 (YPrime, I, Q); return vec3( dot (yIQ, kYIQToR), dot (yIQ, kYIQToG), dot (yIQ, kYIQToB) ); } float getBezierT(float x, float a, float b, float c, float d) { return float(sqrt(3.) * sqrt(-4. * b * d + 4. * b * x + 3. * c * c + 2. * c * d - 8. * c * x - d * d + 4. * d * x) + 6. * b - 9. * c + 3. * d) / (6. * (b - 2. * c + d)); } float easing(float x) { return getBezierT(x, 0., 1., 0., 1.); } // const float q = 0.7; // const float q2 = 0.9; void main() { float f = 1. - uTime; float a = 1. - uTime*1.2; if (a > 0.) { gl_FragColor = vec4( vNormal * 0.3 + vec3(${new THREE.Color(0x29b6f6).toArray().join(', ')}), a ); gl_FragColor.rgb *= (0.3 + pow(f, 2.)); } else { discard; } } `, transparent: true, // polygonOffset: true, // polygonOffsetFactor: -1, // polygonOffsetUnits: 1, }); const mesh = new THREE.Mesh(geometry, material); mesh.frustumCulled = false; /* let dots = []; const interval = setInterval(() => { const now = Date.now(); const x = Math.floor(Math.random() * count); const y = Math.floor(Math.random() * count); const z = Math.floor(Math.random() * count); const index = Math.floor(Math.random() * numCubes); dots.push({ x, y, z, index, startTime: now, endTime: now + 500, }); }, 50); */ mesh.update = () => { mesh.material.uniforms.uTime.value = (Date.now() % 1000) / 1000; mesh.material.uniforms.uTime.needsUpdate = true; }; return mesh; }; const _makeLoadingBarMesh = basePosition => { const o = new THREE.Object3D(); const geometry1 = BufferGeometryUtils.mergeBufferGeometries([ new THREE.BoxBufferGeometry(1.04, 0.02, 0.02) .applyMatrix4( new THREE.Matrix4() .compose( new THREE.Vector3(0, 0.03, 0), new THREE.Quaternion(), new THREE.Vector3(1, 1, 1) ) ), new THREE.BoxBufferGeometry(1.04, 0.02, 0.02) .applyMatrix4( new THREE.Matrix4() .compose( new THREE.Vector3(0, -0.03, 0), new THREE.Quaternion(), new THREE.Vector3(1, 1, 1) ) ), new THREE.BoxBufferGeometry(0.02, 0.13, 0.02) .applyMatrix4( new THREE.Matrix4() .compose( new THREE.Vector3(-1/2 - 0.02, 0, 0), new THREE.Quaternion(), new THREE.Vector3(1, 1, 1) ) ), new THREE.BoxBufferGeometry(0.02, 0.13, 0.02) .applyMatrix4( new THREE.Matrix4() .compose( new THREE.Vector3(1/2 + 0.02, 0, 0), new THREE.Quaternion(), new THREE.Vector3(1, 1, 1) ) ), ]); const material1 = new THREE.MeshBasicMaterial({ color: 0x000000, }); const outerMesh = new THREE.Mesh(geometry1, material1); o.add(outerMesh); const geometry2 = new THREE.PlaneBufferGeometry(1, 0.03) .applyMatrix4( new THREE.Matrix4() .compose( new THREE.Vector3(1/2, 0, 0), new THREE.Quaternion(), new THREE.Vector3(1, 1, 1) ) ); const material2 = new THREE.ShaderMaterial({ uniforms: { /* uBoundingBox: { type: 'vec4', value: new THREE.Vector4( boundingBox.min.x, boundingBox.min.y, boundingBox.max.x - boundingBox.min.x, boundingBox.max.y - boundingBox.min.y ), needsUpdate: true, }, */ color: { type: 'c', value: new THREE.Color(), needsUpdate: true, }, }, vertexShader: `\ precision highp float; precision highp int; // uniform float uTime; // uniform vec4 uBoundingBox; // varying vec3 vPosition; // varying vec3 vNormal; // uniform vec3 color; // attribute float time; // varying vec3 vPosition2; // varying vec3 vNormal; // varying float vTime; varying vec2 vUv; varying vec3 vColor; float getBezierT(float x, float a, float b, float c, float d) { return float(sqrt(3.) * sqrt(-4. * b * d + 4. * b * x + 3. * c * c + 2. * c * d - 8. * c * x - d * d + 4. * d * x) + 6. * b - 9. * c + 3. * d) / (6. * (b - 2. * c + d)); } float easing(float x) { return getBezierT(x, 0., 1., 0., 1.); } float easing2(float x) { return easing(easing(x)); } // const float moveDistance = 20.; // const float q = 0.7; void main() { // float offsetTime = min(max((time + (1. - q)) / q, 0.), 1.); vec4 mvPosition = modelViewMatrix * vec4(position, 1.); gl_Position = projectionMatrix * mvPosition; // vPosition2 = position2; // vColor = color; // vNormal = normal; // vTime = time; vUv = uv; } `, fragmentShader: `\ precision highp float; precision highp int; #define PI 3.1415926535897932384626433832795 uniform vec3 color; // uniform vec4 uBoundingBox; // uniform float uTime; // uniform float uTimeCubic; // varying vec3 vPosition2; varying vec2 vUv; // varying vec3 vColor; // varying float vTime; vec3 hueShift( vec3 color, float hueAdjust ){ const vec3 kRGBToYPrime = vec3 (0.299, 0.587, 0.114); const vec3 kRGBToI = vec3 (0.596, -0.275, -0.321); const vec3 kRGBToQ = vec3 (0.212, -0.523, 0.311); const vec3 kYIQToR = vec3 (1.0, 0.956, 0.621); const vec3 kYIQToG = vec3 (1.0, -0.272, -0.647); const vec3 kYIQToB = vec3 (1.0, -1.107, 1.704); float YPrime = dot (color, kRGBToYPrime); float I = dot (color, kRGBToI); float Q = dot (color, kRGBToQ); float hue = atan (Q, I); float chroma = sqrt (I * I + Q * Q); hue += hueAdjust; Q = chroma * sin (hue); I = chroma * cos (hue); vec3 yIQ = vec3 (YPrime, I, Q); return vec3( dot (yIQ, kYIQToR), dot (yIQ, kYIQToG), dot (yIQ, kYIQToB) ); } float getBezierT(float x, float a, float b, float c, float d) { return float(sqrt(3.) * sqrt(-4. * b * d + 4. * b * x + 3. * c * c + 2. * c * d - 8. * c * x - d * d + 4. * d * x) + 6. * b - 9. * c + 3. * d) / (6. * (b - 2. * c + d)); } float easing(float x) { return getBezierT(x, 0., 1., 0., 1.); } // const float q = 0.7; // const float q2 = 0.9; void main() { gl_FragColor = vec4(hueShift(color, vUv.x * PI) * 1.5, 1.); } `, // transparent: true, side: THREE.DoubleSide, // polygonOffset: true, // polygonOffsetFactor: -1, // polygonOffsetUnits: 1, }); const innerMesh = new THREE.Mesh(geometry2, material2); innerMesh.position.x = -1/2; innerMesh.update = () => { const f = (Date.now() % 1000) / 1000; innerMesh.scale.x = f; innerMesh.material.uniforms.color.value.setHSL((f * 5) % 5, 0.5, 0.5); innerMesh.material.uniforms.color.needsUpdate = true; }; o.add(innerMesh); o.update = () => { innerMesh.update(); o.position.copy(basePosition) .add( localVector .set( -1 + Math.random() * 2, -1 + Math.random() * 2, -1 + Math.random() * 2 ) .normalize() .multiplyScalar(0.02) ); }; return o; }; const _makeLoaderMesh = () => { const o = new THREE.Object3D(); const heartMesh = _makeHeartMesh(); o.add(heartMesh); const vaccumMesh = _makeVaccumMesh(); o.add(vaccumMesh); const fractureMesh = _makeFractureMesh(); fractureMesh.position.x = -1; o.add(fractureMesh); const loadingBarMesh = _makeLoadingBarMesh(new THREE.Vector3(0, 0.5, 0)); o.add(loadingBarMesh); o.update = () => { heartMesh.update(); vaccumMesh.update(); fractureMesh.update(); loadingBarMesh.update(); }; return o; }; const fetchAndCompileBlob = async (file, files) => { const res = file; const scriptUrl = file.name; let s = await file.text(); const urlCache = {}; const _mapUrl = async (u, scriptUrl) => { const cachedContent = urlCache[u]; if (cachedContent !== undefined) { // return u; // nothing } else { const baseUrl = /https?:\/\//.test(scriptUrl) ? scriptUrl : `https://webaverse.com/${scriptUrl}`; const pathUrl = new URL(u, baseUrl).pathname.replace(/^\//, ''); const file = files.find(file => file.name === pathUrl); // console.log('got script url', {scriptUrl, baseUrl, pathUrl, file}); if (file) { let importScript = await file.blob.text(); importScript = await _mapScript(importScript, pathUrl); // const p = new URL(fullUrl).pathname.replace(/^\//, ''); urlCache[pathUrl] = importScript; } else { // const fullUrl = new URL(u, scriptUrl).href; const res = await fetch(u); if (res.ok) { let importScript = await res.text(); importScript = await _mapScript(importScript, fullUrl); const p = new URL(fullUrl).pathname.replace(/^\//, ''); urlCache[p] = importScript; } else { throw new Error('failed to load import url: ' + u); } } } }; const _mapScript = async (script, scriptUrl) => { // const r = /^(\s*import[^\n]+from\s*['"])(.+)(['"])/gm; // console.log('map script'); const r = /((?:im|ex)port(?:["'\s]*[\w*{}\n\r\t, ]+from\s*)?["'\s])([@\w_\-\.\/]+)(["'\s].*);?$/gm; // console.log('got replacements', script, Array.from(script.matchAll(r))); const replacements = await Promise.all(Array.from(script.matchAll(r)).map(async match => { let u = match[2]; // console.log('replacement', u); if (/^\.+\//.test(u)) { await _mapUrl(u, scriptUrl); } return u; })); let index = 0; script = script.replace(r, function() { return arguments[1] + replacements[index++] + arguments[3]; }); const spec = Babel.transform(script, { presets: ['react'], // compact: false, }); script = spec.code; return script; }; s = await _mapScript(s, scriptUrl); const o = new URL(scriptUrl, `https://webaverse.com/`); const p = o.pathname.replace(/^\//, ''); urlCache[p] = s; return urlCache; // return s; /* const o = new URL(scriptUrl, `https://webaverse.com/`); const p = o.pathname.replace(/^\//, ''); urlCache[p] = s; urlCache['.metaversefile'] = JSON.stringify({ start_url: p, }); const zip = new JSZip(); for (const p in urlCache) { const d = urlCache[p]; // console.log('add file', p); zip.file(p, d); } const ab = await zip.generateAsync({ type: 'arraybuffer', }); return new Uint8Array(ab); */ }; const fetchZipFiles = async zipData => { const zip = await JSZip.loadAsync(zipData); // console.log('load file 4', zip.files); const fileNames = []; // const localFileNames = {}; for (const fileName in zip.files) { fileNames.push(fileName); } const files = await Promise.all(fileNames.map(async fileName => { const file = zip.file(fileName); const b = file && await file.async('blob'); return { name: fileName, data: b, }; })); return files; }; const isDirectoryName = fileName => /\/$/.test(fileName); const uploadFiles = async files => { const fd = new FormData(); const directoryMap = {}; const metaverseFile = files.find(f => f.name === '.metaversefile'); // console.log('got', metaverseFile); const metaverseJson = await (async () => { const s = await metaverseFile.data.text(); const j = JSON.parse(s); return j; })(); const {start_url} = metaverseJson; [ // mainDirectoryName, '', ].forEach(p => { if (!directoryMap[p]) { // console.log('add missing main directory', [p]); fd.append( p, new Blob([], { type: 'application/x-directory', }), p ); } }); for (const file of files) { const {name} = file; const basename = name; // localFileNames[name]; // console.log('append', basename, name); if (isDirectoryName(name)) { const p = name.replace(/\/+$/, ''); console.log('append dir', p); fd.append( p, new Blob([], { type: 'application/x-directory', }), p ); directoryMap[p] = true; } else { // console.log('append file', name); fd.append(name, file.data, basename); } } const uploadFilesRes = await fetch(storageHost, { method: 'POST', body: fd, }); const hashes = await uploadFilesRes.json(); const rootDirectory = hashes.find(h => h.name === ''); console.log('got hashes', {rootDirectory, hashes}); const rootDirectoryHash = rootDirectory.hash; return rootDirectoryHash; /* const ipfsUrl = `${storageHost}/ipfs/${rootDirectoryHash}`; console.log('got ipfs url', ipfsUrl); return ipfsUrl; */ }; /* let rootDiv = null; // let state = null; const loadModule = async u => { const m = await import(u); const fn = m.default; // console.log('got fn', fn); // window.ReactThreeFiber = ReactThreeFiber; if (rootDiv) { const roots = ReactThreeFiber._roots; const root = roots.get(rootDiv); const fiber = root?.fiber if (fiber) { const state = root?.store.getState() if (state) state.internal.active = false await new Promise((accept, reject) => { ReactThreeFiber.reconciler.updateContainer(null, fiber, null, () => { if (state) { // setTimeout(() => { state.events.disconnect?.() // state.gl?.renderLists?.dispose?.() // state.gl?.forceContextLoss?.() ReactThreeFiber.dispose(state) roots.delete(canvas) // if (callback) callback(canvas) // }, 500) } accept(); }); }); } } const sizeVector = renderer.getSize(new THREE.Vector2()); rootDiv = document.createElement('div'); await app.waitForLoad(); app.addEventListener('frame', () => { ReactThreeFiber.render( React.createElement(fn), rootDiv, { gl: renderer, camera, size: { width: sizeVector.x, height: sizeVector.y, }, events: createPointerEvents, onCreated: state => { // state = newState; // scene.add(state.scene); console.log('got state', state); }, frameloop: 'demand', } ); }); }; */ const downloadZip = async () => { const zipData = await collectZip(); // console.log('got zip data', zipData); const blob = new Blob([zipData], { type: 'application/zip', }); await downloadFile(blob, 'nft.zip'); }; const collectZip = async () => { const zip = new JSZip(); const files = globalState.get('files'); const metaversefile = files.find(file => file.name === '.metaversefile'); const metaversefileJson = JSON.parse(metaversefile.doc.getValue()); const {start_url} = metaversefileJson; // console.log('got start url', start_url); const startUrlFile = files.find(file => file.name === start_url); if (startUrlFile) { if (startUrlFile.doc) { startUrlFile.blob = new Blob([startUrlFile.doc.getValue()], { type: 'application/javascript', }); } startUrlFile.blob.name = start_url; const urlCache = await fetchAndCompileBlob(startUrlFile.blob, files); for (const name in urlCache) { const value = urlCache[name]; const file = files.find(file => file.name === name); if (file) { /* if (file.doc) { file.doc.setValue(value); } */ file.blob = new Blob([value], { type: 'application/javascript', }); } else { console.warn('could not find compiled file updat target', {files, name, urlCache}); } } // console.log('compiled', startUrlFile.blob, urlCache); // startUrlFile.blob = ; } else { console.warn('could not find start file'); } for (const file of files) { zip.file(file.name, file.blob); } const ab = await zip.generateAsync({ type: 'arraybuffer', }); // console.log('got b', ab); const uint8Array = new Uint8Array(ab); return uint8Array; }; const uploadHash = async () => { // console.log('collect zip 1'); const zipData = await collectZip(); // console.log('collect zip 2'); const files = await fetchZipFiles(zipData); const hash = await uploadFiles(files); // console.log('got hash', hash); return hash; }; const run = async () => { const hash = await uploadHash(); // console.log('load hash', hash); // const el = await loadModule(u); await loadHash(hash); }; let loadedObject = null; const loadHash = async hash => { if (loadedObject) { await world.removeObject(loadedObject.instanceId); loadedObject = null; } const u = `${storageHost}/ipfs/${hash}/.metaversefile`; loadedObject = await world.addObject(u); loadedObject.name = loadedObject.contentId.match(/([^\/]*)$/)[1]; }; const mintNft = async () => { const hash = await uploadHash(); console.log('upload nft', hash); window.location.href = `https://webaverse.com/mint?hash=${hash}&ext=metaversefile`; }; window.onload = async () => { const bindTextarea = codeEl => { const editor = CodeMirror.fromTextArea(codeEl, { lineNumbers: true, styleActiveLine: true, matchBrackets: true, lineWrapping: true, extraKeys: { 'Ctrl-S': async cm => { try { await run(); } catch (err) { console.warn(err); const errors = [err].concat(globalState.get('errors')); globalState.set('errors', errors); } }, 'Ctrl-L': async cm => { try { await mintNft(); } catch (err) { console.warn(err); const errors = [err].concat(globalState.get('errors')); globalState.set('errors', errors); } }, }, }); { const stopPropagation = e => { e.stopPropagation(); }; [ 'wheel', 'keydown', 'keypress', 'keyup', 'paste', ].forEach(n => { editor.display.wrapper.addEventListener(n, stopPropagation); }); } // console.log('got editor', editor); editor.setOption('theme', 'material'); // editor.setOption('theme', 'material-ocean'); // editor.setOption('theme', 'icecoder'); /* editor.on('keydown', e => { if (e.ctrlKey && e.which === 83) { // ctrl-s console.log('got save', e); e.preventDefault(); } }); */ return editor; }; { const container = document.getElementById('container'); const jsx = await (async () => { const res = await fetch('./editor.jsx'); const s = await res.text(); return s; })(); const setCameraMode = cameraMode => { console.log('got new camera mode', {cameraMode}); if (cameraMode === 'avatar') { app.setAvatarUrl(`https://webaverse.github.io/assets/sacks3.vrm`, 'vrm'); } else { app.setAvatarUrl(null); } }; const spec = Babel.transform(jsx, { presets: ['react'], // compact: false, }); const {code} = spec; // console.log('got code', code); const fn = eval(code); // console.log('got fn', fn); ReactDOM.render( React.createElement(fn), container ); } const app = new App(); // app.bootstrapFromUrl(location); app.bindLogin(); app.bindInput(); app.bindInterface(); const canvas = document.getElementById('canvas'); app.bindCanvas(canvas); /* const uploadFileInput = document.getElementById('upload-file-input'); app.bindUploadFileInput(uploadFileInput); const mapCanvas = document.getElementById('map-canvas') app.bindMinimap(mapCanvas); const enterXrButton = document.getElementById('enter-xr-button'); const noXrButton = document.getElementById('no-xr-button'); app.bindXr({ enterXrButton, noXrButton, onSupported(ok) { if (ok) { enterXrButton.style.display = null; noXrButton.style.display = 'none'; } }, }); */ Promise.all([ app.waitForLoad(), htmlRenderer.waitForLoad(), ]) .then(async () => { app.contentLoaded = true; app.startLoop(); // hacks { const scene = app.getScene(); const sceneLowPriority = app.getSceneLowPriority(); const g = new CameraGeometry(); const m = new THREE.MeshBasicMaterial({ color: 0x333333, }); const cameraMesh = new THREE.Mesh(g, m); cameraMesh.position.set(0, 10, -8); cameraMesh.frustumCulled = false; scene.add(cameraMesh); const mouseUiMesh = _makeMouseUiMesh(); scene.add(mouseUiMesh); app.addEventListener('frame', () => { mouseUiMesh.update(); }); renderer.domElement.addEventListener('mousemove', e => { const intersection = getUiForwardIntersection(renderer, camera, e, localVector); if (!intersection) { throw new Error('could not intersect in front of the camera; the math went wrong'); } mouseUiMesh.target.position.copy(intersection) .sub(camera.position); mouseUiMesh.target.quaternion.setFromRotationMatrix( localMatrix.lookAt( localVector.set(0, 0, 0), localVector2.set(0, 0, -1).applyQuaternion(camera.quaternion), localVector3.set(0, 1, 0) ) ); }); const objectUiMeshes = []; world.addEventListener('objectsadd', e => { const object = e.data; const objectUiMesh = _makeObjectUiMesh(object); sceneLowPriority.add(objectUiMesh); app.addEventListener('frame', () => { objectUiMesh.update(); }); objectUiMeshes.push(objectUiMesh); }); world.addEventListener('objectsremove', e => { const object = e.data; const objectUiMeshIndex = objectUiMeshes.findIndex(objectUiMesh => objectUiMesh.object === object); if (objectUiMeshIndex !== -1) { const objectUiMesh = objectUiMeshes[objectUiMeshIndex]; objectUiMesh.parent.remove(objectUiMesh); objectUiMeshes.splice(objectUiMeshIndex, 1); } }); // double-click to look at object renderer.domElement.addEventListener('dblclick', async e => { const hoverObject = weaponsManager.getMouseHoverObject(); const hoverPhysicsId = weaponsManager.getMouseHoverPhysicsId(); if (hoverObject) { camera.quaternion.setFromRotationMatrix( localMatrix.lookAt( camera.position, hoverObject.position, localVector.set(0, 1, 0), ) ); weaponsManager.setMouseSelectedObject(hoverObject, hoverPhysicsId); } }); const contextMenuMesh = _makeContextMenuMesh(mouseUiMesh); scene.add(contextMenuMesh); app.addEventListener('frame', () => { contextMenuMesh.update(); }); renderer.domElement.addEventListener('click', async e => { if (contextMenuMesh.visible) { const highlightedIndex = contextMenuMesh.getHighlightedIndex(); const option = realContextMenuOptions[highlightedIndex]; switch (option) { case 'New...': { console.log('click new'); break; } case 'Select': { console.log('click select'); break; } case 'Possess': { const object = weaponsManager.getContextMenuObject(); await app.possess(object); world.removeObject(object.instanceId); break; } case 'Edit': { console.log('click edit'); break; } case 'Break': { const object = weaponsManager.getContextMenuObject(); object.hit(); break; } case 'Remove': { const object = weaponsManager.getContextMenuObject(); world.removeObject(object.instanceId); break; } } } }); renderer.domElement.addEventListener('mousemove', e => { updateRaycasterFromMouseEvent(renderer, camera, e, localRaycaster); if (contextMenuMesh.visible) { localArray.length = 0; const intersections = localRaycaster.intersectObject(contextMenuMesh, true, localArray); if (intersections.length > 0) { contextMenuMesh.intersectUv(intersections[0].uv); } else { contextMenuMesh.intersectUv(null); } } }); const inventoryMesh = _makeInventoryMesh(); inventoryMesh.position.set(2, 1.2, -1); inventoryMesh.frustumCulled = false; scene.add(inventoryMesh); app.addEventListener('frame', () => { inventoryMesh.update(); }); const loaderMesh = _makeLoaderMesh(); loaderMesh.position.set(0, 1.2, -1); loaderMesh.frustumCulled = false; scene.add(loaderMesh); app.addEventListener('frame', () => { loaderMesh.update(); }); renderer.domElement.addEventListener('select', e => { const {object, physicsId} = e.data; const objects = globalState.get('objects'); const index = objects.indexOf(object); if (index !== -1) { // console.log('got select', objects, object, index); globalState.set('selectedObjectIndex', index); globalState.set('selectedTab', 'scene'); } }); app.addEventListener('frame', () => { const dragRightSpec = weaponsManager.getDragRightSpec(); if (dragRightSpec) { const {cameraStartPosition, clientX, clientY} = dragRightSpec; const e = weaponsManager.getLastMouseEvent(); const startMousePosition = getUiForwardIntersection(renderer, camera, { clientX, clientY, }, localVector); const endMousePosition = getUiForwardIntersection(renderer, camera, e, localVector2); camera.position.copy(cameraStartPosition) .add( localVector3.copy(startMousePosition) .sub(endMousePosition) ); camera.updateMatrixWorld(); } }); app.addEventListener('frame', () => { for (const objectUiMesh of objectUiMeshes) { objectUiMesh.keyMesh.visible = false; objectUiMesh.keyCircleMesh.visible = false; } const usableObject = weaponsManager.getUsableObject(); if (usableObject) { const objectUiMesh = objectUiMeshes.find(objectUiMesh => objectUiMesh.object === usableObject); const now = Date.now(); const f = weaponsManager.getUseSpecFactor(now); if (f > 0) { const s = 1 - f*0.3; objectUiMesh.keyMesh.scale.setScalar(s); objectUiMesh.keyCircleMesh.scale.setScalar(s); objectUiMesh.keyCircleMesh.material.uniforms.uTime.value = f; objectUiMesh.keyCircleMesh.material.uniforms.uTime.needsUpdate = true; } else { objectUiMesh.keyMesh.scale.setScalar(1); objectUiMesh.keyCircleMesh.scale.setScalar(1); objectUiMesh.keyCircleMesh.material.uniforms.uTime.value = 0; objectUiMesh.keyCircleMesh.material.uniforms.uTime.needsUpdate = true; } objectUiMesh.keyMesh.visible = true; objectUiMesh.keyCircleMesh.visible = true; // lastUseFactor = f; } }); renderer.domElement.addEventListener('use', e => { console.log('got use event', e); }); } // end hacks // load scene const defaultScene = [ { position: new THREE.Vector3(), quaternion: new THREE.Quaternion(), contentId: `https://webaverse.github.io/home/home.glb`, }, { position: new THREE.Vector3(-3, 0, -2), quaternion: new THREE.Quaternion().setFromUnitVectors( new THREE.Vector3(0, 0, -1), new THREE.Vector3(-1, 0, 0), ), contentId: `https://webaverse.github.io/assets/table.glb`, }, { position: new THREE.Vector3(2, 0, -3), quaternion: new THREE.Quaternion()/* .setFromUnitVectors( new THREE.Vector3(0, 0, -1), new THREE.Vector3(-1, 0, 0), ) */, contentId: `https://avaer.github.io/mirror/index.js`, }, { position: new THREE.Vector3(-1, 1.5, -1.5), quaternion: new THREE.Quaternion(), contentId: `https://silk.webaverse.com/index.t.js`, }, { position: new THREE.Vector3(-3, 0, -3.5), quaternion: new THREE.Quaternion() .setFromAxisAngle( new THREE.Vector3(0, 1, 0), -Math.PI/2 ), contentId: `https://webaverse.github.io/assets/ shilo.vrm`, }, { position: new THREE.Vector3(-3, 0, -4.5), quaternion: new THREE.Quaternion() .setFromAxisAngle( new THREE.Vector3(0, 1, 0), -Math.PI/2 ), contentId: `https://webaverse.github.io/assets/ sacks3.vrm`, }, { position: new THREE.Vector3(-2, 0, -6), quaternion: new THREE.Quaternion(), contentId: `https://avaer.github.io/dragon-pet/manifest.json`, }, { position: new THREE.Vector3(3, 3, -7), quaternion: new THREE.Quaternion() .setFromAxisAngle(new THREE.Vector3(0, 1, 0), -Math.PI/2), contentId: 188, }, { position: new THREE.Vector3(3, 3, -9), quaternion: new THREE.Quaternion() .setFromAxisAngle(new THREE.Vector3(0, 1, 0), -Math.PI/2), contentId: 'https://avaer.github.io/sakura/manifest.json', }, { position: new THREE.Vector3(0.5, 3, -13), quaternion: new THREE.Quaternion(), contentId: 'https://webaverse.com/rainbow-dash.gif', }, /* { position: new THREE.Vector3(-3, 1.5, -1), quaternion: new THREE.Quaternion(), contentId: `https://avaer.github.io/lightsaber/manifest.json`, }, { position: new THREE.Vector3(-3, 1.5, -2), quaternion: new THREE.Quaternion(), contentId: `https://avaer.github.io/hookshot/index.js`, }, */ ]; for (const e of defaultScene) { const {position, quaternion, scale, contentId} = e; const loadedObject = await world.addObject(contentId, null, position, quaternion, scale); const _getName = contentId => { if (typeof contentId === 'number') { return contentId + ''; } else { return contentId.match(/([^\/]*)$/)[1]; } }; loadedObject.name = _getName(contentId); } }); // make sure to update renderer when canvas size changes const ro = new ResizeObserver(entries => { const resizeEvent = new UIEvent('resize'); window.dispatchEvent(resizeEvent); }); ro.observe(canvas); const renderer = app.getRenderer(); const scene = app.getScene(); const camera = app.getCamera(); // console.log('got react three fiber', ReactThreeFiber); };
30.686483
148
0.569618
0a04e7d8c8cee7be95b7e01b77df86d76c345d71
380
c
C
yasm_x86-64_linux/play.c
oceanwavechina/assembly
803e4a4c03645fbbc026092b3329ea472e070cab
[ "Apache-2.0" ]
null
null
null
yasm_x86-64_linux/play.c
oceanwavechina/assembly
803e4a4c03645fbbc026092b3329ea472e070cab
[ "Apache-2.0" ]
null
null
null
yasm_x86-64_linux/play.c
oceanwavechina/assembly
803e4a4c03645fbbc026092b3329ea472e070cab
[ "Apache-2.0" ]
null
null
null
#define MAY_IN_MEM int main () { #ifdef NOT_IN_MEM register int a = 1; register int b = 2; register int c = a + b; #endif #ifdef IN_MEM int a = 1; int b = 2; int c = a+b; #endif #ifdef MAY_IN_MEM // ?? register int a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13 =1; register int b1,b2,b3,b4,b5,b6,b7,b8,b9,b10,b11,b12,b13 =2; register int c = a1+b1; #endif return 0; }
15.833333
61
0.636842
cf5d659ad05f7e3b36c603a9c74cf8f64dd70960
4,976
css
CSS
wp-content/plugins/regenerate-thumbnails-advanced/css/rta-admin-progress.css
CodeDone4U/niche-one
c6930cd91aca6846b5b0c07e2c6ab889558c8641
[ "MIT" ]
1
2020-12-23T00:17:42.000Z
2020-12-23T00:17:42.000Z
wp-content/plugins/regenerate-thumbnails-advanced/css/rta-admin-progress.css
CodeDone4U/niche-one
c6930cd91aca6846b5b0c07e2c6ab889558c8641
[ "MIT" ]
null
null
null
wp-content/plugins/regenerate-thumbnails-advanced/css/rta-admin-progress.css
CodeDone4U/niche-one
c6930cd91aca6846b5b0c07e2c6ab889558c8641
[ "MIT" ]
null
null
null
section.regenerate{background-color:#fff;margin-bottom:200px}section.regenerate .rta_panel_off{opacity:0;transition:all 0ms linear}section.regenerate .rta_progress{position:relative;min-height:310px;width:65%;justify-content:flex-start}section.regenerate .rta_progress .rta_progress_view{margin:0 auto;align-self:center}section.regenerate .rta_progress .rta_progress_view svg.CircularProgressbar{display:inline-block;width:200px;padding:0 0 15px 0}section.regenerate .rta_progress .rta_progress_view svg.CircularProgressbar .CircularProgressbar-trail{stroke:#d6d6d6}section.regenerate .rta_progress .rta_progress_view svg.CircularProgressbar .CircularProgressbar-path{stroke:#00bcd4;stroke-linecap:round;transition:stroke-dashoffset 0.5s ease 0s}section.regenerate .rta_progress .rta_progress_view svg.CircularProgressbar .CircularProgressbar-text{fill:#00bcd4;font-size:20px;dominant-baseline:middle;text-anchor:middle}section.regenerate .rta_progress .rta_progress_view svg.CircularProgressbar .progress-count{font-size:9px;font-weight:bold;dominant-baseline:middle;text-anchor:middle;fill:999}section.regenerate .rta_progress .images{padding:15px;width:60%}section.regenerate .rta_progress .images h5{text-align:right}section.regenerate .rta_progress .images h4.thumb-label{text-align:center}section.regenerate .rta_progress .images .thumbnail{text-align:center;margin-top:35px}section.regenerate .rta_progress .images .thumbnail img{max-width:500px;max-height:500px}@media (max-width: 1200px){section.regenerate .rta_progress .images{min-height:300px;width:100%}section.regenerate .rta_progress .images .thumbnail img{opacity:0.5;max-width:100%;overflow:hidden}section.regenerate .rta_progress .rta_progress_view{width:200px;height:220px;position:absolute;left:50%;top:50%;margin-left:-100px;margin-top:-120px}}section.regenerate .rta_status_box{width:35%;min-width:300px;border-left:1px solid #ccc;position:relative;z-index:10;padding-bottom:75px}section.regenerate .rta_status_box .rta_wait_loader,section.regenerate .rta_status_box .rta_wait_paused,section.regenerate .rta_status_box .rta_wait_pausing{margin-top:35px;padding-left:20px;opacity:1;position:relative;z-index:1;transition:opacity 750ms}section.regenerate .rta_status_box .rta_wait_loader .dashicons,section.regenerate .rta_status_box .rta_wait_paused .dashicons,section.regenerate .rta_status_box .rta_wait_pausing .dashicons{display:inline-block;width:35px;height:35px;font-size:35px;float:left;margin-right:30px}section.regenerate .rta_status_box .rta_wait_loader .dashicons.dashicons-update,section.regenerate .rta_status_box .rta_wait_paused .dashicons.dashicons-update,section.regenerate .rta_status_box .rta_wait_pausing .dashicons.dashicons-update{animation:wait-spin 2000ms infinite linear;animation-play-state:running}section.regenerate .rta_status_box .rta_wait_loader.rta_panel_off,section.regenerate .rta_status_box .rta_wait_paused.rta_panel_off,section.regenerate .rta_status_box .rta_wait_pausing.rta_panel_off{opacity:0}section.regenerate .rta_status_box .rta_wait_loader.rta_panel_off .dashicons,section.regenerate .rta_status_box .rta_wait_paused.rta_panel_off .dashicons,section.regenerate .rta_status_box .rta_wait_pausing.rta_panel_off .dashicons{animation-play-state:paused}section.regenerate .rta_status_box .rta_notices ul.statuslist{max-height:350px;overflow-y:auto;overflow-x:visible;margin-left:15px}section.regenerate .rta_status_box .rta_notices ul.statuslist li{font-size:14px}section.regenerate .rta_status_box .rta_notices ul.statuslist li.error{color:#ff0000}section.regenerate .rta_status_box h4{font-size:22px;font-weight:bold}@keyframes wait-spin{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}section.regenerate .rta_success_box{position:absolute;left:30%;top:-5%;width:45%;margin-left:-200px;opacity:0.9;background-color:#fff;text-align:center;padding:15px;border:1px solid #00bcd4;border-radius:8px}section.regenerate .rta_success_box p{font-size:16px}section.regenerate .rta_success_box h3.header{font-size:32px;font-weight:bold;color:green}section.regenerate .rta_success_box .shortpixel h3 a{line-height:28px}section.regenerate .rta_success_box .modal-close{position:absolute;right:15px;top:15px;cursor:pointer}section.regenerate .rta_success_box .modal-close .dashicons{font-size:36px;width:36px;height:36px}section.regenerate .shortpixel-notice{background:#fff;width:250px;min-height:270px;border:1px solid #ccc;padding:15px;margin:0 5% 10px 25px;float:right}section.regenerate .shortpixel-notice h3{line-height:1.3em}section.regenerate button.stop-process,section.regenerate button.pause-process{position:absolute;bottom:10px;right:15px;font-weight:normal;text-transform:none;padding:4px 20px;font-size:14px}section.regenerate button.stop-process .dashicons,section.regenerate button.pause-process .dashicons{vertical-align:middle}section.regenerate button.pause-process{left:15px;right:auto}section.regenerate button.pause-process .resume{display:none}
2,488
4,975
0.849678
755ae9058858ab34dac02c6e7015c1ddeebfb212
5,251
c
C
main/wifi.c
LambisElef/esp32-weather-station
b50a65052f8b9018260b679dde1e976d3afb47ab
[ "MIT" ]
null
null
null
main/wifi.c
LambisElef/esp32-weather-station
b50a65052f8b9018260b679dde1e976d3afb47ab
[ "MIT" ]
null
null
null
main/wifi.c
LambisElef/esp32-weather-station
b50a65052f8b9018260b679dde1e976d3afb47ab
[ "MIT" ]
null
null
null
/** * @file wifi.c * * @brief WIFI Source File * * @author Charalampos Eleftheriadis * @version 0.1 * @date 2021-08-05 */ #include "wifi.h" #include "esp_log.h" #include "esp_wifi.h" #include "freertos/event_groups.h" static volatile uint8_t wifi_reconnect_counter; static EventGroupHandle_t wifi_event_group; /** * @brief The WIFI event handler. * * @param arg Arguments sent by event registrations. * @param event_base The base code of the event. * @param event_id The id of the event. * @param event_data Data sent from the event. */ static void wifi_event_handler(void* arg, esp_event_base_t event_base, int32_t event_id, void* event_data) { esp_err_t esp_err = ESP_OK; if (event_base == WIFI_EVENT && event_id == WIFI_EVENT_STA_START) { esp_err = esp_wifi_connect(); if (esp_err != ESP_OK) { ESP_LOGE(WIFI_TAG, "Connect failed with error 0x%x [%s]", esp_err, esp_err_to_name(esp_err)); } } else if (event_base == WIFI_EVENT && event_id == WIFI_EVENT_STA_DISCONNECTED) { if (wifi_reconnect_counter < WIFI_MAX_RECONNECTIONS) { wifi_reconnect_counter++; ESP_LOGI(WIFI_TAG, "Reconnect attempt %d", wifi_reconnect_counter); esp_err = esp_wifi_connect(); if (esp_err != ESP_OK) { ESP_LOGE(WIFI_TAG, "Connect failed with error 0x%x [%s]", esp_err, esp_err_to_name(esp_err)); } } else { xEventGroupSetBits(wifi_event_group, WIFI_FAIL_BIT); } } else if (event_base == IP_EVENT && event_id == IP_EVENT_STA_GOT_IP) { ip_event_got_ip_t *event = (ip_event_got_ip_t*) event_data; ESP_LOGI(WIFI_TAG, "Got IP:" IPSTR, IP2STR(&event->ip_info.ip)); wifi_reconnect_counter = 0; xEventGroupSetBits(wifi_event_group, WIFI_CONNECTED_BIT); } } /** * @brief Waits until the wifi_event_handler sets the WIFI_CONNECTED_BIT or the WIFI_FAIL_BIT and logs the info. */ static void wifi_check_connection() { // Waits until either the WIFI_CONNECTED_BIT or the WIFI_FAIL_BIT is set. The bits are set by the wifi_event_handler. EventBits_t bits = xEventGroupWaitBits(wifi_event_group, WIFI_CONNECTED_BIT | WIFI_FAIL_BIT, pdFALSE, pdFALSE, portMAX_DELAY); if (bits & WIFI_CONNECTED_BIT) { ESP_LOGI(WIFI_TAG, "Connected to AP with SSID: %s", WIFI_SSID); } else if (bits & WIFI_FAIL_BIT) { ESP_LOGI(WIFI_TAG, "Failed to connect to AP with SSID: %s", WIFI_SSID); } else { ESP_LOGE(WIFI_TAG, "Unexpected event"); } // Clears the bits and prepares for the next iteration. xEventGroupClearBits(wifi_event_group, WIFI_CONNECTED_BIT | WIFI_FAIL_BIT); } /** * @brief The WIFI task function. Makes a connection to an AP and preserves it. */ void wifi_task() { esp_err_t esp_err = ESP_OK; wifi_event_group = xEventGroupCreate(); esp_err = esp_netif_init(); if (esp_err != ESP_OK) { ESP_LOGE(WIFI_TAG, "TCP/IP stack initialization failed with error 0x%x [%s]", esp_err, esp_err_to_name(esp_err)); } esp_err = esp_event_loop_create_default(); if (esp_err != ESP_OK) { ESP_LOGE(WIFI_TAG, "Event loop creation failed with error 0x%x [%s]", esp_err, esp_err_to_name(esp_err)); } esp_netif_create_default_wifi_sta(); wifi_init_config_t wifi_init_config = WIFI_INIT_CONFIG_DEFAULT(); esp_err = esp_wifi_init(&wifi_init_config); if (esp_err != ESP_OK) { ESP_LOGE(WIFI_TAG, "Driver initialization failed with error 0x%x [%s]", esp_err, esp_err_to_name(esp_err)); } esp_event_handler_instance_t instance_any_id; esp_err = esp_event_handler_instance_register(WIFI_EVENT, ESP_EVENT_ANY_ID, &wifi_event_handler, NULL, &instance_any_id); if (esp_err != ESP_OK) { ESP_LOGE(WIFI_TAG, "WIFI event instance register failed with error 0x%x [%s]", esp_err, esp_err_to_name(esp_err)); } esp_event_handler_instance_t instance_got_ip; esp_err = esp_event_handler_instance_register(IP_EVENT, IP_EVENT_STA_GOT_IP, &wifi_event_handler, NULL, &instance_got_ip); if (esp_err != ESP_OK) { ESP_LOGE(WIFI_TAG, "IP event instance register failed with error 0x%x [%s]", esp_err, esp_err_to_name(esp_err)); } wifi_config_t wifi_config = { .sta = { .ssid = WIFI_SSID, .password = WIFI_PASS, .threshold.authmode = WIFI_AUTH_WPA2_PSK, .pmf_cfg = { .capable = true, .required = false } } }; esp_err = esp_wifi_set_mode(WIFI_MODE_STA); if (esp_err != ESP_OK) { ESP_LOGE(WIFI_TAG, "Operation mode setup failed with error 0x%x [%s]", esp_err, esp_err_to_name(esp_err)); } esp_err = esp_wifi_set_config(WIFI_IF_STA, &wifi_config); if (esp_err != ESP_OK) { ESP_LOGE(WIFI_TAG, "Configuration failed with error 0x%x [%s]", esp_err, esp_err_to_name(esp_err)); } esp_err = esp_wifi_start(); if (esp_err != ESP_OK) { ESP_LOGE(WIFI_TAG, "Start failed with error 0x%x [%s]", esp_err, esp_err_to_name(esp_err)); } wifi_check_connection(); while(1) { if (wifi_reconnect_counter == WIFI_MAX_RECONNECTIONS) { wifi_reconnect_counter = 0; esp_event_post(WIFI_EVENT, WIFI_EVENT_STA_DISCONNECTED, NULL, 0, 100 / portTICK_PERIOD_MS); wifi_check_connection(); } vTaskDelay(WIFI_CHECK_CONNECTION_PERIOD_MS / portTICK_PERIOD_MS); } }
33.234177
128
0.708627
004c9e935ba82668cc0de14f1ac868795f09a1fe
1,568
asm
Assembly
programs/oeis/168/A168569.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
22
2018-02-06T19:19:31.000Z
2022-01-17T21:53:31.000Z
programs/oeis/168/A168569.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
41
2021-02-22T19:00:34.000Z
2021-08-28T10:47:47.000Z
programs/oeis/168/A168569.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
5
2021-02-24T21:14:16.000Z
2021-08-09T19:48:05.000Z
; A168569: a(n) = 9*(3^n - 1)/2. ; 0,9,36,117,360,1089,3276,9837,29520,88569,265716,797157,2391480,7174449,21523356,64570077,193710240,581130729,1743392196,5230176597,15690529800,47071589409,141214768236,423644304717,1270932914160,3812798742489,11438396227476,34315188682437,102945566047320,308836698141969,926510094425916,2779530283277757,8338590849833280,25015772549499849,75047317648499556,225141952945498677,675425858836496040,2026277576509488129,6078832729528464396,18236498188585393197,54709494565756179600,164128483697268538809,492385451091805616436,1477156353275416849317,4431469059826250547960,13294407179478751643889,39883221538436254931676,119649664615308764795037,358948993845926294385120,1076846981537778883155369,3230540944613336649466116,9691622833840009948398357,29074868501520029845195080,87224605504560089535585249,261673816513680268606755756,785021449541040805820267277,2355064348623122417460801840,7065193045869367252382405529,21195579137608101757147216596,63586737412824305271441649797,190760212238472915814324949400,572280636715418747442974848209,1716841910146256242328924544636,5150525730438768726986773633917,15451577191316306180960320901760,46354731573948918542880962705289,139064194721846755628642888115876,417192584165540266885928664347637,1251577752496620800657785993042920,3754733257489862401973357979128769,11264199772469587205920073937386316,33792599317408761617760221812158957,101377797952226284853280665436476880,304133393856678854559841996309430649,912400181570036563679525988928291956 mov $1,3 pow $1,$0 div $1,2 mul $1,9 mov $0,$1
174.222222
1,486
0.924107
73dd3450e3b8b7d5a1e1990bb78fb5f8242a522f
909
rs
Rust
os/src/process/condvar.rs
ChiangYintso/redos
3bf05ee21b504829f9da50ecd84fb048f92cb048
[ "Apache-2.0", "MIT" ]
null
null
null
os/src/process/condvar.rs
ChiangYintso/redos
3bf05ee21b504829f9da50ecd84fb048f92cb048
[ "Apache-2.0", "MIT" ]
1
2021-05-18T12:55:32.000Z
2021-05-18T12:55:32.000Z
os/src/process/condvar.rs
ChiangYintso/redos
3bf05ee21b504829f9da50ecd84fb048f92cb048
[ "Apache-2.0", "MIT" ]
null
null
null
//! 条件变量 extern crate alloc; use crate::kernel::*; use crate::process::thread::Thread; use alloc::collections::VecDeque; use alloc::sync::Arc; use core::option::Option::Some; use spin::Mutex; #[derive(Default)] pub struct Condvar { /// 所有等待此条件变量的线程 watchers: Mutex<VecDeque<Arc<Thread>>>, } impl Condvar { /// 令当前线程休眠,等待此条件变量 pub fn wait(&self) { let thread = PROCESSOR.lock().sleep_current_thread(); self.watchers.lock().push_back(thread); } /// 唤起一个等待此条件变量的线程 pub fn notify_one(&self) { if let Some(thread) = self.watchers.lock().pop_front() { PROCESSOR.lock().wake_thread(thread); } } pub fn notify_all(&self) { let mut guard = self.watchers.lock(); let mut processor_guard = PROCESSOR.lock(); while let Some(t) = guard.pop_front() { processor_guard.wake_thread(t); } } }
22.725
64
0.612761
dd0827d373f0d233d93fcc8ae90d1d1b6877ec8e
5,188
go
Go
internal/dnsmasq/dnsmasq_test.go
alankristen2004/blacklist
7cddd567a92bcea119f0b1ba5f300a031caeb108
[ "BSD-2-Clause-FreeBSD" ]
1
2021-05-16T13:30:32.000Z
2021-05-16T13:30:32.000Z
internal/dnsmasq/dnsmasq_test.go
alankristen2004/blacklist
7cddd567a92bcea119f0b1ba5f300a031caeb108
[ "BSD-2-Clause-FreeBSD" ]
null
null
null
internal/dnsmasq/dnsmasq_test.go
alankristen2004/blacklist
7cddd567a92bcea119f0b1ba5f300a031caeb108
[ "BSD-2-Clause-FreeBSD" ]
null
null
null
package dnsmasq import ( "encoding/json" "errors" "fmt" "io" "io/ioutil" "path/filepath" "testing" . "github.com/smartystreets/goconvey/convey" ) func TestConfigFile(t *testing.T) { Convey("Testing ConfigFile()", t, func() { var ( b []byte dir = "../testdata/etc/dnsmasq.d/" err error files []string r io.Reader ) Convey("Testing with a dnsmasq entries loaded from files", func() { files, err = filepath.Glob(dir + "*.conf") So(err, ShouldBeNil) for _, f := range files { Convey("Parsing file: "+f, func() { if r, err = ConfigFile(f); err != nil { Printf("cannot open configuration file %s!", f) } b, _ = ioutil.ReadAll(r) c := make(Conf) ip := "0.0.0.0" So(c.Parse(&Mapping{Contents: b}), ShouldBeNil) for k := range c { So(c.Redirect(k, ip), ShouldBeTrue) } }) } }) Convey("Testing a misdirected dnsmasq address entry...", func() { c := make(Conf) ip := "0.0.0.0" k := "address=/www.google.com/0.0.0.0" So(c.Parse(&Mapping{Contents: []byte(k)}), ShouldBeNil) So(c.Redirect(k, ip), ShouldBeFalse) }) }) } func BenchmarkFetchHost(b *testing.B) { for n := 0; n < b.N; n++ { fetchHost("www.microsoft.com", "0.0.0.0") } } func TestFetchHost(t *testing.T) { tests := []struct { conf Conf exp bool ip string key string name string }{ { ip: "0.0.0.0", key: "badguy_s.com", conf: Conf{"badguys.com": Host{IP: "0.0.0.0", Server: false}}, exp: false, name: "badguys.com", }, { ip: "127.0.0.1", key: "localhoster", conf: Conf{"localhost": Host{IP: "127.0.0.1", Server: false}}, exp: false, name: "localhoster", }, { ip: "127.0.0.1", key: "localhost", conf: Conf{"localhost": Host{IP: "#", Server: true}}, exp: true, name: "localServer", }, { ip: "127.0.0.1", key: "localhost", conf: Conf{"localhost": Host{IP: "127.0.0.1", Server: false}}, exp: true, name: "localhost", }, { ip: "127.0.0.1", exp: false, name: "no name", }, { ip: "::1", key: "localhost", conf: Conf{"localhost": Host{IP: "127.0.0.1", Server: false}}, exp: true, name: "localhost IPv6", }, } Convey("Testing String()", t, func() { for _, tt := range tests { Convey("current test "+tt.name, func() { So(fetchHost(tt.key, tt.ip), ShouldEqual, tt.exp) So(tt.conf.Redirect(tt.key, tt.ip), ShouldEqual, tt.exp) }) } }) } func TestMatchIP(t *testing.T) { tests := []struct { exp bool ip string ips []string name string }{ {name: "Fail with IPv4", exp: false, ip: "0.0.0.0", ips: []string{"192.150.200.1", "72.65.23.17", "204.78.13.40"}}, {name: "Fail with IPv6", exp: false, ip: "0.0.0.0", ips: []string{"0.0.0.0", "0.0.0.0", "fe80::7a8a:20ff:fe44:390d"}}, {name: "Loopback and unspecified", exp: false, ip: "0.0.0.0", ips: []string{"0.0.0.0", "127.0.0.1", "0.0.0.0"}}, {name: "Normal specified", exp: true, ip: "192.167.2.2", ips: []string{"192.167.2.2", "192.167.2.2", "192.167.2.2"}}, {name: "Normal unspecified", exp: true, ip: "0.0.0.0", ips: []string{"0.0.0.0", "0.0.0.0", "0.0.0.0"}}, } Convey("Testing matchIP() with:", t, func() { for _, tt := range tests { Convey(tt.name, func() { fmt.Println(matchIP(tt.ip, tt.ips)) So(matchIP(tt.ip, tt.ips), ShouldEqual, tt.exp) }) } }) } func TestParse(t *testing.T) { tests := []struct { act string Host err error exp string name string reader Mapping }{ { Host: Host{ IP: "127.0.0.1", Server: false, }, act: `{"badguys.com":{"IP":"0.0.0.0"}}`, err: nil, exp: "127.0.0.1", name: "badguys.com", reader: Mapping{Contents: []byte(`address=/badguys.com/0.0.0.0`)}, }, { Host: Host{ IP: "127.0.0.1", Server: true, }, act: `{"xrated.com":{"IP":"0.0.0.0","Server":true}}`, err: nil, exp: "127.0.0.1", name: "xrated.com", reader: Mapping{Contents: []byte(`server=/xrated.com/0.0.0.0`)}, }, { act: `{}`, err: errors.New("no dnsmasq configuration mapping entries found"), exp: "127.0.0.1", name: "No dnsmasq entry", reader: Mapping{Contents: []byte(`# All files in this directory will be read by dnsmasq as # configuration files, except if their names end in # ".dpkg-dist",".dpkg-old" or ".dpkg-new" # # This can be changed by editing /etc/default/dnsmasq`)}, }, } Convey("Conf map should show each map entry", t, func() { c := make(Conf) for _, tt := range tests { Convey("current test: "+tt.name, func() { if err := c.Parse(&tt.reader); err != nil { So(err.Error(), ShouldEqual, tt.err.Error()) } j, err := json.Marshal(c) So(err, ShouldBeNil) So(string(j), ShouldEqual, tt.act) }) } }) } func TestString(t *testing.T) { tests := []struct { conf Conf exp string }{ { conf: Conf{"badguys.com": Host{IP: "0.0.0.0", Server: false}}, exp: `{"badguys.com":{"IP":"0.0.0.0"}}`, }, { exp: `null`, }, } Convey("Testing String()", t, func() { for _, tt := range tests { So(tt.conf.String(), ShouldEqual, tt.exp) } }) }
22.955752
120
0.553778
22fc0a396a20501d43bf3ea2677f2ca2078ab797
2,338
kt
Kotlin
src/main/kotlin/io/github/jasvilladarez/kotelegram/model/ChatMember.kt
jasvilladarez/kotelegram
be2af206fd398476c640360ff9274bd13c7e836d
[ "MIT" ]
1
2017-11-16T15:36:43.000Z
2017-11-16T15:36:43.000Z
src/main/kotlin/io/github/jasvilladarez/kotelegram/model/ChatMember.kt
jasvilladarez/kotelegram
be2af206fd398476c640360ff9274bd13c7e836d
[ "MIT" ]
2
2017-11-07T15:52:47.000Z
2017-11-16T15:37:06.000Z
src/main/kotlin/io/github/jasvilladarez/kotelegram/model/ChatMember.kt
jasvilladarez/kotelegram
be2af206fd398476c640360ff9274bd13c7e836d
[ "MIT" ]
null
null
null
/* * Copyright 2017 Jasmine Villadarez * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT 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 io.github.jasvilladarez.kotelegram.model import com.google.gson.annotations.SerializedName /** * @see https://core.telegram.org/bots/api#chatmember */ data class ChatMember( @SerializedName("user") val user: User, @SerializedName("status") val status: Status, @SerializedName("until_date") val untilDate: Int? = null, @SerializedName("can_be_edited") val canBeEdited: Boolean? = null, @SerializedName("can_change_info") val canChangeInfo: Boolean? = null, @SerializedName("can_post_messages") val canPostMessages: Boolean? = null, @SerializedName("can_edit_messages") val canEditMessages: Boolean? = null, @SerializedName("can_delete_messages") val canDeleteMessages: Boolean? = null, @SerializedName("can_invite_users") val canInviteUsers: Boolean? = null, @SerializedName("can_restrict_members") val canRestrictMembers: Boolean? = null, @SerializedName("can_pin_messages") val canPinMessages: Boolean? = null, @SerializedName("can_promote_members") val canPromoteMembers: Boolean? = null, @SerializedName("can_send_messages") val canSendMessages: Boolean? = null, @SerializedName("can_send_media_messages") val canSendMediaMessages: Boolean? = null, @SerializedName("can_send_other_messages") val canSendOtherMessages: Boolean? = null, @SerializedName("can_add_web_page_previews") val canAddWebPagePreviews: Boolean? = null ) { enum class Status { CREATOR, ADMINISTRATOR, MEMBER, RESTRICTED, LEFT, KICKED } }
34.895522
75
0.673225
d0194b0aacbf10fe332191278f5c1090b0b8c12b
2,134
swift
Swift
Models/FlightAware.swift
wkejunk/HSpotters
bb75e237fabb7dbcb66728077eef01f661447720
[ "MIT" ]
null
null
null
Models/FlightAware.swift
wkejunk/HSpotters
bb75e237fabb7dbcb66728077eef01f661447720
[ "MIT" ]
null
null
null
Models/FlightAware.swift
wkejunk/HSpotters
bb75e237fabb7dbcb66728077eef01f661447720
[ "MIT" ]
null
null
null
// // FlightAware.swift // Airport // // Created by Walter Edgar on 12/24/17. // Copyright © 2017 Walter Edgar. All rights reserved. // import Foundation struct Flights: Decodable { let AirportBoardsResult: Result } struct Result: Decodable { let airport: String let airport_info: AirportInfo let arrivals: Info let departures: Info let enroute: Info let scheduled: Info } struct AirportInfo: Decodable { let airport_code: String let name: String let city: String } struct Info: Decodable { let num_flights: Int var flights: [FlightInfo]? } struct Objects: Decodable { //This struct used for creating the TableView Sections var sectionName: String var flights: [FlightInfo] } struct FlightInfo: Decodable { let ident: String let airline: String var icon: String? let flightnumber: String var tailnumber: String? var tailnumberNoDash: String? var codeshares: String? let blocked: Bool? let diverted: Bool? let cancelled: Bool? let origin: City let destination: City var originOrDestCode: String? var originOrDestAirport: String? var originOrDestCity: String? let route: String? let distance_filed: Int? let filed_departure_time: Times let estimated_departure_time: Times let actual_departure_time: Times let departure_delay: Int? let filed_arrival_time: Times let estimated_arrival_time: Times let actual_arrival_time: Times var estArrDepTime: Int? var actArrDepTime: Int? let arrival_delay: Int? let status: String? let progress_percent: Int? let aircrafttype: String? let full_aircrafttype: String? let terminal_dest: String? let gate_dest: String? let gate_orig: String? var originOrDestGate: String? var specialsFlag: Bool? var specialsDescription: String? } struct Times: Decodable { let epoch: Int? let time: String? let date: String? let localtime: Int? } struct City: Decodable { let code: String? let city: String? let alternate_ident: String? let airport_name: String? }
22.463158
85
0.695876
d25c7d442a5067cc3bdb178b0be1aa4e0cd41ff3
24,161
php
PHP
app/Http/Controllers/HomePageController.php
thm1d/Review-Corner
55302d26496878002f1e004cb8db53db4be20fc6
[ "MIT" ]
null
null
null
app/Http/Controllers/HomePageController.php
thm1d/Review-Corner
55302d26496878002f1e004cb8db53db4be20fc6
[ "MIT" ]
null
null
null
app/Http/Controllers/HomePageController.php
thm1d/Review-Corner
55302d26496878002f1e004cb8db53db4be20fc6
[ "MIT" ]
null
null
null
<?php namespace App\Http\Controllers; use Illuminate\Http\Request; use Illuminate\Support\Facades\Http; use App\ViewModels\HomepageViewModel; use Carbon\Carbon; use Illuminate\Support\Facades\Cache; use Illuminate\Support\Str; class HomePageController extends Controller { /** * Display a listing of the resource. * * @return \Illuminate\Http\Response */ public function index() { $release_date1 = Carbon::now()->subMonths(1)->format('Y-m-d'); $release_date2 = Carbon::now()->format('Y-m-d'); $release_date3 = Carbon::now()->subDays(7)->format('Y-m-d'); $lists = [ [ "id" => 157336, "poster_path" => "/gEU2QniE6E77NI6lCU6MxlNBvIx.jpg", "release_date" => "2014-11-05", "title" => "Interstellar", "type" => "movie", "vote_average" => 8.3, ], [ "id" => 334541, "poster_path" => "/e8daDzP0vFOnGyKmve95Yv0D0io.jpg", "release_date" => "2016-11-18", "title" => "Manchester by the Sea", "type" => "movie", "vote_average" => 7.5, ], [ "id" => 436305, "poster_path" => "/jHbSJo4FoKvqaGn3b7q49bcSYVZ.jpg", "release_date" => "2018-03-15", "title" => "The Farthest", "type" => "movie", "vote_average" => 7.7, ], [ "id" => 266856, "poster_path" => "/kJuL37NTE51zVP3eG5aGMyKAIlh.jpg", "release_date" => "2014-11-26", "title" => "The Theory of Everything", "type" => "movie", "vote_average" => 7.9, ], [ "id" => 85991, "poster_path" => "/9TGNcvMm91QXmnnCCYYqnYK0bK7.jpg", "release_date" => "2019-04-06", "title" => "Fruits Basket", "type" => "tv", "vote_average" => 8.4, ], [ "id" => 424, "poster_path" => "/sF1U4EUQS8YHUYjNl3pMGNIQyr0.jpg", "release_date" => "1993-11-30", "title" => "Schindler's List", "type" => "movie", "vote_average" => 8.6, ], [ "id" => 1422, "poster_path" => "/kWWAt2FMRbqLFFy8o5R4Zr8cMAb.jpg", "release_date" => "2006-10-05", "title" => "The Departed", "type" => "movie", "vote_average" => 8.2, ], [ "id" => 1399, "poster_path" => "/u3bZgnGQ9T01sWNhyveQz0wH0Hl.jpg", "release_date" => "2011-04-17", "title" => "Game of Thrones", "type" => "tv", "vote_average" => 8.4, ], [ "id" => 504253, "poster_path" => "/vHdVU0HyyB6k6kuYt8qjwTz9one.jpg", "release_date" => "2018-09-01", "title" => "I Want to Eat Your Pancreas", "type" => "movie", "vote_average" => 8.3, ], [ "id" => 158445, "poster_path" => "/4Ht6RBo4fUmSo2tWE6umtNll58z.jpg", "release_date" => "2013-01-23", "title" => "Miracle in Cell No. 7", "type" => "movie", "vote_average" => 8.3, ], [ "id" => 205587, "poster_path" => "/tefUxj4Gg9hgQNgfEYd7kJQrIlD.jpg", "release_date" => "2014-10-08", "title" => "The Judge", "type" => "movie", "vote_average" => 7.3, ], [ "id" => 93740, "poster_path" => "/A1fXGFxDifQzj08OlaGTVcnXHyd.jpg", "release_date" => "2021-09-23", "title" => "Foundation", "type" => "tv", "vote_average" => 8.2, ] ]; $trailers = [ [ "name" => "UNCHARTED - Official Trailer (HD)", "key" => "eHp3MbsCbMg", "title" => "Uncharted", "poster_path" => "/77dlklwA1VJOLCqIhhmkmS39BLH.jpg", ], [ "name" => "The Last Duel | 20th Century Studios", "key" => "QTBSb0i09kI", "title" => "The Last Duel", "poster_path" => "/b69kfBhuztkodJfWe9qHx7Gjwe1.jpg" ], [ "name" => "Maya and the Three | Official Trailer | Netflix", "key" => "QrPMlYSbkEQ", "title" => "Maya and the Three", "poster_path" => "/zUBixNeHU0cbSUH7JMktl9OMEMV.jpg", ], [ "name" => "NO TIME TO DIE | Final US Trailer", "key" => "N_gD9-Oa0fg", "title" => "No Time to Die", "poster_path" => "/iUgygt3fscRoKWCV1d0C7FbM9TP.jpg", ], [ "name" => "Needle in a Timestack (2021 Movie) Teaser Trailer", "key" => "ZPKL9aSgbCw", "title" => "Needle in a Timestack", "poster_path" => "/rjGYOszxlaUAe6EC5yZ4Q8l3aVL.jpg", ], [ "name" => "The Matrix Resurrections – Official Trailer 1", "key" => "9ix7TUGVYIo", "title" => "The Matrix Resurrections", "poster_path" => "/tOqTTslEfjyvoBoBM4B29aeqntt.jpg", ], [ "name" => "In The Beginning, Featurette | Marvel Studios' Eternals", "key" => "PcPIlVJ35R0", "title" => "Eternals", "poster_path" => "/6AdXwFTRTAzggD2QUTt5B7JFGKL.jpg" ], [ "name" => "THE BATMAN – Main Trailer", "key" => "mqqft2x_Aa4", "title" => "The Batman", "poster_path" => "/7YncShtIGNJP5euTPSZGxGsImaN.jpg", ] ]; $popular_reviews = [ [ "poster" => "https://image.tmdb.org/t/p/w154/d5NXSklXo0qyIYkgV94XAgMIckC.jpg", "title" => "Dune", "id" => 438631, "year" => 2021, "user_avatar" => "https://www.themoviedb.org/t/p/w64_and_h64_face/ngkjR9NuSpIzRFlMSbOPRrbHM1i.jpg", "user_name" => "Radio1'sMr.Movie!-MadAmi🌠", "rating" => 10.0, "review_short" => " **FABULOUS 🥇🥇🥇🥇 . . . . And , Oh , Yes . . . . Hans Zimmers Score has Already Got OSCAR Written On It 😉 ; & EXPECT A WHOLE HOST OF OTHER _MAJOR_ NOMINATIONS - AS WELL ** This Is A **- _B I G_ -** Screen - MINI - Review. Picture Viewed Oct. 07, 2021 ; At Vox Cinemas , U . A . E ______________________________________________________ Paul Atreides...", "review_full" => "**FABULOUS 🥇🥇🥇🥇 . . . . And , Oh , Yes . . . . Hans Zimmers Score has Already Got OSCAR Written On It 😉 ; & EXPECT A WHOLE HOST OF OTHER _MAJOR_ NOMINATIONS - AS WELL ** This Is A **- _B I G_ -** Screen - MINI - Review. Picture Viewed Oct. 07, 2021 ; At Vox Cinemas , U . A . E ______________________________________________________ Paul Atreides : Fear is the mind-killer. Fear is the little death that brings total obliteration. I will face my fear, and I will permit it to pass over me. When the fear has gone, there will be nothing. Only I will remain . _______________________________________ _______________ **1.** If you are  one of the -Millions- of people around the world who loved Denis Villeneuves hauntingly riveting 2015 thriller Sicario, ( yours truly included ) ; then strap in for one hell of an Interstellar ride, with an -{ EQUALLY }- ** INTERSTELLAR 🌠 ** CAST . . . . that -literally- presents itself like a Who is-who of Hollywoods Best, And Brightest. This time around, the unequivocally -{ Prolific }- Academy Award nominated French Canadian director has taken acclaimed American author Frank Herberts 1965 sci-fi thriller, ( once touted as the worlds -Best- selling science fiction novel ), & turned it into a veritable masterpiece of a movie. -Make Sure- to keep a special eye out for Rebecca Fergusons completely Stunning portrayal of Lady Jessica Atreides . . . . I can promise that you most certainly -Will Not- regret it. **2.** Almost needless to say, the Music, Acting , Cinematography 🔥 , Art-direction, C.g.i, Dramatic pacing & the sprawling, lavish Set-pieces are all, well . . . -{ Past Compare }- . When it comes to 2021s cinematic big budget smorgasbord : if you want to see the -Very- best Popcorn Flick Sensation of the year, it is most unequivocally going to be Bond 25 : No Time To Die. But, on the -other- hand, if you are more in the mood for some -equally- magnificent **Artfilm Meets Blockbuster ( no seriously )** fare . . . that may -Well- hold you in a state of Absolute Rapture from start to finish, then Dune should most -Definitely- be your first choice. Just make sure to come to said movie with a { Genuinely } open and unbiased --- Heart , And Mind 🙃 . **3. Final Analysis :** The only -{ Pronounced }- lack you will feel, if any at all, is that of -{ Humour }‐ . . . . especially if you are someone who enjoys their big screen delights served with, well, a generous side of unrestrained -Mirth- . I counted -Literally- only about 3.5 barely plausible funny moments in the -Entire- flick. But the obvious reason for that is : it simply -Would not- have worked within this sort of a Deadly Serious dark, dramatic, & super futuristic setting ( 10,191 a.g, to be precise ). So, having taken -that- aspect of the production into consideration ; it really ended up -_NOT_ - bothering me very much, AT ALL. Thus, in sum . . . . I was utterly **-{ MESMERIZED }-** by Dune : Part 1 and hence ; I chose to give it a ** Wholehearted, Adoring, MEGA-APPRECIATIVE 13 Marks Out Of 10❗ .**", "media_type" => "movie" ], [ "poster" => "https://image.tmdb.org/t/p/w154/rjkmN1dniUHVYAtwuV3Tji7FsDO.jpg", "title" => "Venom: Let There Be Carnage", "id" => 580489, "year" => 2021, "user_avatar" => "https://secure.gravatar.com/avatar/3593437cbd05cebe0a4ee753965a8ad1.jpg", "user_name" => "garethmb", "rating" => 9.0, "review_short" => "When audiences last saw Eddie Brock (Tom Hardy); the journalist and his parasitic symbiote Venom; had just saved the day and cemented their unusual bond with one another. In the new film Venom: Let There Be Carnage; Eddie and Venom are at the end of their Honeymoon phase as Venom is...", "review_full" => "When audiences last saw Eddie Brock (Tom Hardy); the journalist and his parasitic symbiote Venom; had just saved the day and cemented their unusual bond with one another. In the new film “Venom: Let There Be Carnage”; Eddie and Venom are at the end of their Honeymoon phase as Venom is lingering to be free to eat bad people and do what is natural for him. Eddie meanwhile wants a more conservative approach feeding Venom chicken and chocolate as he knows the eyes of the authorities are still upon him and he has to convince the world that Venom is dead and no longer a threat. At the same time; serial killer Cletus Kasady (Woody Harrelson) has selected Eddie to interview him in San Quentin and the two form an unusual connection as Cletus cryptically speaks to Eddie which underlines a deeper motivation. With the help of Venom; Eddie is able to decipher clues found on the walls of Cletuss cell which leads authorities to several of his victims. This results in a rapid rise in status for Eddie and fast tracks Cletus for execution as his main means of leverage is now gone. This leads to a rift where Eddie and Venom split and each has to struggle to adjust to life without one another. At this point, the film has mainly been odd bits of whimsy between Venom and Eddie around the establishment of the plot and threat. However, things go into chaos mode when Cletus becomes infected with a Symbiote and turns into a destruction spewing death machine known as “Carnage”. Cletus and Carnage both have their own agendas and Cletus uses Carnage to exact his revenge as well as locate a figure from his past that is as big a danger as he is. As any fan of films of this genre knows; this scenario leads to a showdown between the central characters which are awash in abundant CGI, loud noises, and destruction. While this is not a bad thing and certainly one of the main reasons I enjoy films of this type; the film never seemed to fully click for me and as such was not as good as I thought it could have been. In many ways, the film reminded me of how comic-based films were done before Marvel started their own studios and their phenomenal run of hits based on their work. There have been multiple attempts to adapt comics into films over the last few decades and many of them have not lived up to expectations or failed outright. One of the biggest reasons is in my opinion is that those behind the projects were hindered by the studio, wanted to put their own spin on the material and strayed from the source; or failed to show the attributes that made the characters so appealing to fans. What we often get is action sequences and CGI galore but without stories or characters that fully draw in the audience and fail to capture the essence of the comics. Director Andy Serkis has done a great job with the visuals of the film but the tone seems off. The early part of the film is filled with comedic moments that are either hit or miss. Some of which was almost to the point where I wondered if it was supposed to be a parody. The plot is fairly linear with nothing unexpected as it is simply bad guys get loose; bad guys cause death and destruction, can the heroes stop them. The climactic scene lacks any wow moments for me as it was mainly CGI characters rapidly moving around causing damage to one another and their environment. There was no real tension for me and the ultimate resolution seemed a bit anti-climactic. For me the best moment of the film was a mid-credits scene that really popped as it sets up all sorts of interesting options and indicates that Venom may be about to graduate to bigger and better things. For now; the cast is solid as is the CGI; I just wish the story was more engaging as it had the potential to be so much more. 3 stars out of 5", "media_type" => "movie" ], [ "poster" => "https://image.tmdb.org/t/p/w154/qmJGd5IfURq8iPQ9KF3les47vFS.jpg", "title" => "Halloween Kills", "id" => 610253, "year" => 2021, "user_avatar" => "https://www.themoviedb.org/t/p/w64_and_h64_face/xNLOqXXVJf9m7WngUMLIMFsjKgh.jpg", "user_name" => "JPV852", "rating" => 9.0, "review_short" => "Given I was not a big fan of Halloween 2018, the bar on Halloween Kills was rather low and... pretty much met it. While some of the deaths were pretty gruesome, the rest was kind of bland and character decisions as dumb as others. Like the initial sequel, Halloween II, Jamie Lee Curtis spends...", "review_full" => "Given I was not a big fan of Halloween 2018, the bar on Halloween Kills was rather low and... pretty much met it. While some of the deaths were pretty gruesome, the rest was kind of bland and character decisions as dumb as others. Like the initial sequel, Halloween II, Jamie Lee Curtis spends the bulk of her time in the hospital. There was also a scene early on when Michael fights a bunch of firefighters just came off as silly looking, maybe because I am so used to seeing him butcher people one by one, the shot, beyond being clumsily choreographed, showed him taking on 5-6 people; just looked strange. I do not know, there is not a whole lot to this sequel and like Halloween 18, not sure I look forward to revisiting. **2.0/5**", "media_type" => "movie" ], [ "poster" => "https://image.tmdb.org/t/p/w154/iUgygt3fscRoKWCV1d0C7FbM9TP.jpg", "title" => "No Time to Die", "id" => 370172, "year" => 2021, "user_avatar" => "https://secure.gravatar.com/avatar/992eef352126a53d7e141bf9e8707576.jpg", "user_name" => "msbreviews", "rating" => 8.0, "review_short" => "FULL SPOILER-FREE REVIEW https://www.msbreviews.com/movie-reviews/no-time-to-die-spoiler-free-review. No Time To Die is the most emotional, personal James Bond movie of Daniel Craigs Era, holding a heartfelt farewell to the now-iconic actor. Delivering his best performance...", "review_full" => "FULL SPOILER-FREE REVIEW https://www.msbreviews.com/movie-reviews/no-time-to-die-spoiler-free-review. No Time To Die is the most emotional, personal James Bond movie of Daniel Craigs Era, holding a heartfelt farewell to the now-iconic actor. Delivering his best performance as 007, Craig finishes his memorable run in a high-stakes film with some of the best action sequences of the entire franchise. Technically, the practical sets and locations, stunt work, cinematography, and editing are all no short of impressive, working together beautifully to create magnificent set pieces. Despite an overlong runtime with an exposition-heavy second act and a terribly stereotyped villain with unclear motivations, the emotionally compelling narrative sets up a powerful third act boosted by an epic score. Cary Joji Fukunaga brilliantly directs a movie packed with phenomenal performances that will leave no viewer indifferent. Massive praise to the outstanding ensemble cast. And a humble thank you to Craig… Daniel Craig. Rating: A-", "media_type" => "movie" ], [ "poster" => "https://image.tmdb.org/t/p/w154/yxIdKGEjagaLs5kMjw92kAHmopH.jpg", "title" => "You", "id" => 78191, "year" => "2018-", "user_avatar" => "https://www.themoviedb.org/t/p/w64_and_h64_face/8bVLBVaYKiNVdvpLoYlIr3hU6qw.jpg", "user_name" => "Kewl_Kat", "rating" => 8.0, "review_short" => "So far, so good with You. It has a Dexter feel. You find yourself rooting for Joe, despite his deeply troubling behavior. He is a great guy in some ways and a horrible criminal in others. Lots of modern day stalking going on using smartphones and computers plus...", "review_full" => "So far, so good with You. It has a Dexter feel. You find yourself rooting for Joe, despite his deeply troubling behavior. He is a great guy in some ways and a horrible criminal in others. Lots of modern day stalking going on using smartphones and computers plus just good old fashioned regular creeping around. Its disturbing, sexy and fun all rolled into one. Enjoy! 8/10 stars.", "media_type" => "tv" ] ]; dump($popular_reviews); $trendings = http::withToken(config('services.tmdb.token')) ->get('https://api.themoviedb.org/3/trending/all/week?page=1') ->json()['results']; $moviesInTheater = http::withToken(config('services.tmdb.token')) ->get('https://api.themoviedb.org/3/discover/movie?primary_release_date.gte='. $release_date1 .'&primary_release_date.lte='. $release_date2.'&page=1') ->json()['results']; $genresArray = Http::withToken(config('services.tmdb.token')) ->get('https://api.themoviedb.org/3/genre/movie/list') ->json()['genres']; $showsOnTv = http::withToken(config('services.tmdb.token')) ->get('https://api.themoviedb.org/3/tv/on_the_air?page=1') ->json()['results']; //dump($showsOnTv); $games = Http::withHeaders(config('services.igdb.headers')) ->withBody( "fields name, cover.url, first_release_date, total_rating, platforms.abbreviation, release_dates.date, release_dates.human, slug; where release_dates.date < 1617523652 & release_dates.date > 1616917710 & total_rating != null; limit 18; sort total_rating desc;", "text/plain" )->post(config('services.igdb.endpoint')) ->json(); abort_if(!$games, 404); $viewModel = new HomepageViewModel( $lists, $trailers, $trendings, $moviesInTheater, $genresArray, $showsOnTv, $games, $popular_reviews, ); return view('home.home', $viewModel); } /** * Show the form for creating a new resource. * * @return \Illuminate\Http\Response */ public function create() { // } /** * Store a newly created resource in storage. * * @param \Illuminate\Http\Request $request * @return \Illuminate\Http\Response */ public function store(Request $request) { // } /** * Display the specified resource. * * @param int $id * @return \Illuminate\Http\Response */ public function show($id) { // } /** * Show the form for editing the specified resource. * * @param int $id * @return \Illuminate\Http\Response */ public function edit($id) { // } /** * Update the specified resource in storage. * * @param \Illuminate\Http\Request $request * @param int $id * @return \Illuminate\Http\Response */ public function update(Request $request, $id) { // } /** * Remove the specified resource from storage. * * @param int $id * @return \Illuminate\Http\Response */ public function destroy($id) { // } public function showGenre(Request $request, $id, $value) { $genreWiseMovieList = Http::withToken(config('services.tmdb.token')) ->get('https://api.themoviedb.org/3/discover/movie?with_genres='. $id. '&sort_by=popularity.desc') ->json()['results']; $genreWiseTvShows = Http::withToken(config('services.tmdb.token')) ->get('https://api.themoviedb.org/3/discover/tv?with_genres='. $id. '&sort_by=popularity.desc') ->json()['results']; $genreWiseMovies = $this->formatMovies($genreWiseMovieList); //dump($request); //dump($genreWiseTvShows); return view('home.genre',[ 'genreWiseMovies' => $genreWiseMovies, 'genreWiseTvShows' => $genreWiseTvShows, 'genreName' => $value, ]); } public function showYear($id) { $yearWiseMovies = Http::withToken(config('services.tmdb.token')) ->get('https://api.themoviedb.org/3/discover/movie?primary_release_year='. $id. '&sort_by=popularity.desc') ->json()['results']; $yearWiseTvShows = Http::withToken(config('services.tmdb.token')) ->get('https://api.themoviedb.org/3/discover/tv?first_air_date_year='. $id. '&sort_by=popularity.desc') ->json()['results']; //dump($yearWiseMovies); return view('home.year',[ 'yearWiseMovies' => $yearWiseMovies, 'yearWiseTvShows' => $yearWiseTvShows, ]); } public function comingSoon() { return view('comingsoon'); } private function genres() { $genres = http::withToken(config('services.tmdb.token')) ->get('https://api.themoviedb.org/3/genre/movie/list') ->json()['genres']; return collect($genres)->mapWithKeys(function ($genre){ return [$genre['id'] => $genre['name']]; }); } private function formatMovies($movies) { return collect($movies)->map(function($movie) { $genresFormatted = collect($movie['genre_ids'])->mapWithKeys(function($value) { return [$value => $this->genres()->get($value)]; })->implode(', '); return collect($movie)->merge([ 'poster_path' => 'https://image.tmdb.org/t/p/w342/'. $movie['poster_path'], 'release_date' => \Carbon\Carbon::parse($movie['release_date'])->format('M d, Y'), 'genres' => $genresFormatted, ]); }); } }
56.849412
3,809
0.617276
87105fdcde03cd29d71118624785a64b7bbda220
191
sql
SQL
Ren.CMS.Net/Source/Ren.CMS.Net-Modules/Ren.CMS.Net.Installer/InstallModule/Areas/Installer/Schema/nfcms_Content_Attachment_Roles.Table.sql
nfMalde/Ren.CMS.NET
47173a06dee294dd4b17966b8b561f0b962f55e3
[ "MIT" ]
null
null
null
Ren.CMS.Net/Source/Ren.CMS.Net-Modules/Ren.CMS.Net.Installer/InstallModule/Areas/Installer/Schema/nfcms_Content_Attachment_Roles.Table.sql
nfMalde/Ren.CMS.NET
47173a06dee294dd4b17966b8b561f0b962f55e3
[ "MIT" ]
null
null
null
Ren.CMS.Net/Source/Ren.CMS.Net-Modules/Ren.CMS.Net.Installer/InstallModule/Areas/Installer/Schema/nfcms_Content_Attachment_Roles.Table.sql
nfMalde/Ren.CMS.NET
47173a06dee294dd4b17966b8b561f0b962f55e3
[ "MIT" ]
null
null
null
CREATE TABLE ren_cms_Content_Attachment_Roles ( aType VARCHAR (250) NOT NULL , id INT IDENTITY(1,1) NOT NULL , RoleLangLine VARCHAR (250) NULL , RoleName VARCHAR (250) NOT NULL )
27.285714
47
0.722513
b2b0256c939c52a13bd5a7af9879c33ddb297de5
3,847
rs
Rust
ic-cron-rs/src/types.rs
seniorjoinu/ic-cron
33c9cdc794ade5d49381e904005bef3813336f69
[ "MIT" ]
29
2021-08-16T22:25:32.000Z
2022-03-27T15:57:00.000Z
ic-cron-rs/src/types.rs
seniorjoinu/ic-cron
33c9cdc794ade5d49381e904005bef3813336f69
[ "MIT" ]
2
2021-10-03T01:31:44.000Z
2021-12-08T11:33:56.000Z
ic-cron-rs/src/types.rs
seniorjoinu/ic-cron
33c9cdc794ade5d49381e904005bef3813336f69
[ "MIT" ]
3
2021-10-12T09:24:23.000Z
2021-12-05T18:47:04.000Z
use std::cmp::{max, min, Ordering}; use std::collections::BinaryHeap; use ic_cdk::export::candid::{ decode_one, encode_one, CandidType, Deserialize, Result as CandidResult, }; pub type TaskId = u64; #[derive(Clone, CandidType, Deserialize)] pub struct Task { pub kind: u8, pub data: Vec<u8>, } #[derive(Clone, CandidType, Deserialize)] pub enum Iterations { Infinite, Exact(u64), } #[derive(Clone, CandidType, Deserialize)] pub struct SchedulingInterval { pub duration_nano: u64, pub iterations: Iterations, } #[derive(Clone, CandidType, Deserialize)] pub struct ScheduledTask { pub id: TaskId, pub payload: Task, pub scheduled_at: u64, pub rescheduled_at: Option<u64>, pub scheduling_interval: SchedulingInterval, } impl ScheduledTask { pub fn new<TaskPayload: CandidType>( id: TaskId, kind: u8, payload: TaskPayload, scheduled_at: u64, rescheduled_at: Option<u64>, scheduling_interval: SchedulingInterval, ) -> CandidResult<Self> { let task = Task { kind, data: encode_one(payload).unwrap(), }; Ok(Self { id, payload: task, scheduled_at, rescheduled_at, scheduling_interval, }) } pub fn get_payload<'a, T>(&'a self) -> CandidResult<T> where T: Deserialize<'a> + CandidType, { decode_one(&self.payload.data) } pub fn get_kind(&self) -> u8 { self.payload.kind } } pub struct TaskTimestamp { pub task_id: TaskId, pub timestamp: u64, } impl PartialEq for TaskTimestamp { fn eq(&self, other: &Self) -> bool { self.timestamp.eq(&other.timestamp) && self.task_id.eq(&other.task_id) } } impl Eq for TaskTimestamp {} impl PartialOrd for TaskTimestamp { fn partial_cmp(&self, other: &Self) -> Option<Ordering> { self.timestamp .partial_cmp(&other.timestamp) .map(|it| it.reverse()) } fn lt(&self, other: &Self) -> bool { self.timestamp.gt(&other.timestamp) } fn le(&self, other: &Self) -> bool { self.timestamp.ge(&other.timestamp) } fn gt(&self, other: &Self) -> bool { self.timestamp.lt(&other.timestamp) } fn ge(&self, other: &Self) -> bool { self.timestamp.le(&other.timestamp) } } impl Ord for TaskTimestamp { fn cmp(&self, other: &Self) -> Ordering { self.timestamp.cmp(&other.timestamp).reverse() } fn max(self, other: Self) -> Self where Self: Sized, { max(self, other) } fn min(self, other: Self) -> Self where Self: Sized, { min(self, other) } fn clamp(self, min: Self, max: Self) -> Self where Self: Sized, { if self.timestamp < max.timestamp { max } else if self.timestamp > min.timestamp { min } else { self } } } #[derive(Default)] pub struct TaskExecutionQueue(BinaryHeap<TaskTimestamp>); impl TaskExecutionQueue { #[inline(always)] pub fn push(&mut self, task: TaskTimestamp) { self.0.push(task); } pub fn pop_ready(&mut self, timestamp: u64) -> Vec<TaskTimestamp> { let mut cur = self.0.peek(); if cur.is_none() { return Vec::new(); } let mut result = vec![]; while cur.unwrap().timestamp <= timestamp { result.push(self.0.pop().unwrap()); cur = self.0.peek(); if cur.is_none() { break; } } result } #[inline(always)] pub fn is_empty(&self) -> bool { self.0.is_empty() } #[inline(always)] pub fn len(&self) -> usize { self.0.len() } }
21.254144
78
0.561996
e94949caa031429648d1c5eded55bba0f788c05f
140
rs
Rust
src/util.rs
h33p/minidump-writer
196c948ba57447cbd3ba9143ca8ba8e142b20422
[ "MIT" ]
null
null
null
src/util.rs
h33p/minidump-writer
196c948ba57447cbd3ba9143ca8ba8e142b20422
[ "MIT" ]
null
null
null
src/util.rs
h33p/minidump-writer
196c948ba57447cbd3ba9143ca8ba8e142b20422
[ "MIT" ]
null
null
null
pub unsafe fn as_slice<T: Sized>(p: &T) -> &[u8] { std::slice::from_raw_parts((p as *const T) as *const u8, std::mem::size_of::<T>()) }
35
86
0.592857
9c631360ce98a0ede1253017820ec444748b16ce
7,232
js
JavaScript
dist/assets/js/95.25acf1ab.js
P-Sansei/documents
7cff57ca05605c328ceca789d64abbcad61cde89
[ "MIT" ]
null
null
null
dist/assets/js/95.25acf1ab.js
P-Sansei/documents
7cff57ca05605c328ceca789d64abbcad61cde89
[ "MIT" ]
8
2021-03-01T20:53:50.000Z
2022-02-26T01:44:57.000Z
dist/assets/js/95.25acf1ab.js
P-Sansei/documents
7cff57ca05605c328ceca789d64abbcad61cde89
[ "MIT" ]
1
2019-05-14T16:44:56.000Z
2019-05-14T16:44:56.000Z
(window.webpackJsonp=window.webpackJsonp||[]).push([[95],{310:function(a,s,t){"use strict";t.r(s);var e=t(2),r=Object(e.a)({},(function(){var a=this,s=a.$createElement,t=a._self._c||s;return t("ContentSlotsDistributor",{attrs:{"slot-key":a.$parent.slotKey}},[t("h1",{attrs:{id:"防范常见的-web-攻击"}},[t("a",{staticClass:"header-anchor",attrs:{href:"#防范常见的-web-攻击"}},[a._v("#")]),a._v(" 防范常见的 Web 攻击")]),a._v(" "),t("h2",{attrs:{id:"sql-注入攻击"}},[t("a",{staticClass:"header-anchor",attrs:{href:"#sql-注入攻击"}},[a._v("#")]),a._v(" SQL 注入攻击")]),a._v(" "),t("p",[a._v("SQL 注入攻击,这个是最常聊到的话题,使用过 Java 的开发人员,第一个反应就是一定要使用预编译的 PrepareStatement")]),a._v(" "),t("h3",{attrs:{id:"什么是-sql-注入攻击"}},[t("a",{staticClass:"header-anchor",attrs:{href:"#什么是-sql-注入攻击"}},[a._v("#")]),a._v(" 什么是 SQL 注入攻击")]),a._v(" "),t("p",[a._v("攻击者在 HTTP 请求中注入恶意的 SQL 代码,服务器使用参数构建数据库 SQL 命令时,恶意 SQL 被一起构造,并在数据库中执行。")]),a._v(" "),t("p",[a._v("用户登录,输入用户名 Lusifer,密码 "),t("code",[a._v("'or '1' = '1'")]),a._v(" ,如果此时使用参数构造的方式,就会出现")]),a._v(" "),t("div",{staticClass:"language- line-numbers-mode"},[t("pre",{pre:!0,attrs:{class:"language-text"}},[t("code",[a._v("select * from user where name = 'Lusifer' and password = '' or '1'='1'\n")])]),a._v(" "),t("div",{staticClass:"line-numbers-wrapper"},[t("span",{staticClass:"line-number"},[a._v("1")]),t("br")])]),t("p",[a._v("不管用户名和密码是什么内容,使查询出来的用户列表不为空。")]),a._v(" "),t("h3",{attrs:{id:"现在还会存在-sql-注入攻击么"}},[t("a",{staticClass:"header-anchor",attrs:{href:"#现在还会存在-sql-注入攻击么"}},[a._v("#")]),a._v(" 现在还会存在 SQL 注入攻击么")]),a._v(" "),t("p",[a._v("这个问题在使用了预编译的 PrepareStatement 后,安全性得到了很大的提高,但是真实情况下,很多同学并不重视,还是会留下漏洞的。举个例子,看看,大家的代码中对 sql 中 in 操作,使用了预编译,还是仍然还是通过字符串拼接呢?")]),a._v(" "),t("h3",{attrs:{id:"如何防范-sql-注入攻击"}},[t("a",{staticClass:"header-anchor",attrs:{href:"#如何防范-sql-注入攻击"}},[a._v("#")]),a._v(" 如何防范 SQL 注入攻击")]),a._v(" "),t("p",[a._v("使用预编译的 PrepareStatement 是必须的,但是一般我们会从两个方面同时入手:")]),a._v(" "),t("ol",[t("li",[a._v("Web 端\n"),t("ul",[t("li",[a._v("有效性检验。")]),a._v(" "),t("li",[a._v("限制字符串输入的长度。")])])]),a._v(" "),t("li",[a._v("服务端\n"),t("ul",[t("li",[a._v("不用拼接 SQL 字符串。")]),a._v(" "),t("li",[a._v("使用预编译的 PrepareStatement。")]),a._v(" "),t("li",[a._v("有效性检验。(为什么服务端还要做有效性检验?第一准则,外部都是不可信的,防止攻击者绕过 Web 端请求)")]),a._v(" "),t("li",[a._v("过滤 SQL 需要的参数中的特殊字符。比如单引号、双引号。")])])])]),a._v(" "),t("h2",{attrs:{id:"xss-攻击"}},[t("a",{staticClass:"header-anchor",attrs:{href:"#xss-攻击"}},[a._v("#")]),a._v(" XSS 攻击")]),a._v(" "),t("h3",{attrs:{id:"什么是-xss-攻击"}},[t("a",{staticClass:"header-anchor",attrs:{href:"#什么是-xss-攻击"}},[a._v("#")]),a._v(" 什么是 XSS 攻击")]),a._v(" "),t("p",[a._v("跨站点脚本攻击,指攻击者通过篡改网页,嵌入恶意脚本程序,在用户浏览网页时,控制用户浏览器进行恶意操作的一种攻击方式。")]),a._v(" "),t("p",[a._v("假设页面上有一个表单")]),a._v(" "),t("div",{staticClass:"language- line-numbers-mode"},[t("pre",{pre:!0,attrs:{class:"language-text"}},[t("code",[a._v('<input type="text" name="name" value="Lusifer"/>\n')])]),a._v(" "),t("div",{staticClass:"line-numbers-wrapper"},[t("span",{staticClass:"line-number"},[a._v("1")]),t("br")])]),t("p",[a._v("如果,用户输入的不是一个正常的字符串,而是")]),a._v(" "),t("div",{staticClass:"language- line-numbers-mode"},[t("pre",{pre:!0,attrs:{class:"language-text"}},[t("code",[a._v('"/><script>alert("haha")<\/script><!-\n')])]),a._v(" "),t("div",{staticClass:"line-numbers-wrapper"},[t("span",{staticClass:"line-number"},[a._v("1")]),t("br")])]),t("p",[a._v("此时,页面变成下面的内容,在输入框 input 的后面带上了一段脚本代码。")]),a._v(" "),t("div",{staticClass:"language- line-numbers-mode"},[t("pre",{pre:!0,attrs:{class:"language-text"}},[t("code",[a._v('<input type="text" name="name" value="Lusifer"/><script>alert("haha")<\/script><!-"/>\n')])]),a._v(" "),t("div",{staticClass:"line-numbers-wrapper"},[t("span",{staticClass:"line-number"},[a._v("1")]),t("br")])]),t("p",[a._v("这端脚本程序只是弹出一个消息框,并不会造成什么危害,攻击的威力取决于用户输入了什么样的脚本,只要稍微修改,便可使攻击极具攻击性。")]),a._v(" "),t("h3",{attrs:{id:"如何防范-xss-攻击"}},[t("a",{staticClass:"header-anchor",attrs:{href:"#如何防范-xss-攻击"}},[a._v("#")]),a._v(" 如何防范 XSS 攻击")]),a._v(" "),t("ol",[t("li",[a._v("前端,服务端,同时需要字符串输入的长度限制。")]),a._v(" "),t("li",[a._v("前端,服务端,同时需要对HTML转义处理。将其中的 < ,> 等特殊字符进行转义编码。")])]),a._v(" "),t("h2",{attrs:{id:"csrf-攻击"}},[t("a",{staticClass:"header-anchor",attrs:{href:"#csrf-攻击"}},[a._v("#")]),a._v(" CSRF 攻击")]),a._v(" "),t("h3",{attrs:{id:"什么是-csrf-攻击"}},[t("a",{staticClass:"header-anchor",attrs:{href:"#什么是-csrf-攻击"}},[a._v("#")]),a._v(" 什么是 CSRF 攻击")]),a._v(" "),t("p",[a._v("跨站点请求伪造,指攻击者通过跨站请求,以合法的用户的身份进行非法操作。可以这么理解 CSRF 攻击:攻击者盗用你的身份,以你的名义向第三方网站发送恶意请求。CRSF 能做的事情包括利用你的身份发邮件,发短信,进行交易转账,甚至盗取账号信息。")]),a._v(" "),t("h3",{attrs:{id:"如何防范-csrf-攻击"}},[t("a",{staticClass:"header-anchor",attrs:{href:"#如何防范-csrf-攻击"}},[a._v("#")]),a._v(" 如何防范 CSRF 攻击")]),a._v(" "),t("ol",[t("li",[a._v("安全框架,例如 Spring Security。")]),a._v(" "),t("li",[a._v("token 机制。在 HTTP 请求中进行 token 验证,如果请求中没有 token 或者 token 内容不正确,则认为 CSRF 攻击而拒绝该请求。")]),a._v(" "),t("li",[a._v("验证码。通常情况下,验证码能够很好的遏制 CSRF 攻击,但是很多情况下,出于用户体验考虑,验证码只能作为一种辅助手段,而不是最主要的解决方案。")]),a._v(" "),t("li",[a._v("referer 识别。在 HTTP Header 中有一个字段 Referer,它记录了 HTTP 请求的来源地址。如果 Referer 是其他网站,就有可能是 CSRF 攻击,则拒绝该请求。但是,服务器并非都能取到 Referer。很多用户出于隐私保护的考虑,限制了 Referer 的发送。在某些情况下,浏览器也不会发送 Referer,例如 HTTPS 跳转到 HTTP。")])]),a._v(" "),t("h2",{attrs:{id:"文件上传漏洞"}},[t("a",{staticClass:"header-anchor",attrs:{href:"#文件上传漏洞"}},[a._v("#")]),a._v(" 文件上传漏洞")]),a._v(" "),t("h3",{attrs:{id:"什么是文件上传漏洞"}},[t("a",{staticClass:"header-anchor",attrs:{href:"#什么是文件上传漏洞"}},[a._v("#")]),a._v(" 什么是文件上传漏洞")]),a._v(" "),t("p",[a._v("文件上传漏洞,指的是用户上传一个可执行的脚本文件,并通过此脚本文件获得了执行服务端命令的能力。")]),a._v(" "),t("p",[a._v("许多第三方框架、服务,都曾经被爆出文件上传漏洞,比如很早之前的 Struts2,以及富文本编辑器等等,可能被一旦被攻击者上传恶意代码,有可能服务端就被人黑了。")]),a._v(" "),t("h1",{attrs:{id:"如何防范文件上传漏洞"}},[t("a",{staticClass:"header-anchor",attrs:{href:"#如何防范文件上传漏洞"}},[a._v("#")]),a._v(" 如何防范文件上传漏洞")]),a._v(" "),t("ol",[t("li",[a._v("文件上传的目录设置为不可执行。")]),a._v(" "),t("li",[a._v("判断文件类型。在判断文件类型的时候,可以结合使用 MIME Type,后缀检查等方式。因为对于上传文件,不能简单地通过后缀名称来判断文件的类型,因为攻击者可以将可执行文件的后缀名称改为图片或其他后缀类型,诱导用户执行。")]),a._v(" "),t("li",[a._v("对上传的文件类型进行白名单校验,只允许上传可靠类型。")]),a._v(" "),t("li",[a._v("上传的文件需要进行重新命名,使攻击者无法猜想上传文件的访问路径,将极大地增加攻击成本,同时向 shell, php, rar, ara 这种文件,因为重命名而无法成功实施攻击。")]),a._v(" "),t("li",[a._v("限制上传文件的大小。")]),a._v(" "),t("li",[a._v("单独设置文件服务器的域名。")])]),a._v(" "),t("h2",{attrs:{id:"访问控制"}},[t("a",{staticClass:"header-anchor",attrs:{href:"#访问控制"}},[a._v("#")]),a._v(" 访问控制")]),a._v(" "),t("p",[a._v("一般来说,“基于 URL 的访问控制”是最常见的。")]),a._v(" "),t("h3",{attrs:{id:"垂直权限管理"}},[t("a",{staticClass:"header-anchor",attrs:{href:"#垂直权限管理"}},[a._v("#")]),a._v(" 垂直权限管理")]),a._v(" "),t("p",[a._v("访问控制实际上是建立用户与权限之间的对应关系,即“基于角色的访问控制”,RBAC。不同角色的权限有高低之分。高权限角色访问低权限角色的资源往往是被允许的,而低权限角色访问高权限的资源往往被禁止的。在配置权限时,应当使用“最小权限原则”,并使用“默认拒绝”的策略,只对有需要的主体单独配置”允许”的策略,这在很多时候能够避免发生“越权访问”。")]),a._v(" "),t("p",[a._v("例如,Spring Security, Apache Shiro 都可以建立垂直权限管理。")]),a._v(" "),t("h3",{attrs:{id:"水平权限管理"}},[t("a",{staticClass:"header-anchor",attrs:{href:"#水平权限管理"}},[a._v("#")]),a._v(" 水平权限管理")]),a._v(" "),t("p",[a._v("水平权限问题在同一个角色上,系统只验证了访问数据的角色,没有对角色内的用户做细分,由于水平权限管理是系统缺乏一个数据级的访问控制所造成的,因此水平权限管理又可以称之为“基于数据的访问控制”。")]),a._v(" "),t("p",[a._v("举个理解,比如我们之前的一个助手产品,客户端用户删除评论功能,如果没有做水平权限管理,即设置只有本人才可以删除自己的评论,那么用户通过修改评论id就可以删除别人的评论这个就存在危险的越权操作。")]),a._v(" "),t("p",[a._v("这个层面,基本需要我们业务层面去处理,但是这个也是最为经常遗落的安全点。")])])}),[],!1,null,null,null);s.default=r.exports}}]);
7,232
7,232
0.619607
7190ea1e6551f84086787f1bc840936d16455fe5
132
ts
TypeScript
videos/2e07c274-b451-4bc7-a177-a6c2201e8b70/1080p_200.ts
Krystian19/cactus-fake-video-cdn-service
263942b309ecc4bfb07308f20b6352f5b7dfe505
[ "MIT" ]
null
null
null
videos/2e07c274-b451-4bc7-a177-a6c2201e8b70/1080p_200.ts
Krystian19/cactus-fake-video-cdn-service
263942b309ecc4bfb07308f20b6352f5b7dfe505
[ "MIT" ]
1
2018-11-12T14:41:37.000Z
2018-11-12T14:41:37.000Z
videos/2e07c274-b451-4bc7-a177-a6c2201e8b70/1080p_200.ts
Krystian19/cactus-fake-video-cdn-service
263942b309ecc4bfb07308f20b6352f5b7dfe505
[ "MIT" ]
1
2018-11-12T14:29:29.000Z
2018-11-12T14:29:29.000Z
version https://git-lfs.github.com/spec/v1 oid sha256:764c792a6638e9409db66c5366edc8a40a6c830ef78ac45389ef14792f6b153b size 1796528
33
75
0.886364
36381c475196667a23667334f77474e6cef5d926
1,552
rs
Rust
src/day5.rs
MitMaro/advent-of-code-2015
0f5b6e48b7215ae7e3f03eebf1ebc70560586c8a
[ "0BSD" ]
1
2020-12-04T01:26:24.000Z
2020-12-04T01:26:24.000Z
src/day5.rs
MitMaro/advent-of-code-2015
0f5b6e48b7215ae7e3f03eebf1ebc70560586c8a
[ "0BSD" ]
null
null
null
src/day5.rs
MitMaro/advent-of-code-2015
0f5b6e48b7215ae7e3f03eebf1ebc70560586c8a
[ "0BSD" ]
null
null
null
use aoc_runner_derive::{aoc, aoc_generator}; #[aoc_generator(day5)] pub fn input_generator(input: &str) -> Vec<String> { input.lines().map(String::from).collect::<Vec<String>>() } #[aoc(day5, part1)] pub fn part1(lines: &Vec<String>) -> i32 { let mut total = 0; 'l: for line in lines { let mut double_found = false; let mut vowels = 0; let mut last_char = '\0'; for c in line.chars() { match c { 'a' | 'e' | 'i' | 'o' | 'u' => { vowels += 1; }, _ => {}, } if last_char == c { double_found = true; } match last_char { 'a' if c == 'b' => continue 'l, 'c' if c == 'd' => continue 'l, 'p' if c == 'q' => continue 'l, 'x' if c == 'y' => continue 'l, _ => {}, } last_char = c; } if double_found && vowels >= 3 { total += 1; } } total } #[aoc(day5, part2)] pub fn part2(lines: &Vec<String>) -> i32 { let mut total = 0; for line in lines { let mut double_found = false; let mut repeat_found = false; let mut last_char = '\0'; let mut second_last_char = '\0'; for (index, c) in line.chars().enumerate() { let mut inner_last_character = '\0'; for d in line.chars().skip(index + 1) { if inner_last_character != '\0' && last_char != '\0' && d == c && inner_last_character == last_char { double_found = true; break; } inner_last_character = d; } if second_last_char == c { repeat_found = true; } second_last_char = last_char; last_char = c; } if double_found && repeat_found { total += 1; } } total }
20.155844
105
0.55799
fb366f02774a72fb2b64feaf6a0e188389602a94
2,594
h
C
System/Library/Frameworks/MediaSetup.framework/MSOAuthTokenHandler.h
zhangkn/iOS14Header
4323e9459ed6f6f5504ecbea2710bfd6c3d7c946
[ "MIT" ]
1
2020-11-04T15:43:01.000Z
2020-11-04T15:43:01.000Z
System/Library/Frameworks/MediaSetup.framework/MSOAuthTokenHandler.h
zhangkn/iOS14Header
4323e9459ed6f6f5504ecbea2710bfd6c3d7c946
[ "MIT" ]
null
null
null
System/Library/Frameworks/MediaSetup.framework/MSOAuthTokenHandler.h
zhangkn/iOS14Header
4323e9459ed6f6f5504ecbea2710bfd6c3d7c946
[ "MIT" ]
null
null
null
/* * This header is generated by classdump-dyld 1.0 * on Sunday, September 27, 2020 at 11:53:11 AM Mountain Standard Time * Operating System: Version 14.0 (Build 18A373) * Image Source: /System/Library/Frameworks/MediaSetup.framework/MediaSetup * classdump-dyld is licensed under GPLv3, Copyright © 2013-2016 by Elias Limneos. */ @class CMSAuthenticationConfiguration, CMSAuthenticationCredential, NSURLSessionConfiguration, CMSNetworkActivity; @interface MSOAuthTokenHandler : NSObject { CMSAuthenticationConfiguration* _authorizationConfiguration; CMSAuthenticationCredential* _authorizationCredential; NSURLSessionConfiguration* _URLSessionConfiguration; CMSNetworkActivity* _parentNetworkActivity; CMSNetworkActivity* _networkActivity; } @property (nonatomic,readonly) CMSNetworkActivity * parentNetworkActivity; //@synthesize parentNetworkActivity=_parentNetworkActivity - In the implementation block @property (nonatomic,retain) CMSNetworkActivity * networkActivity; //@synthesize networkActivity=_networkActivity - In the implementation block @property (readonly) CMSAuthenticationConfiguration * authorizationConfiguration; //@synthesize authorizationConfiguration=_authorizationConfiguration - In the implementation block @property (readonly) CMSAuthenticationCredential * authorizationCredential; //@synthesize authorizationCredential=_authorizationCredential - In the implementation block @property (readonly) NSURLSessionConfiguration * URLSessionConfiguration; //@synthesize URLSessionConfiguration=_URLSessionConfiguration - In the implementation block +(id)tokenHandlerWithConfiguration:(id)arg1 existingCredential:(id)arg2 URLSessionConfiguration:(id)arg3 parentNetworkActivity:(id)arg4 ; -(NSURLSessionConfiguration *)URLSessionConfiguration; -(CMSNetworkActivity *)networkActivity; -(void)setNetworkActivity:(CMSNetworkActivity *)arg1 ; -(id)initWithConfiguration:(id)arg1 existingCredential:(id)arg2 URLSessionConfiguration:(id)arg3 parentNetworkActivity:(id)arg4 ; -(void)performTokenFetchTaskWithSession:(id)arg1 bodyString:(id)arg2 completionHandler:(/*^block*/id)arg3 ; -(CMSNetworkActivity *)parentNetworkActivity; -(void)performTokenGrantRequestWithSession:(id)arg1 completionHandler:(/*^block*/id)arg2 ; -(void)performTokenRefreshWithSession:(id)arg1 completionHandler:(/*^block*/id)arg2 ; -(void)fetchTokens:(/*^block*/id)arg1 ; -(CMSAuthenticationConfiguration *)authorizationConfiguration; -(CMSAuthenticationCredential *)authorizationCredential; @end
63.268293
193
0.806091
1f8b357cdf33bfc3b601d6dd3818c9923aa6f675
1,083
html
HTML
site/_includes/contact-modal.html
lmnts-dev/m2
a9b8f1db7ca5fbfadcb29345d013f39e6b6113c6
[ "MIT" ]
1
2020-04-11T07:08:00.000Z
2020-04-11T07:08:00.000Z
site/_includes/contact-modal.html
lmnts-dev/m2
a9b8f1db7ca5fbfadcb29345d013f39e6b6113c6
[ "MIT" ]
null
null
null
site/_includes/contact-modal.html
lmnts-dev/m2
a9b8f1db7ca5fbfadcb29345d013f39e6b6113c6
[ "MIT" ]
1
2020-04-11T07:08:12.000Z
2020-04-11T07:08:12.000Z
<section class="contact-modal" id="contact-modal"> <div class="inner txt-center"> <div class="exit" data-contact="exit"> {% include exit.html %} </div> <h2>Get In Touch</h2> <p>We are actively seeking partnership and alliances with health systems. To learn more or inquire, please fill out the form below and we’ll get back to you.</p> <form action="https://formspree.io/contact@m2medintel.com" method="POST" > <label for="email">Email Address*</label> <input type="text" title="email" name="_replyto" for="email"> <label for="name">Full name</label> <input type="text" title="name" name="name" for="name"> <label for="company" >Company</label> <input type="text" title="company" name="company" for="company"> <label for="message">How can we help you?</label> <input type="text" title="message" name="message" for="message"> <input class="btn" type="submit" value="Submit"> </form> </div> </section>
51.571429
127
0.589104
3de7616221369b187d8d8a16c714c532953e7b0c
17,220
rs
Rust
src/client/mod.rs
teotwaki/twitch-irc-rs
601e0d262bd34c831a4f0003283a7db3dcced2fe
[ "MIT" ]
null
null
null
src/client/mod.rs
teotwaki/twitch-irc-rs
601e0d262bd34c831a4f0003283a7db3dcced2fe
[ "MIT" ]
null
null
null
src/client/mod.rs
teotwaki/twitch-irc-rs
601e0d262bd34c831a4f0003283a7db3dcced2fe
[ "MIT" ]
null
null
null
mod event_loop; mod pool_connection; use crate::client::event_loop::{ClientLoopCommand, ClientLoopWorker}; use crate::config::ClientConfig; use crate::error::Error; use crate::irc; use crate::login::LoginCredentials; use crate::message::commands::ServerMessage; use crate::message::IRCMessage; use crate::message::{IRCTags, PrivmsgMessage}; use crate::transport::Transport; use crate::validate::validate_login; use std::collections::HashSet; use std::sync::Arc; use std::time::Duration; use tokio::sync::{mpsc, oneshot}; /// A send-only handle to control the Twitch IRC Client. #[derive(Debug)] pub struct TwitchIRCClient<T: Transport, L: LoginCredentials> { // we use an Arc<>. // the client loop has to also hold a handle to this sender to be able to feed itself // with commands as well. (e.g. to rejoin channels) // the client loop gets a Weak<> (a weak reference) and this client holds strong // references. That means when the last client handle is dropped, the client loop // exits, because the underlying mpsc::UnboundedSender will be dropped. // The client will then also no longer be able to send "itself" messages, because // it always only holds a Weak<> and has to check whether the weak reference is still // valid before sending itself messages. client_loop_tx: Arc<mpsc::UnboundedSender<ClientLoopCommand<T, L>>>, } // we have to implement Debug and Clone manually, the derive macro places // the requirement `T: Clone` which we cannot currently satisfy and don't need impl<T: Transport, L: LoginCredentials> Clone for TwitchIRCClient<T, L> { fn clone(&self) -> Self { TwitchIRCClient { client_loop_tx: self.client_loop_tx.clone(), } } } impl<T: Transport, L: LoginCredentials> TwitchIRCClient<T, L> { /// Create a new client from the given configuration. /// /// Note this method is not side-effect-free - a background task will be spawned /// as a result of calling this function. pub fn new( config: ClientConfig<L>, ) -> ( mpsc::UnboundedReceiver<ServerMessage>, TwitchIRCClient<T, L>, ) { let config = Arc::new(config); let (client_loop_tx, client_loop_rx) = mpsc::unbounded_channel(); let client_loop_tx = Arc::new(client_loop_tx); let (client_incoming_messages_tx, client_incoming_messages_rx) = mpsc::unbounded_channel(); ClientLoopWorker::spawn( config, // the worker gets only a weak reference Arc::downgrade(&client_loop_tx), client_loop_rx, client_incoming_messages_tx, ); ( client_incoming_messages_rx, TwitchIRCClient { client_loop_tx }, ) } } impl<T: Transport, L: LoginCredentials> TwitchIRCClient<T, L> { /// Connect to Twitch IRC without joining any channels. /// /// **You typically do not need to call this method.** This is only provided for the rare /// case that one would only want to receive incoming whispers without joining channels /// or ever sending messages out. If your application joins channels during startup, /// calling `.connect()` is superfluous, as the client will automatically open the necessary /// connections when you join channels or send messages. pub async fn connect(&self) { let (return_tx, return_rx) = oneshot::channel(); self.client_loop_tx .send(ClientLoopCommand::Connect { return_sender: return_tx, }) .unwrap(); // unwrap: ClientLoopWorker should not die before all sender handles have been dropped return_rx.await.unwrap() } /// Send an arbitrary IRC message to one of the connections in the connection pool. /// /// An error is returned in case the message could not be sent over the picked connection. pub async fn send_message(&self, message: IRCMessage) -> Result<(), Error<T, L>> { let (return_tx, return_rx) = oneshot::channel(); self.client_loop_tx .send(ClientLoopCommand::SendMessage { message, return_sender: return_tx, }) .unwrap(); // unwrap: ClientLoopWorker should not die before all sender handles have been dropped return_rx.await.unwrap() } /// Send a `PRIVMSG`-type IRC message to a Twitch channel. The `message` can be a normal /// chat message or a chat command like `/ban` or similar. /// /// If you want to just send a normal chat message, `say()` should be preferred since it /// prevents commands like `/ban` from accidentally being executed. pub async fn privmsg(&self, channel_login: String, message: String) -> Result<(), Error<T, L>> { self.send_message(irc!["PRIVMSG", format!("#{}", channel_login), message]) .await } /// Ban a user with an optional reason from the given Twitch channel. /// /// Note that this will not throw an error if the target user is already banned, doesn't exist /// or if the logged-in user does not have the required permission to ban the user. An error /// is only returned if something prevented the command from being sent over the wire. pub async fn ban( &self, channel_login: String, target_login: &str, reason: Option<&str>, ) -> Result<(), Error<T, L>> { let command = match reason { Some(reason) => format!("/ban {} {}", target_login, reason), None => format!("/ban {}", target_login), }; self.privmsg(channel_login, command).await } /// Unban a user from the given Twitch channel. /// /// Note that this will not throw an error if the target user is not currently banned, doesn't exist /// or if the logged-in user does not have the required permission to unban the user. An error /// is only returned if something prevented the command from being sent over the wire. pub async fn unban( &self, channel_login: String, target_login: &str, ) -> Result<(), Error<T, L>> { self.privmsg(channel_login, format!("/unban {}", target_login)) .await } /// Timeout a user in the given Twitch channel. /// /// Note that this will not throw an error if the target user is banned, doesn't exist /// or if the logged-in user does not have the required permission to timeout the user. An error /// is only returned if something prevented the command from being sent over the wire. pub async fn timeout( &self, channel_login: String, target_login: &str, duration: Duration, reason: Option<&str>, ) -> Result<(), Error<T, L>> { let command = match reason { Some(reason) => format!( "/timeout {} {} {}", target_login, duration.as_secs(), reason ), None => format!("/timeout {} {}", target_login, duration.as_secs()), }; self.privmsg(channel_login, command).await } /// Remove the timeout from a user in the given Twitch channel. /// /// Note that this will not throw an error if the target user is banned, not currently timed /// out, doesn't exist or if the logged-in user does not have the required permission to remove /// the timeout from the user. An error is only returned if something prevented the command from /// being sent over the wire. pub async fn untimeout( &self, channel_login: String, target_login: &str, ) -> Result<(), Error<T, L>> { self.privmsg(channel_login, format!("/untimeout {}", target_login)) .await } /// Say a chat message in the given Twitch channel. /// /// This method automatically prevents commands from being executed. For example /// `say("a_channel", "/ban a_user") would not actually ban a user, instead it would /// send that exact message as a normal chat message instead. /// /// No particular filtering is performed on the message. If the message is too long for chat, /// it will not be cut short or split into multiple messages (what happens is determined /// by the behaviour of the Twitch IRC server). pub async fn say(&self, channel_login: String, message: String) -> Result<(), Error<T, L>> { self.say_in_response(channel_login, message, None).await } /// Say a chat message in the given Twitch channel, but send it as a response to another message if `reply_to_id` is specified. /// /// Behaves the same as `say()` when `reply_to_id` is None, but tags the original message and it's sender if specified. pub async fn say_in_response( &self, channel_login: String, message: String, reply_to_id: Option<String>, ) -> Result<(), Error<T, L>> { let mut tags = IRCTags::new(); if let Some(id) = reply_to_id { tags.0.insert("reply-parent-msg-id".to_string(), Some(id)); } let irc_message = IRCMessage::new( tags, None, "PRIVMSG".to_string(), vec![format!("#{}", channel_login), format!(". {}", message)], // The prefixed "." prevents commands from being executed ); self.send_message(irc_message).await } /// Replies to a given `PrivmsgMessage`, tagging the original message and it's sender. /// /// Similarly to `say()`, this method strips the message of executing commands, but does not filter out messages which are too long. /// Refer to `say()` for the exact behaviour. pub async fn reply_to_privmsg( &self, message: String, reply_to: &PrivmsgMessage, ) -> Result<(), Error<T, L>> { self.say_in_response( reply_to.channel_login.clone(), message, Some(reply_to.message_id.clone()), ) .await } /// Join the given Twitch channel (When a channel is joined, the client will receive messages /// sent to it). /// /// **This method panics if a channel login of invalid format is passed to it.** (As determined /// by [crate::validate::validate_login].) If you are dealing with unsanitized /// user input, you must manually call this validate function before calling this function, /// in order to avoid panicking your program. /// /// The client will internally ensure that there has always been at least _an attempt_ to join /// this channel. However this does not necessarily mean the join is always successful. /// /// If the given `channel_login` does not exist (or is suspended) then the IRC server /// will ignore the `JOIN` and you will not be joined to the given channel (what channel would /// you even expect to join if the channel does not exist?). /// /// However, the client listens for a server-side confirmation to this `JOIN` command. /// If the server confirms that the `JOIN` was successful, then the client saves this information. /// This information can be queried using `get_channel_status()`. /// /// If you later issue another `join()` call, and the server previously confirmed the successful /// joining of `channel_login`, then no message will be sent out. /// /// However if the server *did not* confirm the successful `JOIN` command previously, then the /// `JOIN` is attempted again. /// /// You can use this mechanism to e.g. periodically re-try `JOIN`ing a given channel if /// joining to freshly created channels or freshly renamed channels is a concern in your application. /// /// Another note on Twitch behaviour: If a channel gets suspended, the `JOIN` membership stays /// active as long as the connection with that `JOIN` membership stays active. For this reason, /// there is no special logic or handling required for when a channel gets suspended. /// (The `JOIN` membership in that channel will continue to count as confirmed for as long /// as the connection stays alive. If the connection fails, the "confirmed" status for that /// channel is reset, and the client will automatically attempt to re-join that channel on a /// different or new connection. /// Unless an answer is again received by the server, the `join()` will then make attempts again /// to join that channel. pub fn join(&self, channel_login: String) { if let Err(e) = validate_login(&channel_login) { panic!("TwitchIRCClient.login: Channel login `{}` is forbidden: does not pass basic format validation ({})", channel_login, e); } self.client_loop_tx .send(ClientLoopCommand::Join { channel_login }) .unwrap(); } /// Instruct the client to only be connected to these channels. Channels currently joined /// but not in the given set are parted, and channels in the set that are not currently /// joined are joined. /// /// **This method panics if a channel login of invalid format is passed to it.** (As determined /// by [crate::validate::validate_login].) If you are dealing with unsanitized /// user input, you must manually call this validate function before calling this function, /// in order to avoid panicking your program. /// /// For further semantics about join and parts, see the documentation for [TwitchIRCClient::join]. pub fn set_wanted_channels(&self, channels: HashSet<String>) { for channel_login in channels.iter() { if let Err(e) = validate_login(channel_login) { panic!("TwitchIRCClient.set_wanted_channels: Channel login `{}` is forbidden: does not pass basic format validation ({})", channel_login, e); } } self.client_loop_tx .send(ClientLoopCommand::SetWantedChannels { channels }) .unwrap(); } /// Query the client for what status a certain channel is in. /// /// Returns two booleans: The first indicates whether a channel is `wanted`. This is true /// if the last operation for this channel was a `join()` method, or alternatively whether /// it was included in the set of channels in a `set_wanted_channels` call. /// /// The second boolean indicates whether this channel is currently joined server-side. /// (This is purely based on `JOIN` and `PART` messages being received from the server). /// /// Note that any combination of `true` and `false` is possible here. /// /// For example, `(true, false)` could indicate that the `JOIN` message to join this channel is currently /// being sent or already sent, but no response confirming the `JOIN` has been received yet. /// **Note this status can also mean that the server did not answer the `JOIN` request because /// the channel did not exist/was suspended or similar conditions.** /// /// `(false, true)` might on the other hand (similarly) that a `PART` message is sent but not /// answered yet by the server. /// /// `(true, true)` confirms that the channel is currently successfully joined in a normal fashion. /// /// `(false, false)` is returned for a channel that has not been joined previously at all /// or where a previous `PART` command has completed. pub async fn get_channel_status(&self, channel_login: String) -> (bool, bool) { // channel_login format sanity check not really needed here, the code will deal with arbitrary strings just fine let (return_tx, return_rx) = oneshot::channel(); self.client_loop_tx .send(ClientLoopCommand::GetChannelStatus { channel_login, return_sender: return_tx, }) .unwrap(); // unwrap: ClientLoopWorker should not die before all sender handles have been dropped return_rx.await.unwrap() } /// Part (leave) a channel, to stop receiving messages sent to that channel. /// /// This has the same semantics as `join()`. Similarly, a `part()` call will have no effect /// if the channel is not currently joined. pub fn part(&self, channel_login: String) { // channel_login format sanity check not really needed here, the code will deal with arbitrary strings just fine self.client_loop_tx .send(ClientLoopCommand::Part { channel_login }) .unwrap(); } /// Ping a random connection. This does not await the `PONG` response from Twitch. /// The future resolves once the `PING` command is sent to the wire. /// An error is returned in case the message could not be sent over the picked connection. pub async fn ping(&self) -> Result<(), Error<T, L>> { let (return_tx, return_rx) = oneshot::channel(); self.client_loop_tx .send(ClientLoopCommand::Ping { return_sender: return_tx, }) .unwrap(); // unwrap: ClientLoopWorker should not die before all sender handles have been dropped return_rx.await.unwrap() } }
45.676393
157
0.649071
39ee800d16dc1173f0efb78d0667e6b4845398fa
831
java
Java
src/main/java/com/github/chen0040/leetcode/day06/easy/RemoveDuplicatesFromSortedList.java
chen0040/java-leetcode
83cc0ab474cb171cb3d6be869209b4a8c96857ea
[ "MIT" ]
4
2019-09-01T18:48:43.000Z
2021-09-05T19:05:51.000Z
src/main/java/com/github/chen0040/leetcode/day06/easy/RemoveDuplicatesFromSortedList.java
chen0040/java-leetcode
83cc0ab474cb171cb3d6be869209b4a8c96857ea
[ "MIT" ]
null
null
null
src/main/java/com/github/chen0040/leetcode/day06/easy/RemoveDuplicatesFromSortedList.java
chen0040/java-leetcode
83cc0ab474cb171cb3d6be869209b4a8c96857ea
[ "MIT" ]
4
2017-11-22T15:23:09.000Z
2021-12-17T23:59:37.000Z
package com.github.chen0040.leetcode.day06.easy; /** * Created by xschen on 1/8/2017. * * summary: * Given a sorted linked list, delete all duplicates such that each element appear only once. * * link: https://leetcode.com/problems/remove-duplicates-from-sorted-list/description/ */ public class RemoveDuplicatesFromSortedList { public class ListNode { int val; ListNode next; ListNode(int x) { val = x; } } public class Solution { public ListNode deleteDuplicates(ListNode head) { ListNode x = head; while(x != null) { ListNode x_next = x.next; while(x_next != null && x.val == x_next.val) { x_next = x_next.next; } x.next = x_next; x = x_next; } return head; } } }
24.441176
93
0.581227
f05e57abf8788d483966f72cb158032481ce2596
4,121
py
Python
8_plot_data_perstation.py
sdat2/Yellowstone2
4008145b7372f5f5901de584656ceea44e73934a
[ "MIT" ]
null
null
null
8_plot_data_perstation.py
sdat2/Yellowstone2
4008145b7372f5f5901de584656ceea44e73934a
[ "MIT" ]
null
null
null
8_plot_data_perstation.py
sdat2/Yellowstone2
4008145b7372f5f5901de584656ceea44e73934a
[ "MIT" ]
null
null
null
# Program 8_plot_data_perstation.py written by Sanne Cottaar (sc845@cam.ac.uk) file_name= '8_plot_data_perstation.py' # Uses receiver functions computed to produce a nice graph for every directory in DATARF import obspy from obspy import read from obspy.core import Stream from obspy.core import trace import matplotlib.pyplot as plt import os.path import time import glob import shutil import numpy as np from obspy import UTCDateTime import receiver_function as rf direc = 'DataRF' flag = 'SV' filt = 'jgf1' stadirs = glob.glob(direc+'/*') for stadir in stadirs: print(stadir) with open(stadir+'/selected_RFs_jgf1.dat','r') as f: goodrfs= f.read().replace('\n', '') # loop through events stalist=glob.glob(stadir+'/*.PICKLE') print(stalist) c=0 # Loop through data if(len(stalist)>0): for i in range(len(stalist)): #range(cat.count()): print(stalist[i]) seis=read(stalist[i],format='PICKLE') distdg=seis[0].stats['dist'] if stalist[i] in goodrfs: good=True print('YAY',seis[0].stats['event'].magnitudes[0].mag) else: good=False print('NO',seis[0].stats['event'].magnitudes[0].mag) tshift=UTCDateTime(seis[0].stats['starttime'])-seis[0].stats['event'].origins[0].time #Ptime=Ptime plt.subplot(1,3,1) vertical = seis.select(channel='BHZ')[0] vertical.filter('bandpass', freqmin=0.01,freqmax=.1, corners=2, zerophase=True) windowed=vertical[np.where(vertical.times()>seis[0].stats.traveltimes['P']-100) and np.where(vertical.times()<seis[0].stats.traveltimes['P']+100)] norm=np.max(np.abs(windowed)) if good: plt.plot(vertical.times()-seis[0].stats.traveltimes['P'], vertical.data/norm+np.round(distdg),'k') else: plt.plot(vertical.times()-seis[0].stats.traveltimes['P'], vertical.data/norm+np.round(distdg),'r') #plt.plot(seis[0].stats.traveltimes['P'],np.round(distdg),'.b') #plt.plot(seis[0].stats.traveltimes['S'],np.round(distdg),'.g') plt.xlim([-25,150]) plt.ylim([30,92]) plt.subplot(1,3,2) radial = seis.select(channel='BHR')[0] radial.filter('bandpass', freqmin=0.01,freqmax=.1, corners=2, zerophase=True) windowed=vertical[np.where(radial.times()>seis[0].stats.traveltimes['P']-100) and np.where(radial.times()<seis[0].stats.traveltimes['P']+100)] norm=np.max(np.abs(windowed)) if good: plt.plot(radial.times()-seis[0].stats.traveltimes['P'], radial.data/norm+np.round(distdg),'k') else: plt.plot(radial.times()-seis[0].stats.traveltimes['P'], radial.data/norm+np.round(distdg),'r') plt.xlim([-25,150]) plt.plot(seis[0].stats.traveltimes['P'],np.round(distdg),'.b') plt.plot(seis[0].stats.traveltimes['S'],np.round(distdg),'.g') plt.ylim([30,92]) plt.subplot(1,3,3) RF=getattr(seis[0],filt)['iterativedeconvolution'] time=getattr(seis[0],filt)['time'] if good: plt.plot(time, RF/np.max(np.abs(RF))+np.round(distdg),'k') else: plt.plot(time, RF/np.max(np.abs(RF))+np.round(distdg),'r') plt.subplot(1,3,1) plt.title('vertical') plt.ylabel('distance') plt.xlabel('time') plt.subplot(1,3,2) plt.title('radial') plt.ylabel('distance') plt.xlabel('time') plt.subplot(1,3,3) plt.title('receiver functions') plt.ylabel('distance') plt.xlabel('time') #plt.xlim([-150,1000]) plt.show()
40.009709
162
0.542344
5086193372bee5a71cb0d339696803863e2a82ea
896
go
Go
pkg/stack/stack.go
go-zen-chu/datastructs
987f902a962ae13097eefaf097bcefde6110abfe
[ "MIT" ]
1
2021-11-06T09:06:06.000Z
2021-11-06T09:06:06.000Z
pkg/stack/stack.go
go-zen-chu/datastructs
987f902a962ae13097eefaf097bcefde6110abfe
[ "MIT" ]
null
null
null
pkg/stack/stack.go
go-zen-chu/datastructs
987f902a962ae13097eefaf097bcefde6110abfe
[ "MIT" ]
null
null
null
package stack import "fmt" type stack struct { data []int size int } type Stack interface { Push(int) Pop() (bool, int) Top() int IsEmpty() bool } // NewStack instantiates a new stack func NewStack(cap int) Stack { return &stack{data: make([]int, 0, cap), size: 0} } // Push adds a new element at the end of the stack func (s *stack) Push(n int) { s.data = append(s.data, n) s.size++ } // Pop removes the last element from stack func (s *stack) Pop() (bool, int) { if s.IsEmpty() { return false, -1 } s.size-- val := s.data[s.size] s.data = s.data[:s.size] return true, val } // Top returns the last element of stack func (s *stack) Top() int { return s.data[s.size-1] } // IsEmpty checks if the stack is empty func (s *stack) IsEmpty() bool { return s.size == 0 } // String implements Stringer interface func (s *stack) String() string { return fmt.Sprint(s.data) }
16.90566
50
0.652902
4134d877cd7699d9adb9cfa4474f52803f3d4e00
860
h
C
shoveler/opengl/include/shoveler/material/depth_texture_gaussian_filter.h
improbablejan/shoveler-spatialos
f0bed77332478ba2dfd2d282a57fd6fd5f3ad712
[ "MIT" ]
30
2016-06-13T09:52:25.000Z
2022-03-18T15:26:49.000Z
shoveler/opengl/include/shoveler/material/depth_texture_gaussian_filter.h
improbablejan/shoveler-spatialos
f0bed77332478ba2dfd2d282a57fd6fd5f3ad712
[ "MIT" ]
1
2022-01-17T18:31:01.000Z
2022-01-17T18:31:01.000Z
shoveler/opengl/include/shoveler/material/depth_texture_gaussian_filter.h
improbablejan/shoveler-spatialos
f0bed77332478ba2dfd2d282a57fd6fd5f3ad712
[ "MIT" ]
3
2022-01-04T15:03:05.000Z
2022-01-31T20:57:56.000Z
#ifndef SHOVELER_MATERIAL_DEPTH_TEXTURE_GAUSSIAN_FILTER_H #define SHOVELER_MATERIAL_DEPTH_TEXTURE_GAUSSIAN_FILTER_H #include <shoveler/material.h> #include <shoveler/sampler.h> #include <shoveler/texture.h> struct ShovelerShaderCacheStruct; // forward declaration: shader_cache.h ShovelerMaterial *shovelerMaterialDepthTextureGaussianFilterGaussianFilterCreate(struct ShovelerShaderCacheStruct *shaderCache, ShovelerTexture **texturePointer, ShovelerSampler **samplerPointer, int width, int height); void shovelerMaterialDepthTextureGaussianFilterEnableExponentialLifting(ShovelerMaterial *material, float liftExponentialFactor); void shovelerMaterialDepthTextureGaussianFilterDisableExponentialLifting(ShovelerMaterial *material); void shovelerMaterialDepthTextureGaussianFilterSetDirection(ShovelerMaterial *material, bool filterX, bool filterY); #endif
53.75
219
0.884884
8b26c568ebebe6e792ee5c208b3513d3fc18fef0
190
kt
Kotlin
src/main/kotlin/com/autonomousapps/internal/advice/EmptyFilter.kt
pavlospt/dependency-analysis-android-gradle-plugin
da9fdb86476f948604963054f5faa7fda9ba30a5
[ "Apache-2.0" ]
null
null
null
src/main/kotlin/com/autonomousapps/internal/advice/EmptyFilter.kt
pavlospt/dependency-analysis-android-gradle-plugin
da9fdb86476f948604963054f5faa7fda9ba30a5
[ "Apache-2.0" ]
null
null
null
src/main/kotlin/com/autonomousapps/internal/advice/EmptyFilter.kt
pavlospt/dependency-analysis-android-gradle-plugin
da9fdb86476f948604963054f5faa7fda9ba30a5
[ "Apache-2.0" ]
null
null
null
package com.autonomousapps.internal.advice import com.autonomousapps.advice.Dependency class EmptyFilter : DependencyFilter { override val predicate: (Dependency) -> Boolean = { true } }
27.142857
60
0.789474
ccbc1563b2f10d5c1abd23e025d94dc13978e374
2,180
lua
Lua
assets/scripts/extensions/movements.lua
DiegoG1014/PAC-MATH
6edc60c4d038f3086311ee031cfa2e3ca3234def
[ "MIT" ]
null
null
null
assets/scripts/extensions/movements.lua
DiegoG1014/PAC-MATH
6edc60c4d038f3086311ee031cfa2e3ca3234def
[ "MIT" ]
null
null
null
assets/scripts/extensions/movements.lua
DiegoG1014/PAC-MATH
6edc60c4d038f3086311ee031cfa2e3ca3234def
[ "MIT" ]
null
null
null
mega = mega or {} mega.movements={} --Defines a new move, you can then store it in a variable function mega.movements.newMove(acceleration,deacceleration,maximumspeed,x1,y1,x2,y2) local t = { acc = acceleration, deacc = deacceleration, topspeed = maximumspeed, x=x1, y=y1, finished=false } if x2 ~=nil and y2~=nil then t.targetx=x2 t.targety=y2 local angle=math.atan2((y2 - y1), (x2 - x1)) t.cosangle=math.cos(angle) t.sinangle=math.sin(angle) end if t.acc > 0 then t.vel = 0 else t.vel = t.topspeed end function t:jump() self.x=self.targetx self.y=self.targety self.vel=0 self.finished=true end function t:advance(dt) if self.targetx == nil or self.targety == nil then return end local distance = math.sqrt((self.targetx-self.x)^2 + (self.targety-self.y)^2) if distance < self.vel * dt or self.finished then --we almost reached it, skip the rest self:jump() return end local deaccDistance --the distance we need to fully stop if self.deacc > 0 then deaccDistance = self.vel^2 / (2 * self.deacc) else deaccDistance = 0 end if distance>deaccDistance then self.vel=math.min(self.vel + self.acc * dt, self.topspeed) --we are still far, accelerate (if possible) else self.vel=math.max(self.vel - self.deacc * dt,0) --we should be stopping end if self.vel == 0 then self:jump() return end self.x=self.x + self.vel * self.cosangle * dt self.y=self.y + self.vel * self.sinangle * dt self.finished=false end function t:resetVelocity() if self.acc > 0 then self.vel=0 else self.vel=self.topspeed end end function t:setTarget(x,y) self.finished=false self.targetx=x self.targety=y if x == nil or y == nil then self.finished=true self.vel=0 return end local angle = math.atan2((y - self.y), (x - self.x)) self.cosangle=math.cos(angle) self.sinangle=math.sin(angle) end function t:getPosition() return self.x, self.y end function t:setPosition(x, y) self.x = x self.y = y end function t:isFinished() return self.finished end return t end
23.695652
108
0.649541
3881330110e89418d2dccd2ed5889bb1b047b7e7
9,504
swift
Swift
Shelf/Controller/LoginViewController.swift
vikingdr/ShelfCosmetics
54dde67360d4fc461b12eafe72b7a1719b67749e
[ "Apache-2.0" ]
null
null
null
Shelf/Controller/LoginViewController.swift
vikingdr/ShelfCosmetics
54dde67360d4fc461b12eafe72b7a1719b67749e
[ "Apache-2.0" ]
null
null
null
Shelf/Controller/LoginViewController.swift
vikingdr/ShelfCosmetics
54dde67360d4fc461b12eafe72b7a1719b67749e
[ "Apache-2.0" ]
null
null
null
// // LoginViewController.swift // Shelf // // Created by Matthew James on 30/04/15. // Copyright (c) 2015 Shelf. All rights reserved. // import UIKit import MBProgressHUD import Firebase // FIXME: comparison operators with optionals were removed from the Swift Standard Libary. // Consider refactoring the code to use the non-optional operators. fileprivate func < <T : Comparable>(lhs: T?, rhs: T?) -> Bool { switch (lhs, rhs) { case let (l?, r?): return l < r case (nil, _?): return true default: return false } } // FIXME: comparison operators with optionals were removed from the Swift Standard Libary. // Consider refactoring the code to use the non-optional operators. fileprivate func > <T : Comparable>(lhs: T?, rhs: T?) -> Bool { switch (lhs, rhs) { case let (l?, r?): return l > r default: return rhs < lhs } } let kLoginVCIdentifier = "LoginVC" class LoginViewController: UIViewController,UITabBarControllerDelegate, UIScrollViewDelegate, UITextFieldDelegate { @IBOutlet weak var btnBack: UIButton! @IBOutlet var textFieldEmail:UITextField? @IBOutlet var textFieldPassword:UITextField? @IBOutlet var backgroundImageView: UIImageView! @IBOutlet weak var scrollView: UIScrollView! let validator = Validator() var activeTextField : UITextField? // MARK: - View Life Cycle methods override func viewDidLoad() { super.viewDidLoad() let imgBackButton = UIImage(named: "btnBack")?.withRenderingMode(UIImageRenderingMode.alwaysTemplate) btnBack.setImage(imgBackButton, for: UIControlState()) textFieldEmail?.attributedPlaceholder = NSAttributedString(string:"EMAIL OR USERNAME", attributes:[NSForegroundColorAttributeName: UIColor.white, NSKernAttributeName: 4]) textFieldPassword?.attributedPlaceholder = NSAttributedString(string:"PASSWORD", attributes:[NSForegroundColorAttributeName: UIColor.white, NSKernAttributeName: 4]) // scrollView.bounces = false scrollView.isScrollEnabled = true let tap: UITapGestureRecognizer = UITapGestureRecognizer(target: self, action: #selector(LoginViewController.dismissKeyboard)) view.addGestureRecognizer(tap) self.scrollView.setContentOffset(CGPoint(x: 0,y: -scrollView.contentInset.top) ,animated: false) } func dismissKeyboard() { view.endEditing(true) self.scrollView?.contentOffset = CGPoint(x: 0,y: 0 ) } override func viewWillAppear(_ animated: Bool) { super.viewWillAppear(animated) } // MARK: - ALL Validation methods func validation() -> Bool{ if textFieldEmail?.text==""{ let alert = UIAlertController(title: "Shelf", message: "Please enter Email.", preferredStyle: UIAlertControllerStyle.alert) alert.addAction(UIAlertAction(title: "Ok", style: UIAlertActionStyle.default, handler: nil)) self.present(alert, animated: true, completion: nil) return false } else if textFieldPassword?.text==""{ let alert = UIAlertController(title: "Shelf", message: "Please enter password.", preferredStyle: UIAlertControllerStyle.alert) alert.addAction(UIAlertAction(title: "Ok", style: UIAlertActionStyle.default, handler: nil)) self.present(alert, animated: true, completion: nil) return false } return true; } func isValidEmail(_ testStr:String) -> Bool { print("validate email: \(testStr)") let emailRegEx = "[A-Z0-9a-z._%+-]+@[A-Za-z0-9.-]+\\.[A-Za-z]{2,4}" if let emailTest = NSPredicate(format:"SELF MATCHES %@", emailRegEx) as NSPredicate? { return emailTest.evaluate(with: testStr) } return false } // MARK: - Navigation func textFieldShouldBeginEditing(_ textField: UITextField) -> Bool { UIView.animate(withDuration: 0.30, delay: 0, options: .beginFromCurrentState, animations: { self.view.layoutIfNeeded() self.activeTextField = textField self.scrollView?.contentOffset = CGPoint(x: 0, y: textField.frame.origin.y - 140) }, completion: nil) return true } func textFieldShouldReturn(_ textField: UITextField) -> Bool{ if textField == textFieldEmail{ textFieldEmail?.resignFirstResponder() textFieldPassword?.becomeFirstResponder() } else if textField == textFieldPassword{ textFieldPassword?.resignFirstResponder() } return true } // MARK: - Custom Button methods @IBAction func LoginBtnAction(_ sender: AnyObject){ checkFirstField(textFieldEmail!.text!.lowercased(), password: textFieldPassword!.text!) } @IBAction func backBtnAction(_ sender: AnyObject){ self.navigationController?.popViewController(animated: true) } func checkFirstField(_ email: String, password: String) { var loadingNotification = MBProgressHUD.showAdded(to: self.view, animated: true) loadingNotification.labelText = "Logging In" var username = email if (username.characters.index(of: "@") != nil) { let query = PFQuery(className: "_User") query.whereKey("email", equalTo: username) query.findObjectsInBackground(block: { (objects, error) in if error == nil && objects != nil { if objects?.count > 0 { username = objects![0]["username"] as! String self.login(username, password: password) } else { MBProgressHUD.hideAllHUDs(for: self.view, animated: true) let alertController = UIAlertController(title: "Login Error", message: "Email not found, please try again!", preferredStyle: .alert) let OKAction = UIAlertAction(title: "OK", style: .default) { (action) in // Dismiss the alert } alertController.addAction(OKAction) self.present(alertController, animated: true) {} } } else { print("error: \(error)") MBProgressHUD.hideAllHUDs(for: self.view, animated: true) let alertController = UIAlertController(title: "Login Error", message: "Please try again!", preferredStyle: .alert) let OKAction = UIAlertAction(title: "OK", style: .default) { (action) in // Dismiss the alert } alertController.addAction(OKAction) self.present(alertController, animated: true) {} } }) } else { login(username, password: password) } } func login(_ username: String, password: String) { PFUser.logInWithUsername(inBackground: username, password: password) { (user, error) -> Void in if !(error != nil) { MBProgressHUD.hideAllHUDs(for: self.view, animated: true) self.view.endEditing(true) PFInstallation.current()?.setObject(PFUser.current()!, forKey: "user") PFInstallation.current()?.saveEventually(nil) SFollow.refreshFollowing() SFollow.refreshFollowers() self.checkIfAppVersionOnParseIsCurrent() let delegate = UIApplication.shared.delegate as! AppDelegate delegate.showContent() AnalyticsHelper.sendCustomEvent(kFIREventLogin) } else { print(error!._code) MBProgressHUD.hideAllHUDs(for: self.view, animated: true) let alertController = UIAlertController(title: "Login Error", message: "Please try again!", preferredStyle: .alert) let OKAction = UIAlertAction(title: "OK", style: .default) { (action) in // Dismiss the alert } alertController.addAction(OKAction) self.present(alertController, animated: true, completion: nil) } } } func checkIfAppVersionOnParseIsCurrent(){ if let user = PFUser.current(){ //Adds in app version let version: AnyObject? = Bundle.main.infoDictionary!["CFBundleShortVersionString"] as AnyObject? if let versionString = version as? String { if let appVersionString = user["AppVersion"] as? String{ if versionString.compare(appVersionString, options: NSString.CompareOptions.numeric) == ComparisonResult.orderedDescending { user["AppVersion"] = versionString user.saveInBackground() } }else if user["AppVersion"] as? String == nil { user["AppVersion"] = versionString print(user["AppVersion"]) user.saveInBackground() } } } } }
39.76569
156
0.589752
bb616691efeff85417820a57cedc5c437ee640f0
10,272
html
HTML
log in/Login.html
The-Arshad-Khan/BigB-E-learn-Websit-e-1
daebfb43a4902ed5b2af93d86cefdc02e36888aa
[ "MIT" ]
1
2022-03-16T22:10:08.000Z
2022-03-16T22:10:08.000Z
log in/Login.html
The-Arshad-Khan/BigB-E-learn-Websit-e-1
daebfb43a4902ed5b2af93d86cefdc02e36888aa
[ "MIT" ]
null
null
null
log in/Login.html
The-Arshad-Khan/BigB-E-learn-Websit-e-1
daebfb43a4902ed5b2af93d86cefdc02e36888aa
[ "MIT" ]
null
null
null
<!DOCTYPE html> <html lang="en"> <head> <link rel="shortcut icon" type="png" href="image/v.png" /> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <script src="https://kit.fontawesome.com/64d58efce2.js" crossorigin="anonymous" ></script> <link rel="stylesheet" href="style.css" /> <title>BigB</title> <link href="https://unpkg.com/boxicons@2.0.7/css/boxicons.min.css" rel="stylesheet" /> <link href="./login.css" rel="stylesheet" /> <!-- font awesome cdn link --> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css" /> <!-- custom css file link --> <link rel="stylesheet" href="css/style.css" /> <!-- google fonts --> <link rel="preconnect" href="https://fonts.gstatic.com" /> <link href="https://fonts.googleapis.com/css2?family=Heebo:wght@100;200;300;400;500;600;700;800;900&family=Roboto:wght@100;300;400;500;700;900&display=swap" rel="stylesheet" /> <!-- font awesome cdn --> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w==" crossorigin="anonymous" referrerpolicy="no-referrer" /> <!--Fav-icon------------------------------> <link rel="shortcut icon" href="images/fav-icon.png" /> <!--poppins-font-family--> <link rel="preconnect" href="https://fonts.gstatic.com" /> <link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet" /> <!--using-Font-Awesome--------------------> <script src="https://kit.fontawesome.com/c8e4d183c2.js" crossorigin="anonymous" ></script> </head> <body> <!-- navbar section starts --> <div class="sidebar"> <div class="logo-details"> <i class="fab fa-blogger"></i> <div class="logo_name">BigB</div> <i class="bx bx-menu" id="btn"></i> </div> <ul class="nav-list"> <li> <i class="bx bx-search"></i> <input type="text" placeholder="Search..." /> <span class="tooltip">Search</span> </li> <li> <a href="../index.html"> <i class="bx bx-grid-alt"></i> <span class="links_name">Home</span> </a> <span class="tooltip">Home</span> </li> <li> <a href="../about/team.html"> <i class="bx bx-user"></i> <span class="links_name">Team</span> </a> <span class="tooltip">Team</span> </li> <li> <a href="../contact/contact.html"> <i class="bx bx-chat"></i> <span class="links_name">Contact US</span> </a> <span class="tooltip">Contact US</span> </li> <li> <a href="../Course/subjects/quiz.html"> <i class="fas fa-brain"></i> <span class="links_name">Quiz</span> </a> <span class="tooltip">Quiz</span> </li> <li> <a href="../Course/Courses.html"> <i class="fas fa-book-reader"></i> <span class="links_name">Courses</span> </a> <span class="tooltip">Courses</span> </li> <li> <a href="../Blog/blog.html"> <i class="fab fa-blogger"></i> <span class="links_name">Blogs</span> </a> <span class="tooltip">Blogs</span> </li> <li> <a href="#"> <i class="bx bx-heart"></i> <span class="links_name">Saved</span> </a> <span class="tooltip">Saved</span> </li> <li> <a href="../log in/Login.html"> <i class="fas fa-user-plus"></i> <span class="links_name">Sign In</span> </a> <span class="tooltip">Sign In</span> </li> <li class="profile"> <div class="profile-details"> <img src="image/v.png" alt="profileImg" /> <div class="name_job"> <div class="name">TechBenchers</div> <div class="job">Web designer</div> </div> </div> <i class="bx bx-log-out" id="log_out"></i> </li> </ul> </div> <!--nav bar ends here--> <section class="login"> <div class="container"> <div class="forms-container"> <div class="signin-signup"> <form id="login_form" class="sign-in-form"> <h2 class="title user_logged_in">Sign in</h2> <h2 class="title" id="logged_user"></h2> <div class="input-field user_logged_in"> <i class="fas fa-user"></i> <input type="email" validate id="email" placeholder="Email" /> </div> <div class="input-field user_logged_in password"> <i class="fas fa-lock lock"></i> <input type="password" id="password" placeholder="Password" /> <i class="fas fa-eye-slash eye" id="eye"></i> </div> <span id="err_msg"></span> <input type="submit" value="Login" class="btn solid user_logged_in" /> <input type="submit" value="Logout" class="btn solid logout" style="display: none" /> <p class="social-text user_logged_in"> Or Sign in with social platforms </p> <div class="social-media user_logged_in"> <a href="#" class="social-icon"> <i class="fab fa-facebook-f"></i> </a> <a href="#" class="social-icon"> <i class="fab fa-twitter"></i> </a> <a href="#" class="social-icon"> <i class="fab fa-google"></i> </a> <a href="#" class="social-icon"> <i class="fab fa-linkedin-in"></i> </a> </div> </form> <form id="signup_form" class="sign-up-form"> <h2 class="title">Sign up</h2> <div class="input-field"> <i class="fas fa-user"></i> <input id="username" type="text" placeholder="Username" /> </div> <div class="input-field"> <i class="fas fa-envelope"></i> <input id="signup_email" type="email" placeholder="Email" /> </div> <div class="input-field"> <i class="bx bxs-phone-call"></i> <input id="mobile_number" type="number" placeholder="Contact Number" /> </div> <div class="input-field password"> <i class="fas fa-lock lock"></i> <input id="signup_password" type="password" placeholder="Password" /> <i class="fas fa-eye-slash eye" id="signup_eye"></i> </div> <div class="input-field password"> <i class="fas fa-lock lock"></i> <input id="confirm_signup_password" type="password" placeholder="Confirm Password" /> <i class="fas fa-eye-slash eye" id="confirm_signup_eye"></i> </div> <span id="err_msg_signup"></span> <input type="submit" class="btn" value="Sign up" /> <p class="social-text">Or Sign up with social platforms</p> <div class="social-media"> <a href="#" class="social-icon"> <i class="fab fa-facebook-f"></i> </a> <a href="#" class="social-icon"> <i class="fab fa-twitter"></i> </a> <a href="#" class="social-icon"> <i class="fab fa-google"></i> </a> <a href="#" class="social-icon"> <i class="fab fa-linkedin-in"></i> </a> </div> </form> </div> </div> <div class="panels-container"> <div class="panel left-panel"> <div class="content"> <h3 id="signed_user_welcome">New here ?</h3> <p> Lorem ipsum, dolor sit amet consectetur adipisicing elit. Debitis, ex ratione. Aliquid! </p> <button class="btn transparent user_logged_in" id="sign-up-btn"> Sign up </button> </div> <img src="image/log.svg" class="image" alt="" /> </div> <div class="panel right-panel"> <div class="content"> <h3>One of us ?</h3> <p> Lorem ipsum dolor sit amet consectetur adipisicing elit. Nostrum laboriosam ad deleniti. </p> <button class="btn transparent" id="sign-in-btn">Sign in</button> </div> <img src="image/register.svg" class="image" alt="" /> </div> </div> </div> </section> <!--navbar script starts here--> <script src="./script1.js"></script> <!-- Code optiimization --> <!--navbar script end here--> <script src="./script2.js"></script> <!-- Code optiimization --> <script src="https://unpkg.com/@supabase/supabase-js"></script> <script src="./script3.js"></script> <!-- Code optiimization --> <script src="login.js"></script> <script src="signup.js"></script> <script src="user_state.js"></script> </body> </html>
35.298969
192
0.475662
4a397fcf624a0c9d7c789023f69bfc68ac85c965
7,580
js
JavaScript
small/pages/about/detail/index.js
wjq768843095/chengduZoo
2570b02b5287ece879ac24a0595a25d823cd2229
[ "Apache-2.0" ]
null
null
null
small/pages/about/detail/index.js
wjq768843095/chengduZoo
2570b02b5287ece879ac24a0595a25d823cd2229
[ "Apache-2.0" ]
null
null
null
small/pages/about/detail/index.js
wjq768843095/chengduZoo
2570b02b5287ece879ac24a0595a25d823cd2229
[ "Apache-2.0" ]
null
null
null
var t = getApp(), a = require("../../../utils/util"); Page({ data: { outTradeNo: null, orderDetail: [], imgUrl: "", spotName: "", englishName: "MINJIANG ZIPINGPU", languageType: "", healthState: "", isCheckHealthCode: "", updateTime: "", healthColor: "", healthCode: "", titleShow: !1, codeMaskShow: !1 }, onLoad: function(t) { var a = t.orderNo; this.getorderDetail(a), this.getSpotName(), this.setLanguage(), this.getApliction(a); }, setLanguage: function() { var a = t.globalData.language; console.log(a), "english" == a ? this.setData({ languageType: "english" }) : this.setData({ languageType: "" }); }, getApliction: function(a) { var e = this, o = t.globalData.baseurl + "getApp" + ("?applicationNo=" + t.globalData.applicationNo); wx.request({ url: o, data: { applicationNo: "260810" }, method: "POST", header: { "content-type": "application/json;charset=utf-8" }, success: function(t) { console.log(t.data.data), wx.hideLoading(), "success" == t.data.status && e.setData({ isCheckHealthCode: t.data.data.isCheckHealthCode || "0" }); } }); }, _getHealthCodeByOrderNo: function(e, o, s) { var i = this.data.orderDetail, l = this, n = t.globalData.baseurl + "getHealthCode" + ("?applicationNo=" + t.globalData.applicationNo); wx.request({ url: n, data: { name: e, idCardNo: o }, method: "POST", header: { "content-type": "application/json;charset=utf-8" }, success: function(t) { if (console.log(t.data.data), wx.hideLoading(), "success" == t.data.status) { if ("200" == t.data.data.code) { var e = t.data.data.code, o = t.data.data.data.healthCode, n = "10" == o ? "高风险" : "01" == o ? "中风险" : "正常", d = "10" == o ? "#E51C1F" : "01" == o ? "#D0B208" : "green"; "200" == e && (i.orders[s].titleShow = !0, i.orders[s].codeMaskShow = "10" == o), i.orders[s].healthColor = d, i.orders[s].healthState = n, i.orders[s].updateTime = a.GetDateStr(0).fulldate + " " + a.GetDateStr(0).fullTime, i.orders[s].healthCode = o, l.setData({ orderDetail: i }); } if ("404" == t.data.data.code || "405" == t.data.data.code) { i.orders[s].titleShow = !0, i.orders[s].codeMaskShow = !1; i.orders[s].healthColor = "#D0B208", i.orders[s].healthState = "未知", i.orders[s].updateTime = a.GetDateStr(0).fulldate + " " + a.GetDateStr(0).fullTime, l.setData({ orderDetail: i }); } } } }); }, save: function(t) { console.log(t), console.log(t.currentTarget.dataset.imgurl), this.setData({ imgUrl: t.currentTarget.dataset.imgurl }); var a = this; wx.showToast({ icon: "loading", title: "正在保存图片", duration: 1e3 }), wx.getSetting({ success: function(t) { t.authSetting["scope.writePhotosAlbum"] ? a.savePhoto() : wx.authorize({ scope: "scope.writePhotosAlbum", success: function() { a.savePhoto(); }, fail: function() { wx.openSetting({ success: function() { wx.authorize({ scope: "scope.writePhotosAlbum", success: function() { a.savePhoto(); } }); } }); } }); } }); }, getSpotName: function() { var a = this, e = t.globalData.baseurl + "getSpot" + ("?applicationNo=" + t.globalData.applicationNo); wx.showLoading({ title: "加载中...", mask: !0 }), wx.request({ url: e, data: { spotNo: "13056873" }, method: "POST", header: { "content-type": "application/json;charset=utf-8" }, success: function(t) { wx.hideLoading(), "success" == t.data.status ? a.setData({ spotName: t.data.data.spotName }) : wx.showModal({ title: "通知", showCancel: !1, content: "查询数据失败,请稍后重试...", confirmText: "确认" }); }, fail: function(t) { wx.hideLoading(), wx.showModal({ title: "通知", showCancel: !1, content: "网络异常,请检查网络...", confirmText: "确认" }); } }); }, savePhoto: function() { wx.downloadFile({ url: this.data.imgUrl, success: function(t) { console.log(t), console.log(t.tempFilePath), wx.saveImageToPhotosAlbum({ filePath: t.tempFilePath, success: function(t) { wx.showToast({ title: "保存成功", icon: "success", duration: 1e3 }); } }); } }); }, getorderDetail: function(a) { console.log(a); var e = this, o = (this.data.isCheckHealthCode, t.globalData.baseurl + "getOrder" + ("?applicationNo=" + t.globalData.applicationNo)); wx.showLoading({ title: "加载中...", mask: !0 }), wx.request({ url: o, data: { openId: t.globalData.openId, orderNo: a }, method: "POST", header: { "content-type": "application/json;charset=utf-8" }, success: function(t) { console.log(t.data.data), wx.hideLoading(); var a = t.data.data.orders; "success" == t.data.status ? (e.setData({ orderDetail: t.data.data }), a.forEach(function(t, a) { e._getHealthCodeByOrderNo(t.customerName, t.customerUserIdSha256, a); })) : wx.showModal({ title: "通知", showCancel: !1, content: "查询数据失败,请稍后重试...", confirmText: "确认" }); }, fail: function() { wx.hideLoading(), wx.showModal({ title: "通知", showCancel: !1, content: "网络异常,请检查网络...", confirmText: "确认" }); } }); } });
36.97561
193
0.404749
5756674ce8cb79e4b1857030aeb582be167496a3
1,282
h
C
benchmarks/deputytests/ptrdist/yacr2/channel.h
ucsd-progsys/csolve-bak
89cfeb5403e617f45ece4bae9f88f8e6cd7ca934
[ "BSD-3-Clause" ]
null
null
null
benchmarks/deputytests/ptrdist/yacr2/channel.h
ucsd-progsys/csolve-bak
89cfeb5403e617f45ece4bae9f88f8e6cd7ca934
[ "BSD-3-Clause" ]
1
2018-04-24T10:43:07.000Z
2018-04-24T10:43:07.000Z
benchmarks/deputytests/ptrdist/yacr2/channel.h
ucsd-progsys/csolve-bak
89cfeb5403e617f45ece4bae9f88f8e6cd7ca934
[ "BSD-3-Clause" ]
null
null
null
/* * * channel.h * */ /* * * Includes. * */ #include "types.h" #ifndef CHANNEL_H #define CHANNEL_H /* * * Defines. * */ /* * * Types. * */ /* * * Globals. * */ #ifdef CHANNEL_CODE #define CHANNEL_DEF #else #define CHANNEL_DEF extern #endif #define YACR_ARRAY NONNULL COUNT(channelNets+1) CHANNEL_DEF ulong * COUNT(channelColumns+1) TOP; CHANNEL_DEF ulong * COUNT(channelColumns+1) BOT; CHANNEL_DEF ulong * COUNT(channelNets+1) FIRST; CHANNEL_DEF ulong * COUNT(channelNets+1) LAST; CHANNEL_DEF ulong * COUNT(channelColumns+1) DENSITY; CHANNEL_DEF ulong * COUNT(channelNets+1) CROSSING; CHANNEL_DEF ulong ASSUMECONST channelNets; CHANNEL_DEF ulong ASSUMECONST channelColumns; CHANNEL_DEF ulong ASSUMECONST channelTracks; CHANNEL_DEF ulong channelTracksCopy; CHANNEL_DEF ulong channelDensity; CHANNEL_DEF ulong channelDensityColumn; CHANNEL_DEF char * NTS channelFile; /* * * Prototypes. * */ #if 1 void BuildChannel(void); void DimensionChannel(void); void DescribeChannel(void); void DensityChannel(void); #else /* CHANNEL_CODE */ extern void BuildChannel(void); extern void DimensionChannel(void); `extern void DescribeChannel(void); extern void DensityChannel(void); #endif /* CHANNEL_CODE */ #endif /* CHANNEL_H */
12.209524
52
0.725429
1a67e70f358140442ef1577ef9de9232454c2b25
647
kt
Kotlin
app/src/main/kotlin/ca/warp7/rt/ext/formulas/function/FormulaUtils.kt
yuliu2016/New-Restructured-Tables
c90bb67c9c79ca7f817f1a352e382b94eed31f6a
[ "MIT" ]
null
null
null
app/src/main/kotlin/ca/warp7/rt/ext/formulas/function/FormulaUtils.kt
yuliu2016/New-Restructured-Tables
c90bb67c9c79ca7f817f1a352e382b94eed31f6a
[ "MIT" ]
null
null
null
app/src/main/kotlin/ca/warp7/rt/ext/formulas/function/FormulaUtils.kt
yuliu2016/New-Restructured-Tables
c90bb67c9c79ca7f817f1a352e382b94eed31f6a
[ "MIT" ]
null
null
null
package ca.warp7.rt.ext.formulas.function import ca.warp7.rt.ext.formulas.token.Ch import ca.warp7.rt.ext.formulas.token.Name import ca.warp7.rt.ext.formulas.token.tokenize import ca.warp7.rt.ext.formulas.split fun def(rawExpr: String): Pair<String, Formula> { val expr = rawExpr.tokenize() val funcName = (expr[0] as Name).name val end = expr.indexOf(Ch(')')) val funcVars = expr.slice(2 until end) .split(Ch(',')) .map { it[0] as Name } return funcName to ExpressionFormula(expr.slice((end + 2) until expr.size), funcVars) } fun main() { println(def("max(a, b): a*(a>b | a=b) + b*(b>a)")) }
26.958333
89
0.650696
596b02dfab7222c4e72a5f2c89996222b7766dd6
620
h
C
inetsrv/iis/admin/iisuiobj/global.h
npocmaka/Windows-Server-2003
5c6fe3db626b63a384230a1aa6b92ac416b0765f
[ "Unlicense" ]
17
2020-11-13T13:42:52.000Z
2021-09-16T09:13:13.000Z
inetsrv/iis/admin/iisuiobj/global.h
sancho1952007/Windows-Server-2003
5c6fe3db626b63a384230a1aa6b92ac416b0765f
[ "Unlicense" ]
2
2020-10-19T08:02:06.000Z
2020-10-19T08:23:18.000Z
inetsrv/iis/admin/iisuiobj/global.h
sancho1952007/Windows-Server-2003
5c6fe3db626b63a384230a1aa6b92ac416b0765f
[ "Unlicense" ]
14
2020-11-14T09:43:20.000Z
2021-08-28T08:59:57.000Z
#include "stdafx.h" #ifndef _ALL_GLOBAL_H #define _ALL_GLOBAL_H // Connection info typedef struct tagCONNECTION_INFO { BOOL IsLocal; LPCTSTR pszMachineName; LPCTSTR pszUserName; LPCTSTR pszUserPasswordEncrypted; DWORD cbUserPasswordEncrypted; } CONNECTION_INFO, *PCONNECTION_INFO; // used to pass info to a common dlgproc typedef struct tagCOMMONDLGPARAM { CONNECTION_INFO ConnectionInfo; LPCTSTR pszMetabasePath; LPCTSTR pszKeyType; DWORD dwImportFlags; DWORD dwExportFlags; } COMMONDLGPARAM, *PCOMMONDLGPARAM; #endif // _ALL_GLOBAL_H
22.142857
41
0.722581
5f2d5740b231a821d525d223516ad839ce4ddc4a
818
tsx
TypeScript
src/bootstrap-icons/bootstrap-reboot.tsx
alexzimakov/react-draft-ui
0acf0ca908c10c1988b8ad088bdced3159ecc33c
[ "MIT" ]
null
null
null
src/bootstrap-icons/bootstrap-reboot.tsx
alexzimakov/react-draft-ui
0acf0ca908c10c1988b8ad088bdced3159ecc33c
[ "MIT" ]
null
null
null
src/bootstrap-icons/bootstrap-reboot.tsx
alexzimakov/react-draft-ui
0acf0ca908c10c1988b8ad088bdced3159ecc33c
[ "MIT" ]
null
null
null
/** * This file auto-generated with the `scripts/bootstrap-icons.js` script. */ import { Icon } from '../components/svg-icon'; // https://github.com/twbs/icons/blob/main/icons/bootstrap-reboot.svg export const bootstrapReboot: Icon = { name: 'bootstrap-reboot', width: 16, height: 16, viewBox: '0 0 16 16', children: ( <> <path d="M1.161 8a6.84 6.84 0 1 0 6.842-6.84.58.58 0 1 1 0-1.16 8 8 0 1 1-6.556 3.412l-.663-.577a.58.58 0 0 1 .227-.997l2.52-.69a.58.58 0 0 1 .728.633l-.332 2.592a.58.58 0 0 1-.956.364l-.643-.56A6.812 6.812 0 0 0 1.16 8z" /> <path d="M6.641 11.671V8.843h1.57l1.498 2.828h1.314L9.377 8.665c.897-.3 1.427-1.106 1.427-2.1 0-1.37-.943-2.246-2.456-2.246H5.5v7.352h1.141zm0-3.75V5.277h1.57c.881 0 1.416.499 1.416 1.32 0 .84-.504 1.324-1.386 1.324h-1.6z" /> </> ), };
43.052632
231
0.634474
7bb5ff5371991c7b238e01c7df28f62433923e41
989
rb
Ruby
lib/logic.rb
Wusinho/Tic-Tac-Toe
02e73f3dd1be0e56b18d8963b313846d563d7b93
[ "MIT" ]
null
null
null
lib/logic.rb
Wusinho/Tic-Tac-Toe
02e73f3dd1be0e56b18d8963b313846d563d7b93
[ "MIT" ]
6
2020-12-07T16:53:18.000Z
2020-12-15T14:25:14.000Z
lib/logic.rb
Wusinho/Tic-Tac-Toe
02e73f3dd1be0e56b18d8963b313846d563d7b93
[ "MIT" ]
null
null
null
# rubocop:disable Metrics/AbcSize, Metrics/CyclomaticComplexity, Metrics/PerceivedComplexity, Layout/LineLength class Analize def conditions(arr, player, sim, checkout) if (arr[0] == sim and arr[1] == sim and arr[2] == sim) || (arr[3] == sim and arr[4] == sim and arr[5] == sim) || (arr[6] == sim and arr[7] == sim and arr[8] == sim) checkout.clear ">>#{player} WINS<<" elsif (arr[0] == sim and arr[3] == sim and arr[6] == sim) || (arr[1] == sim and arr[4] == sim and arr[7] == sim) || (arr[2] == sim and arr[5] == sim and arr[8] == sim) checkout.clear ">>#{player} WINS<<" elsif (arr[0] == sim and arr[4] == sim and arr[8] == sim) || (arr[2] == sim and arr[4] == sim and arr[6] == sim) checkout.clear ">>#{player} WINS<<" elsif arr.count { |a| a == 'X' } == 5 checkout.clear ">>IT'S A DRAW<<" end end end # rubocop:enable Metrics/AbcSize, Metrics/CyclomaticComplexity, Metrics/PerceivedComplexity, Layout/LineLength
49.45
171
0.588473
9be3a2e20817e1a448069c2304cbf6424e442f9b
3,795
js
JavaScript
api-server.js
ajay1133/twitter-latest-user-tweets
fe59ef3a5e063fa7265cdb2ea202aa70c7b87ece
[ "MIT" ]
null
null
null
api-server.js
ajay1133/twitter-latest-user-tweets
fe59ef3a5e063fa7265cdb2ea202aa70c7b87ece
[ "MIT" ]
null
null
null
api-server.js
ajay1133/twitter-latest-user-tweets
fe59ef3a5e063fa7265cdb2ea202aa70c7b87ece
[ "MIT" ]
null
null
null
const express = require("express"); const cors = require("cors"); const morgan = require("morgan"); const helmet = require("helmet"); const jwt = require("express-jwt"); const jwksRsa = require("jwks-rsa"); const axios = require("axios"); const authConfig = require("./src/auth_config.json"); const config = require("./config/config.json"); const app = express(); const port = process.env.API_PORT || 3001; const appPort = process.env.SERVER_PORT || 3000; const appOrigin = authConfig.appOrigin || `http://localhost:${appPort}`; const connection = require("./server/utils/connection.js"); const processTweets = require("./server/controllers/processTweets.js"); const searchTweets = require("./server/controllers/searchTweets.js"); if ( !authConfig.domain || !authConfig.audience || authConfig.audience === "YOUR_API_IDENTIFIER" ) { console.log( "Exiting: Please make sure that auth_config.json is in place and populated with valid domain and audience values" ); process.exit(); } app.use(morgan("dev")); app.use(helmet()); app.use(cors({ origin: appOrigin })); // Set up db connection (async () => { const useDb = await new Promise((resolve, reject) => { connection.connect((err) => { if (err) { resolve({ 'error': true }); } return connection.query('USE ??', [config.db_database], (err, result) => { if (err) { return resolve({ 'error': true }); } return resolve(result); }); }); }); if (useDb.error) { return console.error('Unable to establish MySQL connection'); } else { console.log('MYSQL connection established successfully'); } })(); const checkJwt = jwt({ secret: jwksRsa.expressJwtSecret({ cache: true, rateLimit: true, jwksRequestsPerMinute: 5, jwksUri: `https://${authConfig.domain}/.well-known/jwks.json`, }), audience: authConfig.audience, issuer: `https://${authConfig.domain}/`, algorithms: ["RS256"], }); const authTwitter = async (req, res, next) => { if (!req.user) { throw new Error('Invalid User'); } const subList = req.user.sub && typeof req.user.sub === 'string' ? req.user.sub.split('|') : []; req.user.user_id = subList.length > 1 ? subList[1] : null; if (!req.user.user_id) { throw new Error('Invalid User Id'); } const url = `https://${authConfig.domain}/oauth/token`; try { const token = process.env.AUTH0_MANAGEMENT_API_TOKEN; const postData = { client_id: authConfig.auth0_management_clientId, client_secret: authConfig.auth0_management_clientSecret, audience: `https://${authConfig.domain}/api/v2/`, grant_type: "client_credentials" }; const config = { headers: { "Content-type": "application/json", "Authorization": `Bearer ${token}` } }; const result = await axios.post(url, postData, config); if (!(result && result.data && result.data.access_token)) { return; } req.user.access_token = result.data.access_token; next(); } catch (e) { console.log(e); } }; // Routes app.get("/api/test-server", (req, res) => { res.send({ msg: `API Server listening on port ${port}`, }); }); // Search Tweets app.get("/api/search-tweets", searchTweets); // Health check jwt app.get("/api/test-auth0-token", checkJwt, (req, res) => { res.send({ msg: "Your auth0 access token was successfully validated!", }); }); // Health check twitter middleware authentication app.get("/api/test-twitter-token", checkJwt, authTwitter, (req, res) => { res.send({ msg: "Your twitter access token was successfully validated!", }); }); // Process tweets app.get("/api/process-tweets", checkJwt, authTwitter, processTweets); app.listen(port, () => console.log(`API Server listening on port ${port}`));
29.648438
117
0.646377
74de02f250d951f89b9c475eb70762b8bfbecbd5
1,448
js
JavaScript
client/src/components/Tickets/NewTicket/NewTicketForm/NewTicketForm.js
toniyanchev/CastleBet
1d6628b69aede1fc2aa15a8fd5d45629e53fe695
[ "MIT" ]
null
null
null
client/src/components/Tickets/NewTicket/NewTicketForm/NewTicketForm.js
toniyanchev/CastleBet
1d6628b69aede1fc2aa15a8fd5d45629e53fe695
[ "MIT" ]
null
null
null
client/src/components/Tickets/NewTicket/NewTicketForm/NewTicketForm.js
toniyanchev/CastleBet
1d6628b69aede1fc2aa15a8fd5d45629e53fe695
[ "MIT" ]
null
null
null
import React, { useState, useContext } from "react"; import postFetch from "../../../../fetches/postFetch"; import { UserContext } from "../../../../contexts/User/UserContext"; import Button from "../../../UI/Button/Button"; import "./NewTicketForm.css"; const CREATE_TICKET = `${process.env.REACT_APP_API}/ticket/create`; const NewTicketForm = (props) => { const { created } = props; const userData = useContext(UserContext); const [title, setTitle] = useState(null); const [message, setMessage] = useState(null); const createTicket = () => { const req = { userId: userData.user.id, title: title, content: message, }; postFetch(CREATE_TICKET, req, userData.token).then((data) => data.httpStatus === 200 ? created() : window.alert("Could not create!") ); }; return ( <div className="NewTicketFormWrapper"> <input placeholder="Ticket title" className="NewTicketFormTitle" value={title} onChange={(e) => setTitle(e.target.value)} /> <textarea placeholder="Message" className="NewTicketFormMessage" value={message} onChange={(e) => setMessage(e.target.value)} /> <Button clickHandler={() => createTicket()} width={80} color={"green"} textColor={"white"} content={"CREATE TICKET"} margin /> </div> ); }; export default NewTicketForm;
26.814815
77
0.599448
b3ff1f76bdb7fa2ec9e6afb478da595d1fc64787
711
rb
Ruby
spec/spec_helper.rb
LoopLabsInc/finale
ab351bac07187c34e30731a6944af893c507f29f
[ "MIT" ]
null
null
null
spec/spec_helper.rb
LoopLabsInc/finale
ab351bac07187c34e30731a6944af893c507f29f
[ "MIT" ]
null
null
null
spec/spec_helper.rb
LoopLabsInc/finale
ab351bac07187c34e30731a6944af893c507f29f
[ "MIT" ]
null
null
null
require 'simplecov' SimpleCov.start do add_filter do |source_file| if (source_file.filename.match? 'client_mock.rb') false else source_file.filename.match? '/spec/' end end enable_coverage :branch end require 'bundler/setup' require 'factory_bot' require 'webmock/rspec' require 'pry' require 'finale' RSpec.configure do |config| config.include FactoryBot::Syntax::Methods FactoryBot.find_definitions config.before(:each) do login_headers = { 'Set-Cookie' => 'JSESSIONID=some_session_id' } login_response = build(:finale_login_response) stub_request(:post, /.*\/auth/).to_return(status: 200, body: login_response.to_json, headers: login_headers) end end
22.21875
112
0.728551
41be4b620bb167072b436479b3e21b752e31125f
300,729
sql
SQL
app/Database/SQL/mail_populate.sql
rocknatt/safe-drone-delivery.com
6dfb8f585ab460aab907769a244625310d784317
[ "MIT" ]
null
null
null
app/Database/SQL/mail_populate.sql
rocknatt/safe-drone-delivery.com
6dfb8f585ab460aab907769a244625310d784317
[ "MIT" ]
null
null
null
app/Database/SQL/mail_populate.sql
rocknatt/safe-drone-delivery.com
6dfb8f585ab460aab907769a244625310d784317
[ "MIT" ]
null
null
null
INSERT INTO `mail` (`id`, `mail_classement_id`, `old_mail_classement_id`, `created_at`, `date_sent`, `sender_email`, `dest_email`, `email_owner`, `object`, `cc`, `cci`, `text_html`, `text_plain`, `remote_id`, `remote_mail_box_name`, `uniq_id`, `type`, `is_read`, `is_answerd`, `is_deleted`, `is_draft`, `is_favorite`, `is_needing_accused`, `mailing_stat`) VALUES (1, 1, NULL, '2019-03-18 11:57:43', NULL, '\"cPanel on specificom.mg\" <cpanel@specificom.mg>', 'contact@specificom.mg', 'contact@specificom.mg', '[specificom.mg] Email configuration settings for “contact@specificom.mg”.', NULL, NULL, 0x789ced5b5d4fe33a1abe3fd2f90fdea2d5012d699b96763aa5548b986116094a3565ae919bb8ad759238c776f898abf91b2bed4a5c1e76a5bddabb7347ffc9fc927ded7c3469d3524a1960453a40633bf6fbe1f7793fc669f5997d8d84bc76c85ea18fad5f879c059edddc38dc519f42fbe79f105c2d9b5ec4a35ccc87d46b96777d6cdbd41bc2b7f90fea8725ee3b0459c471a247f60a66b9a01b848f2ddd00f77dc66dc2f5d74b6acb911a55fe73215e57b735cb080792eda6e70fd7508c4c35861d3ca735ecb11176e8d0db2b58c493844fcf991d3ccbc3522cd41be58483b017e49561c5c55746d80063fdab19d6664999c3eaf2ac4f5fcb8d52024b7335227438927b854a2de170c03c690cb04b9debe62f7f23ce0591d4c2a84302f2cb7672bfbdcf2976b605f6842108a7835dfd9ca05f49d3ac83082ce630dedca8eaeb3e793c9c91d5467f74317590c5bc011d061c4bca3c248894a07b81068ca3efdffe01bd125bf2afc227161d508bb94577f8fddb3f8beb66a15592f6da940b932db3539e623f45fb26861264d6fc2b544695b2fab38b26c062847b026d1cea6b3732b526aac048c11c6aa38d8f0df589bb8c3e9392b999118787f583cac1bd2696a5525b7e7ae3a7acfc3e40c843d69081554de521b487f42f0917b30f2eabeed92713a0306b0fa5379964f91dbe60fd7aadbc2a01e14c2bc2bef65c8f58385c7c45cdcd4eb4aa2667675a552779d7cf3f851f1d5d505b85165e809df31855cf312718a4ed6021f60a82580a733391c5a8a29f1bd9fc443fda8b9e2cb44f14581f38143c3b0afb50dcd92a8d2aa94952d3293aa2d538bbcce82fdd075064b8b651cf2a38e142886916b222cbdecd2044827483c1601725386726282639a0810f137b32c13a8e6d1a8826da01ef096d578618619b5d36014bd583ea870ffb78b3bc8da27fc5726d6b1785c1dc042acbe1f37ace988e9d4aa36fe1dd855c4492f1391910ce890d60e584fa423ef68813fe367c4e61c5eb1ccb50d29bdd59b32d9950ca90cc371c329009ffd514fdaa93ab1025db3bf135cac9288793eb6722aee70803a595545886f058425a0e2382150d7908d12356c0096ae17e9f2349a5e2366aeb31eb5722053ac6d72a5aedf58e5b2535ac5dca8c3ed3fb8371190e0c67a412a47e76dc8b9e488c6196804d4e206e0153b4c7b75bd3ddad12e86986ea18264316c39b695bd6ad53a1b092aa837d419a28fe96083cc2d7a60a03a67629b484013352309ba7bd8c894c02ec707c3e2e2f02c954a432d95b6993dcb06d3bb5b31a2a8cd758e0f41d50532cec7d00832fe0c63dec9242bbc35c647ffff6f74052870a2c49c0ef6e9a0bfddeea845ce0b984c47ab3b1c4e89263df90e44a16dab9c1ec5cf2e606914f27d814335de0e0126600e06712d9041e11823cad38f3968f654984857d62784c82a2d117ad61f21529bb48d187ec0036beeb4ba29a5c22041e4290478a2f54ca471e500b373dc22f3402a9bf014760666070f287897b8a8ef4062eb4559a56ccecd945114b2b701675676a1e090099da4d468d9a078024d030e4b06a7c13b1400a0a2af59817fe4a462b6fd544462de589a2b6729e1f995cb1ff005c3f574b85eb51cfa11eb93fd26c3934e6c5a6c277f0751385cf1a7d07dcca343119fab4130ddb0aed8cab395275138f408815ee5db46f59f00d7539930cb038510df5a88444860ab7d03e3ad9efc66ea80bec34d1fbf7d556c9a1f772f14c5c761988fb7400db89249ca16a2e6fddd36e759ab7daa3796b950267be553d182b9e0d3f4e03396439f82140523f123f808e4fec0d3f9e1f3f7ad4f5c127ea644d87ad903d4cc0a3dd3b399b428a9dfafdd6f42aad05f88580d5db2b5492eda88207b16a11617d597ac2579cdf4e1975cfc58ed3015acd49aaae9acec3e047a1fd3652b888c04f288d224e7e0b28e433389023081da8a58ba9c5fcdc2259fe418a8346956f6413f4e9f9270d0f4af4279200cb3cff7fcbf60775abba535998eda753d928b1b7c900078e8cee2e31f7f2d3db1797e60fac418398f3a490a4f9d56a75bd697e4b59bbde4436e40a1de6a5b233082330c7eef877c98950f06fe8545f3db1c44cf2b3cedf896793493e02d9882ec6804d1a3cd5dfdeec9c76502ae3df245b5bad52de4a0b537fb5bcec3bd92adc5998f2bf9505f2e2a2acca9faf2a30878ed75a14c8b2f30c65813904e416065e735d20cbe77356061652725f6c9f4f8fa6e92db27ffeca80b9b35c65e05596064cb3fcd24a033fb0369035db672b0d2c22e383028d37047925b5814afdad34b0ccf584a581d95c663f93e31f89cf61ee6f1f32aed05e81a2d2e46bab1dc4f7714bba7fd2d7f255d33e2abaac4f1d129e1d4303f8aa0f8c05429d2b9223444f7bba81764760cf25dac536fc623682940c0cc03aedddfd471b4211fb3e7c55634f20b191987ae858e5759b66b9d8f8cb16a202610901fa88d848322447d010c58f45a0a7e4b7c323178fd3f73d527df034eb389ef2520fb9a48fceae7ae62b0d1639e7dd622c55fdb569efa11b52e72b2bea3e2e6bd4f595497d5bfef4a1bc32d29f785a3d65d4940f410749ce822e582010018f42bc0b763dbe45e31be460c86a54b5818489ae87803deae954170106308b4603a117db9ca88c283fb89cb883a3c419dcfdfbeec6aced14cd4abd68961bc5f795bb9bbb3fb6d105c52acf02895ea8684d0db37499467523016b47bd404631a3c1c86ae66af8b112fb028e9c13b0590e3f594e3f3057d978075272d40b292fb43f7492631cd4833005c4a3c95f495ce0b2558005880a34444af2a21ac468fc5fa9b26510961c7a2989166d2920f4b9fb2347506b174ffa3a06aa08c405d822ae3ada057b48b19dda40113fa04957d59bc6ff925cb370826d3cc4907d73b479f269ab98377b3e034fa2f3909515d4359761656580fd9cf683f1ad729060f501f728ccaf4b48a0c4a3ced9c7cf9d8f67a8fbf9741b7d3ad84667a75dd8fc0f12c39c9e9525720cbbf75ac8f1efaeda83c3f1ad37bee5b009ad098a801e9dc0b329321b6a32812a65f3bd4208d36cd6de3577aae8cbd94171427ae88197d1e332d75ae3a5d69f0c0319c65a4f51b66275750047c6b73e0368fdaa2a494a442931aad70d5c88977e0b26c1c03a28783981004cf1c833b393e06fb539d6736cf9871f9b5e41f60f97755e60bd70f40b7ec561f6eda129f88b52bb65dee8599e8d6475ea0e91e0162c4eeda6b2eb73f8725e6d98b5c6bb77336fe744bb2af5a24ef22a924ed3c3b14dfddf20714f01d883c7adee835e96f01f1bea4e45aad19b40519c3ac98c535e45799303e65feb4ac2ddeddd8d760e56578576dbe8c8b38aad65816ead1b73892d77bf092d36993994e4ac3cbb5276e638676d95f4b0ff012f3428ac, 0x789cd554cd4edb4010be23f10e734cda60e21028c9a9284528527e2c1c1e60590fce4ade5db3bb4e05275ea3522bf5485aa9a7deb8c56fc29374d60e69aa82d4aaa7264a64edcc7ef3cdf7cdf854329101d7ea4aa485614e6805169d132ab570a50d3cde7da4a863dcbdb539727125b896814c1fef3e05bb3bfe3bf608834ca0723066aa6019c46b84dd9dbd973ffe6e8cbc3008713cda9f8de2cd3d6818a43292a9a45c367de2444b481eef3e144e64c232878581be0f3c4baea2a51d240839b316ebd48bea2ede428620b7a349410ac8dca13f92682d4bd1080c6a8666e18b51778651871592172df8ad22c02b188e4f2288b4717de8f50e9e4ea36974b0393ddc86b574f807b0f178f604db3daa007ca1560d8cae8e1bbc2e04a9c90a3727ba825776565d44cc3059de3b831694567b24383426d3096ce9dcc0e6ff2a75d87d4eea306cff9bd49da3bf57fa0402a92f4586f54ec1153d568b5450f7ef859b8398c6d58188e65ae1be8858427f3a01728116884fe3d537f04b15b03ca7479f3bd605692f148cfc8236c27670fcba09c2027364c91c13701adc9c0ed69a565c061b8961a10b0b681d89bbd037e512cacf903132c17b8fb5df0ab44984aa1d27b73417eb448ab28466875a1846b0fa0ae16137083b4741d83e0e7a1d583db460219877db92da82a34fe239539851102c01ae63845d71bb50e8876f8e867ef06e1283500b3454a14afeb56222acb78e04a73beb06d47a4ce7e5770af4a9a04bd516a92071966c5d3d54e546948932cf1847e95f54d4b3afb1d5f0ba06919497c4b5fc42cb42b06396b09459ce0c34c667cd0dd836bb17b1bce0e490119745b9f4e34266164609bae8978a380f27b3d3f3c9e90ca2f3690bce062d984da3d5435585a4b8b1aebc97beefb45caa7269a871fed355e299152a11101e8364c642a71df6bc6361d83f7cd3ef1ec0c56c50519e90dae532d764f6ad5f459fb4054483ac250df175514f0e8faaf9d1f98d11e9dcad9635328fbca32d182a1efc004cc9128c, 1, 'INBOX', '<1552910263.SYMfgT6RJ3OBE8ai@golf.cloudns.io>', 'html', 1, 0, 0, 0, 0, 0, 'EDIT'), (2, 1, NULL, '2019-07-08 15:43:40', NULL, 'Nantenaina Fahendrena <fahernatt@gmail.com>', 'contact@specificom.mg', 'contact@specificom.mg', 'Test de mail', NULL, NULL, 0x789c4d4cbb0dc23014ec91d8e1943a82051c1730498c0fe92163c3e3392b45cc91c570228a34f7d7b92813a2e8d025d3cebb66fda5e447a9dabbf3eab6e8ca9b801f43cdb0955f6d8069f9aadc858a7725d28850c408e532378120cca7fd49d12863e293d97a17d4ffbb0d8f871fafc5319a, 0x789c158cc10980301004ff823d6c0162115a49a22b9c684ecfc496c43ad298e76b8781d941d3aac5bab619390978659484fcefe11e777d4d16a1e12cc41610553261ac8f03a230f5deaacd1236ee4cd9af3e32d91ea4, 2, 'INBOX', '<CANt0zhdrM1LOiqxSwHACRsuNHipPX3guLEya9X6WNFnGYMEtoQ@mail.gmail.com>', 'html', 1, 0, 0, 0, 0, 0, 'EDIT'), (3, 1, NULL, '2019-07-20 11:29:25', NULL, 'Irina Rafanomezantsoa <peacefulirina@gmail.com>', 'contact@specificom.mg, thierry@specificom.mg', 'contact@specificom.mg', 'Fwd: Votre reçu de publicités Facebook (Identifiant du compte : 598576780217647)', NULL, NULL, 0x789ced5ccb72dbc815dda72affd083895d9e145f00dfa4c4195a921dd5e8158b76a215ab0134c9b6f072774394bcca76b6d96535da4d5459e403b213ff245f904fc86dbc04be24ca1225ca96586401e8f7ed73cfbd7dd1ad35939e2093b27505fbc2555a07db6b7978d45ad3596b4da61916e67c5de9db985add4fbe2b88122604852cc194f12c58c0a35636f9436f5c36c4cc2426b209e7b84f5092261bd92497e70db4c605739dfe78559c3826610eb68992eee21b6c10dd758f51dbe4a843b0bd960f4bb7a01a0f3be9bc2f2dd15cc368c0486f5d91950ab781cd13c204e524ebb88c78d6d94fdcf73c97895c2faa3967b8b6d25a2cdf5a1eb75ef6a195bc6c3b90db2616a48138b673482ba08f3eb5e4855a476aa1a196648e435fff480cd1401f5cc1086264f49b8f4c823c5fb7a841c5e882a36498afb64de208daa3d811c8f41134ea89406ae57aad5cad546b054dad564ad51f64d51db781b61975307a877bd8716df219ca7117a359b2f008b4d2f32d2a4bfc14883d1cfc9c8464b4121e5740915f1f1ef82134b838b3886c83f5a9d328343d6c9ad4e9370a4a0a357adf702d17eebeef057f002b81758b20dd05b4c073c86d10cb02b11a5038b98f2a0beeb145fbceba62807c0854494d68b45b2dd5ebd572ad5aac827cd442ad5427019c82da95b873612b59e883853d4e1af185ec068c469837d466b8d0a62392fa7a709fed619b5a678d3f11eb84086a60b4477c92496e333bbe414d8cde320cc8ce083c706d9c019499d8c119cc28b6321c3b3ccb09a3bda68e8de33e737dc76c5c23a32135c5605d510b8517370b6ce1c10f08ed0fc4baa25d15b2a843b2e1f38656f04ea1765736061350545a97e76b79610206820ac62b51c7b2ceaa4f85ea5aa1f646a90138e2713703e972fa99443903e485f88bf46eaaf1582ee5a4419372cfc2670ddd728de36690de50cbb2becb73f909eb08be0f2be4541fc784525e44c851d78a5aa20e16e9012e4fa23b9b9a660af751dd45ad996eaa104835268781101e6fe4f3c3e1708cebf2d8e4799d5a50b2df0dd4201f2a033604751d9eff112ed62758e925b6bda638056dd2d4b25aa9d78b35b552a8aab562b654d16a856225cad115671e592f0677e96ad74f281976e366c7b5384249512fd7ebb5a620a7226b12c36558166c38ae035905d010012977750b3bc70ab0adb5ae484aef11c680365a6bd4ee23ce8cab8173011518b9d3d35c4f374c27e71091679023e70dbcfc49317f7690677947b776d927f5e391ff73ce73fa4a7a26e29995d76370000e6c49128db17607988e81f2eb9cbce6125835452575ef744c0b8a9a54b81bf1f22e36d7b3edecab3ddf1e5d3057e6b8c65627208894798236745708d76e70d7a22602d243df93b2fc28f7c01cf9601eee8ec1274ab75a6db64dab857d9b1adb83753099306d52474aa45ca99497ac0e30fef076180a44772df3ca770308caaf5a0a2f400d461706f6a8f02d50d8de3422225f7e960b65eba05c52b5dce1e48093f6905a91cd05ed36034fdcc05636306a0de17a11a0ca01f7ddda715c784ac6a7a1aed6abb8b8e46950674c83d2dadddfebb4f73ae84d7ba3f3fedde89719284db9de316cb44a55d796dbdf6265567f6f987dea584aab9c29142ecfff7079feeafde1e60fb13b3797a516c0d314860acf008a017430fae5ddf6fee6d642c0514b6a4d5b763f4b5f0a9c4a7a513d3a47854aa3584059e0a68904b50609d703eb968cf58cb0f908eb1c1d6ca1cd2d74f06e7ff3fd76e72b00dac18c78ccbdc2e9d900dec20076b6df48788516b0ddd9dedffb0a20b639baf088c3094f827f9832026b07cfa71cc1a456539c967b3692cb06d9d1d65ec061ededadddadbdaf81c43e508eff58d5caeab3217c2014edbddf05676b5fe2083cf53770bdb5b7b11584990415b28f47ae8f0cec209f132406f20d408f30e2180439bead1386848b7ad431211158c018c89004721d74e6fa0c198c9854407926c78c05b1892372ca2d43585e9ee54bed12f52b7f366bac1786b0266255cd38841f2dfee4b714840a9fbe5a54768e8e3676b63e14b505f462aea6ac7a4c61c9ed346f8856c5e94002b343592ba5b949b0a326b12e3f33c84c696db4770fda6ff7b612a33bc1856169f92b232a415c332ccd644b4ba0c0661c6a03604bf08511b7590daf96b86dea64a3b8a07ca1d44c1b93408033c50f947af87ea7d3ee1c4e4ec0a30f6886e99b1ed3c4a893d0ce9711d00c3b1ce0efe15e155ec3b554efc20a673298f96076615c214b73bc93f805d084e9bb9268c406b735b0676060fb83cfd5bf6ef4dbaf7fde0b0c6cb4a20cde70c8b70297ffba3c87b19df8e0f27330edbb98e970f9dac28ef1dde5f9e57f1671ec27a43c3dea2741438fe62d4c2b64f07ab958b83caf14cb917330eddda45926ac5c9ba8dc71998dad04485a6c5494d6b6ed31c2b97ced96763e56572613342623133335a9188674efb8c678a68d0568e380d1535803703eba40dfa1fffdfaf77fc7df67de784cde504101d4aafacc1bb7e10d6d01de98c7240fb4c479624b98301833770dd3d9efb477648062a78de6ad671e1d4cd3cbb149529839b6f21dc0b4f20bfa5b39fc776ff49194ee69ebd51718df675d5b48d7bea99d4bd75a9ec9d06c29d99733b59ba8a83c6a7436eaa816751069494f531be50454cdc32d83c1798055decd98ea6bd7240292ef773feabcce855b062762d5b77e6333edb53e54243ad8de7d7d47a5c496b9a53e05cdcac4e64f4dd2fe986e28ad5dc20c9a99b7c5fc298e68e7bf7ffbc7e8e2934f3d82ae7637a436374c0e750ee3d66e7ac732a026515a8b58c2089fab10af4cbab2a2f4630304faa40b8ddff30ef88775e6c60eb6547ad55e2d3275693367d40dc354631bc8b0497d2ed7c2cd71eb7c9d23937661c23342cde1800a92958321209c21c3de3738dbe973364ba0a4093f3192fc3544a5a688aaacc98fd27a0b9e0161e8c4e5e95371093fe1991c357dae62193cb5a2707910dfe41199a264544a757d0653144b25a356f89699e261a67e9569233e1ff9c1a54cee9a0b8fd4cae33716110bb2c622cbd727bfe61c3b23b8883a4e649a1b064d1d4aaacf3e94549f133a7b18ef3805161cfc8d63a9223bb7410c8a0817c87792d3eaf220b90d8af2c92739142c08e47ad521c8c31cb1d185e73a2683a4430ac6cae7089f90cf90832328c003a50fdeec5a64cc9065c2cc9eebcbec37f38aee73e82de77946b8eb3383f0fcfd6ab7ab0be280eec0d82c582360308b523372e843aa9fd8e79ca27e689ae58856951023d7891321a0e17bf69f3cccb03dfaa780a908a0e0cac3f9e1cb39000543242bbb22a5171c018c4f018e6df0cdc933f3f1aa2b83b61d2397416d218f94cb9ea00dd7b67d878a337418fed3810c52affe25c05ff05906b0e8582e3ac00cca6fb451bd54d0ca4ba6adbb9d0a8f7b1492f1d4a1db15818ee56253da52e358b6ebd1536285994ee161b7478965f2f517d5d72f34cd80ef8b621b7e07be3ff406d9639f9e74bbf2a9b601bf2249a7a6ed778f8bd972f5b84c937427493f1e16cb74a80ebcee201b94af6e4e6fc68c6608786cecd4fcfc25bb0c15fdfe77f2135fff1fb49251ca, 0x789ccd564b6ee34610dd13e01d6a8060e004b244ea2fc17686916483807e9028075e092db2edf40cc9e6f4c71acf2a5b6fb3cb2ad9254216394076c39be4043942aaf5b3c6f1642d35243455c5aa57d5afab6aecdb966d9dee3f70c9c592888846905029c91d85bdccb6ba14da704942bae0fc1d789184809204ce48744f8562929ea65cd02c7e7823759671a18ab75be562c8930b3440146d83244911ca0ebcd52c361bb705aed376abb635d58bb734546db8e64a501034ff4d434421d38b98854ce52bf9e4ffc48f68aad82d23a9824803bac81422b4ad5aab596bd41b4da7ec36ead5c6d7b615f036f882a50426e496a43ca11ff12dc9099c65140ddeea9819f19bbb8420a80ddac375f68352996c974acbe5f2b3a84a2492a5058b6396decda979bbb4fe9d9350319ecad2b7b8397f86e8b5fac0a2f3b25b73ebad56a5e9d69d86dbac9c56ebe5a653a9a374ae1e327a5e797d68eafc9ed1e57ce74a91454c1124e067b2cbd3cb219e0c7592af04371abb24c17f7374b4216ed6245f8524634ac7040fddb606a361e00d03b8f43ac16c923f1a9d5ac171e02b38994dbb18d0387f9cf8a36ecf48ea876ccb7f05a7deae38700a6ef599c06da200097333ee41b707e3c9a83bf3036362fc02090d8cc0bf349a1b1c5ee08f8646bb9baf329a4a2af7e4250c291dd14c33093185c681e3a2b173d31bae3d7a7e6fd01bae5d5e3349be69946bae6d0d67030c67643430d84bdcf7869d4d68fd9b9b4ebf775d299ba78e37187b57c39e49d8e374d60fbc600adb5ced622026d7c8814f7fc09520f71a71492d6040c402b7dfc5240d5fc1a7bf8c394c52bd52b32d3fc904160473dcf8e73acd2f581b0bf601422265be8257f0cf2f3ffdb9fb6ecdb90eb80df799b9f2d65c300abcbe09b0efc12e0ca86d853bf1d3b35907cc5682a472432304f325e21d11cd0f00cf238af48891eb032a4256b0adfedf3ffe9cafde6b96517822de01efae306e2ae09ecbc3ea781ce12524c5ce314787174708e89a33612ee0a6bb98821853751c38bfcc8be346b7591d1a32a052814ef7d303d18a275821de6b5a8435b9cd5d4db1a51309026b244f2381a229432a6b09e49e7e440d2432be21d711ac6b534c3fe37961a39d716df4f942d1140f152dc7786f088be8ff656ca1254b115f094b10d722a4b27451c491e3c920d1589b6ceb6e73c7d6be892049fe3b4e2508cd44c0cde4b1ad7d28047a6a52751c07b5a5bba44aa133c379d3f9f7cdffb02161e7d9d59402f869582c80a79499ab78da860e4f129d32f500d3cd405700f76900fb9e3c14f04cd398c398887705d37ca05575cad82ffe0574f256bc, 3, 'INBOX', '<CAFdDvqv_ETqpqzBjzf_GmVYAgtWRNy7pDUxNH-L+v3+tJd274A@mail.gmail.com>', 'html', 1, 0, 0, 0, 0, 0, 'EDIT'), (4, 1, NULL, '2019-08-08 12:44:04', NULL, '=?UTF-8?Q?Thierry=20Cl=C3=A9o=20ANDRIA?==?UTF-8?Q?NANTENA?= =?UTF-8?Q?INA?= <thierry@specificom.mg>', 'contact@specificom.mg', 'contact@specificom.mg', 'TR : PUB Site Web', NULL, NULL, 0x789c6d515d8f9b30107c3f29ff614bd5bc546008392e1f409b26911ae98e9e52aa6b9f22c718b00436676f9aa4bfbe102ea756ba176bbd3b33bbb31bbe5b7d5ba6bf1ed750625dc1e38f2ff79b255836214ffe929055ba829f5fd3877bf01c17524da5112894a41521ebc402ab446c66841c8f47e7e83b4a1724dd9253a7e575e497d0c67f984e86991587977ea7ba92267a43c59b4ea73db983729ac561cd914287b4f9f341fc8eaca592c825dae9b9e116b0fe1759c84f483ae61c5849b5e1181d30b7271690384481158fd32dcc3aaff05d208727be0f495f0849df6bafb2731c36f1ff98261edc0c6eda74b8d7add8e06628f7a699f705dbb6afe950d405d0aa9dc502a3d9abbf4a315a95ca20a1592d24a9a9a848a68eb25234db5144ca4a5eb72688370ac6ede37dca9b6817388d2c3e8cdddb6cccbc49e0de658cb9435a37731d95aae6977077b1771dc0345482c173c5232b6f17631bf187cf3cb739b5eb34a8952ce2b4145ceb332cab21a7ec807cae6091acb69b45b248d275b2d8248b90bc80df5466aa527af63ecf5dd7f7ad78a15118140c1ea8a405d72db905bf523f8e02cf1f413082bb890f93006cb8a4c6e079e0bab7e07a57e8badbcc0cb09ff0b3693813b960aa76eae2aa4afa1b5d2edd52fe02c26adfcb, 0x789c25cdbb0e82301886e1bd49efe19b584c0d0545228b5519186c8c873897a6e29f704aa983776fd0f17d97e77cdfe34ac1e1e16ace388bfa7a1a0bce841073de5ee4bcffe0d046ced87770c500a58f974a69a56fa55695569c291f680a647132bd699ce76c9164324d9025d8e429f20c02bfb5829488e33562c959d9196ab7087f63378dced293ecd02dbb66c6bfdb012a21, 5, 'INBOX', '<5d4c191418c5d@specificom.mg>', 'html', 1, 0, 0, 0, 0, 0, 'EDIT'), (5, 1, NULL, '2019-08-08 12:47:03', NULL, '=?UTF-8?Q?Thierry=20Cl=C3=A9o=20ANDRIA?==?UTF-8?Q?NANTENA?= =?UTF-8?Q?INA?= <thierry@specificom.mg>', 'irina@specificom.mg', 'contact@specificom.mg', 'Logo SPECIFICOM', 'contact@specificom.mg', NULL, 0x789c6d91c16e9b401086ef95fa0e53aae652c180b11ddb055a8a5dd5924dac94aaedc9dac0022b2d2c5926b5dd37ea73f4c50a268e72c865353bfabfff9f9df5de2c6fa2e4d76e0525551276df3f6fd6111826e20f37425c264bf8f935d96ec0b16c4834ab5b4142d54c22ae62038c92a859201e0e07ebe05a4a1798dce2b1f7727af8b134e919696594198177ce3b56b26efd175c9cf97c3ec0bd94b32cf02a4e0c7aa5c9ef1fc46fdf88544dbc26333935dc8074b8f906f123614f7e80b464bae5e43f506ece0cc0c0234192071b5528f8b65b45eb2febe866ebe1d0f67048ba53d929f09aaed018c0b3d3c326304db3ab3bafd7af3c5115c064976940abd3a77748953259aa96906595a8b1624262a60eb5542cdb33229696bcea86c509ba23e763def8fba9d5d4c5bbb13dc9c6a9334fafa777ae9b5d69bf5415bfda9f67bfa4b60daba1a593e4be9177af365bf1872f1cbb3976bb6a49abba08925270ad4f10c97f7f1584f1f2761dc6619cace2701d871e3eca5ef44c95547af136cf6ddb758d20d4245a12296c59cd0aae3bb8133fa1ef4753c71dc17404d73317665330e1dc1a83e3806d4fc0762ed255bf8805d030dba7b6e1a9c845aa2aab2a2eae382cfffc811df21f9ec9d543, 0x789cd3d5d5e5e5e2e50ac9c84c2d2aaa5470ce39bc325fc1d1cf25c8d3d1cfd12fc4d5cfd1d3cf9197cbb1a824b3b8243359c137312f313db588974bdbc8ccd0d848c1cc48c1dcc258c1c24c4157012c64a26068a8606060aa6060c8cbe59a9b989963a5500231dda1b8203539332d33393f572f371d642d0098232282, 6, 'INBOX', '<5d4c19c76baeb@specificom.mg>', 'html', 1, 0, 0, 0, 0, 0, 'EDIT'), (6, 1, NULL, '2019-08-14 20:38:02', NULL, 'MiaLi Ana <contact.mialiana@gmail.com>', 'contact@specificom.mg', 'contact@specificom.mg', 'Demande d\'informations pour création site web', NULL, NULL, 0x789c5550414ec3400cbc23f107ab489ca270401c10218756f480e0c20f9cacd3ba4dd69177377ca7d77e837c0c279150b8eccae399f1680ac70338d6d74d1b75536ec59f2469f673296c51ee9103fa08217124182f30485402691a7b4352d8634d95c8197a53418b50eb78c5c8e2c11963527d5395c1c90649473440cd137010d689d2b7c9a6ae6f2900fb46b49bd561761f24402ddef102518488ca4dc8e1fdfeeef1f905197a34dcd76279cccd4b377d4e3a644f9360dabb997c1caf15e981cc1753089cc3ce42591c487e49baf0fea530b327f33850c8ad9287a993b998370f1823f9389f5d5a518a56c28ab413758c2d75c6cb56785169b91a3f19e183e10bcf12e5efcafcdedefc02f370957a, 0x789c5550316ec3300cdc05e80fdcbc04defa8104cd50b44b7f405b74c2c4260d8972bfd335eff0c74adb53170a3cde1d4f3cab3cb4e6530c57e48262502a1bc1fa0b8b5a26d061f05a6a862bf6d4a93e6176018c087d5e5f68ac02c9199bea87ba133c2886a2f58e8e6437055c94f3c699c7eadd348f548065d03cedf2b2db2f5aa057497c40643118661e4a0b1f0d32cce8a0f4ea69dc4a74da9ea413b290b3f7796aeeebaba37c2337c45a0ab770f16c9e23862a47c8d4fcdbed2e6f2ebe5169637817403312db971c17c864fee1182e9a13e348938ffd5e317c31c227c3373ed534863ff3b574db, 7, 'INBOX', '<CACfe_6Zx8LF_h69rBPzVM_GhqZDW7C6BOCv-cKCAvzMUteVMog@mail.gmail.com>', 'html', 0, 0, 0, 0, 0, 0, 'EDIT'), (7, 1, NULL, '2019-09-05 09:19:58', NULL, 'Facebook <notification@facebookmail.com>', NULL, 'contact@specificom.mg', 'Confirmer l’adresse email pour votre Page Facebook', NULL, NULL, 0x789ce559dd72dbb815beef4cdf014bcf66763b92484994ac5fa75e3bdbec347692c6a9ebed7434200949b0418001a1bf7832d3d7e85d6efd1af19bf4497a00501425cbb1d3da9b762bdb34081c1c00e77cf8ce01d4fbe6f0e5c1c9d9ab67e8f9c9d10bf4eaed0f2f7e3a404ed9754feb07ae7b7872681bfc8a57452712f3942a2a3866c8759f1d3b7bbdb18a193c098ef67a8a2a46f67ec4210984b8e8b9f6bd171385d158a9a44cde4de8b4ef1c08ae0857e59345421c14dab7bea3c85cb95a5f1785632c53a2fa13352cb71ce4eef552b5005dbf8f494431c28c21cc23f45d8ce7e5198dd4b883fc9697ccbfbffcdd5f4386d3f46f151a0cd4654c79d65ef5bc6fd137344e845498ab0f4539296697114d1386179d8089f0e2364198e0ad82dd044711e523182999230f35f4b33b2552d110b3326674c43b4a24c52e774f8dc6a352f13da6d1e56775ae7ac7c120601777ceb71c08a5446ca67dd78440e5984624d7c90527b70952ce723928d35b24a301c80e1999dfee810f56281d17dca4472ed40f4240109179b3c20123dd18cb11e51d3c51e2c39681f4cb870c5182b3054a4349085f212b22531a920d8059459f35c396f9de58d4fd160e227a57a071b5b42ad70ae57aa1ec17ca8d42b979a9ad5f1e133a1a2b98ac8c3133aa67425e2cf55f0e611b9653fa9e74aa2d40c2cd2e9939cb80b78e9fcc3735d859152aea4595cd7f47a5bfa9b2b159d12c8ee16f1d634329be0c0513b2b353aded7aa4bdd19a5c6ecca8e75ae2e9b996e20211014e7455dfc9e0e5e53bdfeb3a28a2b2ef30251d148ccc487d6767683e409606962810322250ef01f711c6d20487d03b7fcfb49977b3c3fb8e45b78368d477488c291b184dce7226566319c6633849496759e8ea3125fc4585ae19dfe69d8d058738a66cd1794ed894687241c764424af96be9c524a411467f8008109192c26311e312105184392e6149312ba5101cca299174d80d7078319262c2a34eb6f8eeb6d59b8dd57734dddc6d8a7b2d7529e598355b1cf49ddaaa7b111f35cd783afee871c1ca7567ef090fd2a40b910b5ced1acbc9354dd535f16d4aab5a27842b1059366780fbd17cba05c01ad14f1fd10f829f8b892ca1933125522ed001bbbe12689f4760588eb5bb30e5184d29f80d45fffcfb3f30c80322d00488074792a42941c6bbe8fa237a9390900e6928e20a82503ba43226efcb0ca3040641ef26043192a284c854700ea52985a00ea3a0a95092a05778445032a1a0d3d44d5213a271a80704781328c4d054413075f85d0e213f7d647a6a763a9f3edaf958992322435a422fa0fdfa0a928084a0659a00cdb0c9c05c7b37cdbe04482337f51a572ec355c318d2faaef8b40a414f01155f0b838535acc1a5716f0c6633add7725a606408db789abd416a101538211ba05e5be344cfc213f231498620045959da71ddd96c5619660ea900705cee3ec55aa2da68eeee7a5ebddd6afaad7abdf504c7495787cc49dc370eb615c02ecf8f4eded68edf9f355e9e3cab1d1feefb4787afbd9787c979506b7867a7c7deebe7c7b39f4f8f939f630675de24380d9b47e7d0e7b5d1c107713fc3d9b7be97ae301c8f9c8d9d540f1aed76abab191b62742824d639a909c37a719033a15486abd5a50a04c2ca7c5e190661c42b9c28578244251927eeb4ee2e5eb9d2e5013b92efaae767933f56123e7a3ae0e160defff3eed989dc3f3f6ab6ce9da207966ed5e53554982000f9aa8bf772f83d148cd7b0ba42d9afd7998f109a0af4dbdec817ea35e380d5f905af53d2c6f6cff2e654301a21e072b4431afaa7fb601bdf356cf5c038fa95f26badb53dc6b70a73bf6980952a13b0cd990498d466ce8f99217d2635aee9bc6099a4fad556ad0e0bc853845e2035bd98e7ff56bab02dca3f8e2fbf1e08b7cffbde217e853f38b97f11c5272377c5b22e0ec0dfee53f0c310d2fd88f4fddd46cdd2bd3d0300c53f4cacfd054c5d74eead925983c410cc52637133637b43628f4fdd756ecbc27581beebbe1fb63c689897d3318ec4ac43794a14f24cb3fe93a3007f576b344a68f5f02ad5ef4b56c4b3021e54da5f685a3b0bf961d36f07f9797157ab6dea47352bdd2b37fb2abe5e371e4cd31a75afa7990c692633c85e3bf83c026fcec65491b2c6148179cd244e2c95ceec560b048b36efdc6c5ebc64d4ec386ad69879d94365ebbd1d1f32a456b3fb993b0553e1ece5671ebb930be71e5b612c9f139ed607ff96165bcf2bf220bf2561b49b2827057de9546485bb99b4be9d91eaf7a0a4b5e4e351e9fabf3cf4dab3ab8db8db0eb08f16d7feefd2bfb563ed1785e14c4adfdadd998fb7b7e7e3edfba0f571e158401f369f75eab1f1e180a0188846675d185d5fa9eb2b44f8542ce03f247379f4d004a4442763fe273b5ed3effe0781fe763d9ab82ae80db5a91f2498a9988c31b0f47b9430a88104904c0595e0ed7439f314459055428689a5d2c5e5562aa1299950c6a0efdd6150e8e3fbd38bfefe9b7a1b2ffee2b3a446c9db3fd56de8bb2de63dc411f7cb4c67ec125d5fa510a9218196c660964e56ebfe89879512da57fa6656f7854c3c8e279caa057a3349f4170225545ddd999de245091d11ce04e4df12fa1feca3b6efd51abf107d3cf83deb72b2c5f461db55ce0d14d81c4724840f98180d126a6e759e3e9487f34b9dcc3ab092e245afb9e9d9a4ffdcf0facb02fdcd81fe8af4b7bfd13fff02fad338d3, 0x789c8d52c16eda4010bd5bf23fcca59c1cdb75a06d22a19440ab540aa414229a5ca2c51e60c97a77b3de3582537fa3b75ef90efea45fd23171427b40aa7df068c633efcd7b73a9e4523913f89eef5dd6318c171c8d594357ecb60a3a32339c49262d4ac6258392a3b490fdfef193d1ff160d3889c0328345818039e30276bf60a431e5339eaa3c84ae92336e72dc9c08069a40e0c921082c40a32994941495bce09650a054d6207c657304ed38cddce75c01a99296a51560c60d52905329aca8bfcc37202a5a7f53f1bd85b5ba388fa2d56a15ce588a53a51e43a215e97954bc928cd89496892e0864f690aa0cdbcdf7ade443633fe48167ed1afd4d333e3485f9bc82f7bd3e9a9407d704bedb3e39ae113ed74887aaef1dab576ffb3f1f5a1621a7fd2a7d18ecb676b70594a55ad39764af697efc87640823feac21395528b760dce206b4a00c2989a5e2065232a11e5c4046f69055ccd82a7c211b40898e0b41bd85e3a5a93c0441f700293fc9a8b782d8fbcba47482fc783693b4258f6bbb8efaa142bdd0178fedcee8f48cadbf37854e38de7e3b6de031f11b391973d51fdf2683cd5deb66fc2919f43acd7e6f18dff4f4729ab4e2bbc9201e5e0d56f79381becf05e562379da4effa4bea19fade61b32f320d03e8583a73cb953ca7a3cd7327b95dc3c869ad8c0de0edab123061eb00fa2885a25335d4dfedc059334e5a95997f0041452a83, 8, 'INBOX', '<20132ac7e6091d8849ed8ad4ab5d2390@3e723b591bdb95ce8f5c9b7032dc572ca97351d0da5efc73459c1fbaf438e43b>', 'html', 0, 0, 0, 0, 0, 0, 'EDIT'), (8, 1, NULL, '2019-03-18 12:00:49', NULL, '\"cPanel on specificom.mg\" <cpanel@specificom.mg>', 'dev@specificom.mg', 'dev@specificom.mg', '[specificom.mg] Email configuration settings for “dev@specificom.mg”.', NULL, NULL, 0x789ced5bdb4e23391abe1f69dec11bb41ad05239924c2842b4886e7a9020441dfa1a39554e624d55b9c67671e8ab7e8d9576242e875d69aff66eeec89bf493ec6fd72155492584101a5875a58194edb2ff83ffef3fb4abd567f60d12f2c621fb853eb67e1d721678b6b971b4a33e85f68f3f20b85a36bd8c47b9980fa96796f77c6cdbd41bc2b7f90fea8725ee3b0459c471a247f60b95724137081f5bba01eefb8cdb84ebaf57d4962335aafcd742bcae6e33cb080792eda5e70fd7508c4c35861d3ca735ecb11176e8d0db2f58c493844fcf991d3ccbc3522c349ae58483b017e49561c5c5d746d80063fdeb19d6664999c3eaf2ac4f5fcb8d52024b733522743892fb856a3de170c03c690cb04b9d1bf3a75f88734924b530ea9080fcb49ddc6f1f708a9d6d813d6108c2e9604f3f27e86762561a20028b398c9b1b357d3d248fc733b2dae8f72ea60eb29837a0c38063499987049112742fd08071f4f5cb3f6d72f977e1138b0ea8c5dca23bfcfae5f7e2bac96f95a4bd36c5c264cbec92e7d84bd19e89610455eafe352aa36a59fdd943135031c2fd80368ef4b517999989aa30523087da68e37d537de22ea3cfa4646e66c4d151e3b07af8a07965a9d4569fdef4290b7f080cf2503564605533790ced21fd4b42c5ec83cbaa7bf6c904242af5c7d29b4cb2fc0e5fb07ea35e5e958070a615215f7bad272c1c2ebea2e666275a5593b333adaa93bcebc71fc28f8e2ca8adc20a2fc0ce458ca81798130cd276b010fb05412c85b799a86254d5cf8d6c7eaa1fed454f16daa70aa80f1d0a5e1d857d28ee6c9546d5d424a9e9141dd16a9c5d65f497ee0328325cdb6864159c7021c4340b599165ef66102241bac160b087129cab24282639a0810f137b32c13a8e6d1a0813ed80e784b66b438cb0cdae4cc052f5a0fae1c33ede2c6fa3e85fb15cdfda4361203781ca72f8bc9e33a663a7daec5b786f211791647c4e06847362035839a1be908f3de284bf0d9f5358f126c73294f46677d66c4b268c3224f30d870c64c27f2d45bfeae42a3cc9f64e7c8d7232cae1e4fa9988eb39c24069251596213c969096c3886045431e42f4881570825ab8dfe74852a9b88dda7accfa9548814ef08d8a547bbd9356490d6b9732a3cff5fe605c8603c319a904a99f9ff4a22712639825609313885bc014edf1ddd67477ab047a9aa13a86c990c5f066da9675eb5418aca4ea605f1013c5df128147f86aaa30606a97424b182c2305b379dacb98c824b80ec7e7e3f222904c452a93bd9536c90ddbb6533baba942788d054edf0135c5c23e0030f8046edcc32e29b43bcc45f6d72fff082475a8c09204fcfed65ce8f75627e412cf2524d69b8d2546571cfb8624d7b2d09e0964e7923637807c3ea1a618e902f5573003803e93c826f08810e4794599b77c2c47222cec13c36312948c3e69ed92cf48d9448a3e6407b0e95d5f12d5e41221f010023c527ca5523ef6805ab8e9117ea9d147fd0d380213036393df4cdc5374a4376fa1add2b36266cf2e8a565a81b3a83b53eb48c0a7a25d64d4a8790038020d43eeaac69b8805525050a9c7bcf057325a792a1319f594178adaca793e6472c5be0330fd422d15ae473d877ae4e128b3e5d098179b0adfc137260a9f35fa0eb894696232f469071ab615da193773acea251e81f02adcbbe8c0b2e01bea722619e070a21aea5109490c156ea17d7c7ad08d5d5017d831d1ee6ead5572e8835cbc10975d06e23e1bc076220967a896cb5bf7ac5b9be6adfe64de5aa5c0996f558fc68a17c38fb3400e590e7e0890d4b7c40fa0e303fb8e1f2f8f1f3deafae01375a2a64356c81c26e0d1ee9d9e4f21c54ee3616b7a93d602fc42b0eaed17aac97654c18358b580b0be0c3de12bce6da78cbae762c7e900ad95499aae9a2ec2e047a1fd3652b888c04f288d224e7e0b28e432389023081da8a58ba8c5fcbc2259fe518a8346956b6493f3e9f9270d8f4af2279200cbbcf87fcbf4070dabb6535d98e9a7d3d828a9b7c900078e8ceeae30f7f253db5797e20fac419354e6492149f16bb5da7a53fc96b276bd896cc8153acc4b65661046608eddf11f9213a1e0dfd069be7a628999e4479dbb13cf26937c04b2115d88019b3478aabfbdd939eba054b6bf49b6b65aa5bc9516a6fd6a79d977b215b8f330ddff5e12c88b8bb22a7fb98ac01c3ade624120cbca0b9404e610905b1478cb35812c9f2f59155848c943717d3e3d9aa6ef51fdcb57052a3bcb5505de6459a05229bfb6b2c037ac0b64cdf6c5ca028bc878a740e33b82bc91ba40b5f1bd2cb0ccf58c6581d93ce62093df1f8b8f61de6f1f31aed05e81a2d2e45bab1bc4f7714bba7fd2d7f255d3012abaac4f1d129e174303f8aa0f8905429d27922344cf7aba81764760cf25dac536fc623682740c0cc03aebddff471b4211fb3e7c55634f21a991987ae844e5749b9572b1f9b72d4405c252626b446c241992236888e2c722d053f2dbe1518ba7e9fb01a93e7a9a751c4b79ad875bd2c765573deb95068b9c736e3196aafefab4f7d00da9339555751f97341afacaa4bd2d7ffa305e19e94f3cad9e326aca87a0c3246741972c1088804721de25bb19dfa1f12d72306435aad240c224d743c01ef5749a8b00039845a381d08b6d4e5446941f5c4edcc171e20ceeff7d7f5ba9ef142bd546b1526e1677abf7b7f77f6ea34b8a559e0512bd54d19a1a66e9128dea4602d68e7a818c62468391d5ccd5f05325f6091c392760b31c7eb29cbe63aeb2f10ea4e3a817525e68bfeb24c737a807610a884793bf92b8c065ab000b1015688894e445f587d1f8bf5265cb202c39f452122dda5240e873ff678ea0d62e9ef475025411880bb0455c75a40bf690623bb581227e4093aeaa358dff25b966e114db788821fbe668f3f4c356316ff67c069e45e7212b2ba86b2ec3caca00fb39ed07e33be520c1ea03ee51985f978f4089c79df3f71f3befcf51f7e3d936fa70b88dcecfbab0f91f2586393d2b4be40476ef8d90e33f5cb50787e33b6f7cc761135a1314013d3a8167535469aac904aa962bbb0a212a55b35c367776d1a7f3c3e284f4d0032fa3c765aeb5c64badbf1806328cb59e9e6cc5eaea008e8cef7c06d0fa5955929488526254af18b8102ffd164c82817550f07a020198e289676527c1df6a73ace7b8f2373f2ebd82ec1f2febbcc07ae1e857fc6ac3ec1b4353f017a576cbbcc5b33c1bc9ead41d22c12d589cdaa6b2eb0bf872516b56eacd9f7f9e792327da55a9977392d78f749a1e8e35f57f81c43d05600f1eb7ba8f7a49c27f6aa83b15a9466fff4471ea24334e7915e54d0e997fa32b09f777f7b7da39585d15da6da363cf2ab69605bab56ecc25b6dcc326b4d864e65092b3f2ec4ad999e39cb555d2c3fe078cf523a0, 0x789cd554cd6adb4010be17f20e73b45b47b11c27c43e35b82118fc2322e70136abb1bca0dd5576572ec929af5168a1c7b8859e7acbcd7a933c496725c77549032d3dd5c646cccf3733df37a333c944065cabb9480bc39cd00a2c3a27546a61ae0d3cde7d4c70f9d6e6c8c55c702d03993ede7d0af65ef9efd8670f3281cac198a98265106fb2f75eedbffcf1b931f2c220c4f1e860368ab779d0304865245349b96afac08996903cde7d289cc884650e0b037def78d658d592769020e4cc5aacc32eab3cbc850c41ee7a93822697b9436f92682d4bd1080ceaeeccd217a2c90ca3e92a244f56f0ac22c06b188e4f2388b4717de8f50e9facd1343adc5a8f76612d19ff00361ecf9e60bbc715802fd4aa81d1d57e83d785202659e116d4aee0958cd51411334c96f7cea005a5d53e910d8dc974023b1c37b0f93fd21c767f477318b6ff8de6cef1dfb37c0a81d45722c3fa8e604e8fd5f11434fd7be11620a6716510d1422b3c10114be84f27400ad0e1f069bcfe06fe980296e7f4e863c7ba508e0905237f948db01d9cbc6982b0c09c637c8109380d6e41860da7552f832dc5b0d48505b48ec85dea9b7205e567c81889e075c75a6b05da2442d56a935a9a8b4d207959427b43230c23587f85f0a81b849de3206c9f04bd0eac1f5ab014ccab6d896dc1d107f19c29ccc8099600373ec2ae7abb54e8176f81867ef06e1283504b3454a10afeb56222ac978e08a79ccd006ab3a28bf23b39fa54d0a56aa7a9207196645d3f54e546148932cf1847e95f5034b3afb133f0a6063529afa8d7f20b1d0ac18e59c252663933d0189f37b760bbddbd88e50927858cb82aca955f1712b3304a50a23f28ea7938999d5d4cce66105d4c5b703e68c16c1aad1faa2a44c58d75e5bdf473a7e54a952b4383f39faa529f59a11201e10948662c74da61cf2b1676faed76bfdb83cbd9a06a79426c97ab5c93d8b7fe147dd00e102db296b4c4d745bd393caaf647e73746a40bb75ed5c83cf28ab660a878f0034ac60d80, 1, 'INBOX', '<1552910449.OOAi_nnamnAISi41@golf.cloudns.io>', 'html', 1, 0, 0, 0, 0, 0, 'EDIT'), (9, 1, NULL, '2019-03-18 16:08:35', NULL, 'Specificom Madagascar <specificom.mg@gmail.com>', 'dev@specificom.mg', 'dev@specificom.mg', 'CPanel - INFORMATION IMPORTANT ET CONFIDENTIELLE', 'ceo@specificom.mg', NULL, 0x789cbd56cd72db3610be77a6efb043cf64e28c448994f5474b6addba9db813bbaaedb4bd652002a491820403805494a7c931baf709aa17eb82a41cc9b2d3f420cdd892002c7617df7efb0123ca0ba05c8d1d61943319d9612888d663274e08176f288b482e8c03da2c041b3ba114520547ed7ea7dfebe0866c7b41c5b3e79d9346f9777c1ac9d434239270b108aee54c1ad9a8bece15894ce3251305333c248d33c589686892eaa6668a47e8581b25d318bf33927e4d4a3672bfd1ed3686c363dcdeb2fb2617692455420c9729d067479de129a72c353cc2a07612cdea30ad6c7f67b992491d3d375c704d0ccb55003a63a1cd643453934b698032c8f0982c80172f86c33fe9f52f3d3a6fffb0d86b6e5392326143c74c5730311065ae77abe58ca998250858f0cfc711813bc5a2b173674c16b45a5dd76b7bae77e2b9033ff0db03bfe58021686fc6ce9b9920e95fcee449d3518bec17f2357db6089003ae1688fd01cb7e1f330082bf7cdf56fb62bab5b089cf5e33bae150c85c434543f6017244456253a50cd87bae0d490d908285686614031945f84977e8d0a8dc505628749230638d571fe1adcc1508a691c78a24ab4f38ade1fceaa6f26917f8e77a68d0392f3022d3ee7eeb40125662adc00be0218f53edb9a190394db5cba533d91e5ba2c2736fd0753baed7ebb95edf3bb615dcf0e93fe6d37fe0d3ff92cf5ef7f820cd7089350796422648c86ca35755d6dc3098b3d961bae235722d925cc3bb7c9dc09a82245704564bb35a42a66446e2d5b2665a86c4b254ab89ab8203e9f5ddea6fc4e6e7dbe96e8d2393b96b0597899bc4ce6467aa943964cbebeb5765c323d08f28e97c3edfdef6b492ee981e4c48a71b1d4df19fd9ab581f8632d3b5ac108ae1f57df49a42c88f50ad960c0952d30573ca0b3b068a6e702b84d53d679d5099a668ad61faebb4757179366ddd5cde4e4b8ad5bab5c4532af4847e0547b9abe3ed57a57eaf795e60d6ab654c44a9b440c270b5a4980ecaabcda83e79c1893d1676ad1ddbc5105598ad1182c0d2ee3faeec61f7abaf6c34dd3fd36cc636400b1fa1e54bb47a8edebf4eb75f819ac72931b9620e16d990a64e88327665d7e0819fc77c3f3ad76c36ab699ec4a0555801a9111eaa78c1dc58ca5830173bb19587df713af6161fdad767cdc5cbe25d3727e76f87de55bcf8cd9f0d13caaeba4572fe8c24d9297b9f4965c654ce5321095d9ffcf3a9679391c5114a80c7ce513bec9c74d0ee4799461ce951a9264f485cdebab61d512f232c3c5eab48736c4bbb1f7dce1ef8bd6522b0b3d0eef8d0f3a13fe8c0a0074d1c9f40cfabc7db7b7eb26856bbee0965a78c0cb6a4e8fb12768bc62eab9e30ac38b519ec0f362b55723b5c4dca6db9fd72900dd7fff3f3db6ffe055bd280fa, 0x789c7553cb6edb3010bc0bd03fec2d8d50cb96122b8e4e7d0329e25488d3c79511570a0b4954494a6efb353d56f7fe817eac4b5a4ee2a03dd830b9c3d999d97570d11452d5cc08d9003f121c1b230a91bb8bc0f77cef4ad654e88ca88466063b95826e31b720df5b4b031ca1655a630a41707efe855fbf4ff876f1ea877d9cb1062b8b2851ef5a20544777e3708baac49a9aa570674c9bcee7cb305a4461741a85ab388d17ab786e0982037d1d68543d697850767f9502a35f71ec7b17d9c1f56362fb6c23a0979d869d25fc091d31cb9a890601bf0b6d586380f59813cc28045914f4cd0f543f7714bec7b157c450a3b1c8f1177c959d820a3545a2583dfea66b0d6fae363b425b100f8634e84ef4d40e75e80cb11a9d6c05510a8d8ec2bc921d6f7428243c8b56cbf0248c92248ccea2e303746cd1f1ffd0c9f2d845b926b7800db415cbd14e62e74f0b83b0c55b97e9470aa19042c3b76e5fdf67c33ac5601ccc3840ab64cbca71d8c5002d99b6314c89aaf4616feec63fc4feee264ba1306db8df1c59877549ddae2fdda848c1fd1e6cb7dba730d29e3d8a93d3074953a59de46c1f39e354d5f7c5c902e9cbd53820099ce41a25bbde9e81339a418590bb3df53dcbc265d3105c43f6219b5fac5f66f3cdfa26731ea7a10ea442111511578296616ae846f869caa327f6712859e5d605589e8f03a757b422f6e1a4b017ccb6a7f0edd91673da24dc3b010af2dfff8ef3a5fb77f8de6c3673f9bc964d21a8e76e64a266a55b471b150dab2036da37f268230b6eb04a03589cc490c470b63a815502333a9f42124d6742bdb59a0877308c17a5b34a07427cc65b37ba2718dffb0b72ec6ff9, 2, 'INBOX', '<CACuX5dk-rcVnY89=awrrKkyV6FDWgk-HZF2EAHxJig8CEyrC6Q@mail.gmail.com>', 'html', 1, 0, 0, 0, 0, 0, 'EDIT'), (10, 1, NULL, '2019-03-19 13:32:36', NULL, 'ceo@specificom.mg', 'dev@specificom.mg', 'dev@specificom.mg', 'Template specificom.mg', NULL, NULL, 0x789c030000000001, 0x789c0b4b2dcdccc9492d522829ca2f2d03d2a9790a015e7a006b49085b, 3, 'INBOX', '<a0be63e0da5d1bad7e5dc517c646d7df@specificom.mg>', 'text', 1, 0, 0, 0, 0, 0, 'EDIT'), (11, 1, NULL, '2019-04-01 14:06:18', NULL, 'NOREPLY <noreply@specificom.mg>', 'dev@specificom.mg', 'dev@specificom.mg', 'Nouvelle connexion à un appareil', NULL, NULL, 0x789c9554db72d330107d67867f58c4307dc196ddb4401c3b0cb46560064a07c2ed51b1d789065b76253949e9f02fbcc26ff4c758d94e27690b85075fa4bd9cb3bb478aef1dbe3d987c393982b92d0b38f9f0fcf5ab03601ee79f06079c1f4e0ee1f3cbc99bd710fa014cb450465a592951707e74cc80cdadad23ce97cba5bf1cf8959ef1c93bbe72b94217dcff7a7623d2cf6cc6c6718bb72a0b65921bb284c3e1b00b76ae28b2715ca215e03c3d3c6de422610795b2a8ac3739ab9141daad12667165b98b1c413a17daa04d1a9b7b4f18f0716ca52d707c5c350b2c0a74410a57440b2e7e40a340d4b5d0288b98778eb1b167e46609a14f9c1ac3c67e29a4f21c227d51c3394c45fa75a6ab4665b45d543a82fb883882effe2d5e799e3b2f5762ebe2403c51c8998a20a57a503bf3b4b1b6524b4dfcfe942808b27cb837fa6b0238bfc99a1343cfc86f1841f8a45ef51bb92865711681a1c97906b5cc7bc312e56c6e2398564536825a649954b308021804f5aaff8c2e11059c6f94da56db72c830adb4708a8840550a47df63de367b1cf36eded32a3ba38189a99b53210ce964bbed8c2868ea5ac2021a3fcdb3e772b936b548d7eb3677c29632b3f3280c8207a42bdb43687ab23554db9c8475cdf92f889e642fc4abf961def62d617bfb64e20e90b796ceba11dc17b7c5786f77bf5eb135c75b8b59a7eb64e58e50f82fa227af3f3273e9d704aeb6ee63d51858b8d7c52f8ba64348a97f2016981206d28c7bf4351ad07f10f267b5e6bb4138745cc241143cf2e1bda4d682da4163495e5de287607628a6c5a80b21ed4307629ac2e237da3520522b17d241a222caf2b411ca8269b4c329a4db94243a6328837fbdc8bea3371c0f7645835b4791dd22972d796ccbe75a7fdbbc6c5b2674e169ccbb0bd2d00d696a4c652ed3aaf4cb19578d98216fe870f28c2e4759183e78aa937955e283dd1752654892f9e88eaea4be9478d9a58b9f31179ba3e6fd583777ba095fb76cd3ceabcab60afb8fd075898ff7ff31ee9aa55fba5b7e7cf7ce6f37de5397, 0x789c358e3d0a02311085fbc0de61ba6dd6fd5110b4f30236c2f6218e3010b3319304f134b67a8dbd9813579b291eeffbde1ca794d15a04333987779a1ccc4f480eb4f73a20d9714a0cb99cf91d91979e8918406734d244703f47a5fe1088b01fba830fddba1f7645396cf6fdb685138111a2468ee0f5626e806b61be23de6a8a4da56486938df89098419b4899ca283a30966e49bb089c4219b254425a9d915914ed88812e24dd2bb2bcb4a0f3ab5295fa00755c54ed, 4, 'INBOX', '<5ca20cca79e35@specificom.mg>', 'html', 1, 0, 0, 0, 0, 0, 'EDIT'), (12, 1, NULL, '2019-04-02 13:52:08', NULL, 'Nantenaina Fahendrena <fahernatt@gmail.com>', 'dev@specificom.mg', 'dev@specificom.mg', 'Re: Test d\'envoye de mail', NULL, NULL, 0x789c6d91c14ec3300c86ef48bc8329d204d2e8ba8d036bbb0a098903025e01a589d745a44971d26a7b9b5e798dedc548ba3184e060fd8ae3d8ffe7e4427620242d23e5282a9e988452a20642de0247e710b06652c5f082c4e5453ef10f8abca4220f2fb962d62ea32a94bc7db4c66174b838b5fc5dc25c98f28cbbbe6614c30c581724992e60dfeffae92c4de6637865daa166523378646bd482fc0946ca65398335e16a19856ecea402bb7bdb20972bc94d1dd75554fc49e513568c2a970183fd2727e9767d3a001c5194e1ef83f5ff68c0baadc2308f2aa9d3a4d9c029e23bdc64a5218174a370e5d2a9cf5aa3a400aacaab59723b3ec675d63021a4ae8e75b8f16b6abd8376d8569137c34acfcf1ebc6f40eba0d5e08236a625e8903c0d1258096a74395f64a83bb3451008c12b5884c65bf70486fccf39ac51bbf8d072d7e793c6eb0137e80f71f19dfc02d7f6b170, 0x789c254e4b0ac24014db177a87b87223c5cf4a11110417a2dee1398dfaa0332d6fa6056fe3d6737831a708212190849c44715306185d0fc794087ad1a6c285e6745216657126bc588525641865be58e3fbc662b999af66b84a480ca241709427436dd9615b73d8c78e4eefea5a5ff9c70e5216df8f334dd88cb3bb0c1c72028c097d401ab56b7bc340cb3d1aa2a299320ced8ba8c71bda20129dc4ccaeb57c3bd133a4eabf57163f8eac432a, 105, 'INBOX', '<CANt0zhdJwqEMVHh50O0otiWVGOJbJWuqqaJV+a3Bfz=cfguciQ@mail.gmail.com>', 'html', 1, 0, 0, 0, 0, 0, 'EDIT'), (13, 1, NULL, '2019-04-02 11:58:01', NULL, 'Nantenaina Fahendrena <dev@specificom.mg>', 'dev@specificom.mg', 'dev@specificom.mg', 'RE : Re: Test d\'envoye de mail', NULL, NULL, 0x789cbd53c18eda3010bd23f10f832bd14b8961b994c489aa06aa76c56e572855db53659201ac3a71d69904f8fb3aa4d05d2deaa96a2ece8ce7bde7193f8bc1fc739c7c7f58c08e720d0f5fde2f3fc5c0469c7f9dc69ccf93397cfb98dc2d61e28d21b1b2a814295348cdf9e29e01db11953ee7fbfddedb4f3d63b73c59f143cb3569c1bf7f47f404e96594b1489cf40eb92eaaf00acb64369b75e0b6146516891c49425b39c2c75a35218b4d4158d0283996c820eda290111e88b7c800d29db4155258d366f496018f0429d218ad16e0c30a7d48b022c85e63d198234286904ba505efaa04ef84d7263b46a28c86c5ba2a03c1cba8dfebf75c22364683d4c6560388a5c3da748730945b2b1b0c2047dba0d228d6d649f77b2ff0a37ffefd1ff24c3590291b324d9645b752c15a610116d31a522442c0768e1edca14dd5407007b8f47f6148b5acdcdd6fdbd21f8fb52164d1b52d494ee589de123b22376e0f6e4036ed329ecc2e83efb62737fe78fa06ee656b0ba90a091fe40e8bccba08869a02e1dc647113b256858c9f61f3ae2a31551b959adccbb72c7a91125c46c32d05e02850a63561905a459da27f6ed475b1d626fd796aea2f7d46a78b3adb23763ad0fab12e80dab534b58506ad53470b95023d7c359d05cfcd0a1542e9049c8eb1ee060873f70abc6b9e3b1f4ff03fa77b9e3e19fdf4765cfc0b1a963956, 0x789cb551cb6ac33010bc07fc0f130a3eb5268f53a24b20d04369fb0f1b79ea08f430922ce8df57aec1e403dabdcc2ebb3b3033adbfa551359b66730dc1426c88698babc049d477a295214aa182632c3496cda65d5f5efeae56b2ffe47d13839ba147a49ea099334127c676f860d466fb28ee9d4b5f8de87080941976fbd36ac9b2de1fcebbe3333ec5677a315ef02a77fa3ed6a9d2d9ac7a964b1aa9cd97d1c1756e6887ac2068297aca543a9abc709d7f73a89760ca983cf28c6398220a63fd674432b0edd3f1a4e84bf8267a625680448c9252cd478758f5653afadc3d2afa0163ac8165, 106, 'INBOX', '<5ca340397ee1d@specificom.mg>', 'html', 1, 0, 0, 0, 0, 0, 'EDIT'), (14, 1, NULL, '2019-04-02 12:03:04', NULL, 'Mail Delivery System <Mailer-Daemon@golf.cloudns.io>', 'dev@specificom.mg', 'dev@specificom.mg', 'Mail delivery failed: returning message to sender', NULL, NULL, 0x789c030000000001, 0x789c65914d6bdc301086ef0bfb1fe6d2d05eb4de3a8ec3426843cfa581dd5bc8612c8d6d81a47134e3dd38bfbe729696424148cc683ede79e6347a81482238105c50c066422507382b47546f318405ba0522fa008e823f535e40b8d70b6632dbcd76f3f8b7828ea8b0f00c4249c1f21c1c2456e8e84f6a29ad0c9c083843e45cde1ebcca7693c9fac9973c31705a65958330518e98d66a9433e7f58ba0e710f8e2d300e85c2ebd3f937c81be2824775815413146ca0955bf0fab726339ae6e80914541a24e66f5db1153a2202691c2735399fdfeab696ab3afdb976bfcf1e7e9e9da1bfacc11324556bae210ca6524c05ecb4dc9adb338543c5c539ba682c6b4660fcf3f8e2ff06bce208b2845180b69474a7645fd014dff5dc4c7e4679fe782e24804a3ea2487ddce72120ef49ff29d4fe2875165d7f19c2c7dc3d9bb07c4bbf0fa7e3fbcc59bb20e47f9c1d1f9d36d255321ddfb42c4c4e146df4a686bebeeaeaddbb6ebabfbdbbada6e7e03bc96b62c, 107, 'INBOX', '<E1hBHC4-0004wR-GG@golf.cloudns.io>', 'text', 1, 0, 0, 0, 0, 0, 'EDIT'), (15, 1, NULL, '2019-04-09 06:58:39', NULL, 'NOREPLY <noreply@specificom.mg>', 'dev@specificom.mg', 'dev@specificom.mg', 'Nouvelle connexion à un appareil', NULL, NULL, 0x789c9554db6ed340107d47e21f86458897daebd046348e1d046d2590a054100a3c6eec71b2c25e9bdd752eadfa2fbcc26ff4c798b59d2a690a85075f76e772cecc9cdde8d1f1fba3f1d7b31398d92287b34fafdebe3902e671fe79ff88f3e3f1317c793d7ef7167a7e00632d949156964ae49c9f9c3260336bab90f3c562e12ff6fd524ff9f8035fba5c3d17dcfd7a7623d24f6dca465183b72c7265e23bb2f40683411bec5c51a4a3a8402bc0797af8bd96f3981d95caa2b2de78552183a45dc5cce2d2721739846426b4411bd736f30e19f05164a5cd71745ad673cc7374410a97440bae7f40ad405495d028f388b78e91b12b72b384d0254e8c6123bf1052790e91bea8e1122622f936d565ad52dace4b1dc263441cc2957f8f579665cecb95d8b838104fe472aa4248a81ed4ce3ca9ad2dd54213bf3f250a82341b1c0cff9a002eefb266c4d033f20243e81d56cb6e231385cc5721189a9c6750cbac332c504e6736844999a743a8449a4a350d2180fda05a769fe10da280cb8d529b6a1b0e2926a5164e1121a852e1f02ae24db347116fe73d29d3150d4c4cdc9c72614827db6d67444153d76216d0f8699e1d979bb5a944b25e37b963b690a99d85bd207842bab21d84a6275d4335cd8959db9cff82e8487642bc9d1f664ddf6276d027137780bcb1b4d68de0aeb82dc607cffad592ad39de5bcc3a5d2b2b77847aff227af2fa2333977e4de076ebcecbdac0dcbdae7f59342d4242fd0331c784309066dca1afd180fe83017f5969fe2ce80d1c97a01ff60f7df828a9b5a09ea2b124af36f11e98a714d36054b99076cf81983ab77841bb064462e55c3a485444597eaf85b2606aed7072e9362589ce18cae0ef16d975f48ee3c16e6970eb28b27be4b2258f6df9ecf4b7c9cbb66542179ec6acbd200ddd90a6c2446632290bbf9872558b29f29a0e274fe97294b9e1fb2f743c2b0b64a373776425f5a3c09bee5cff8cb8d81c31efc6b9b9d34e76d7b24d372b4bdb28eb3f42d7a53defff63dc8ea55bbadb7df4f0c16fba7250f2, 0x789c358e310ec2300c45f748bd83b72e8516a44a948d0bb020758f82912c8524c44985380d2b5ca317c3a1b078f8faef7d1f7d9ed05a04e39dc33b7907f313b2031d828e4876f499612a677e27e4a5671246d0131a6922b89fa3527f0844d80ded21c476db6d86a2ecfa7dbf5bc389c008512327087a3137c0b530df916035a5a65232c3d9267c48cca04da289ca283a30966e59bb049c6319b254425a9d915914eb11235d48ba5764796941e757a52af5017e0354fd, 108, 'INBOX', '<5cac348f62906@specificom.mg>', 'html', 1, 0, 0, 0, 0, 0, 'EDIT'), (16, 1, NULL, '2019-04-09 06:53:32', NULL, 'NOREPLY <noreply@specificom.mg>', 'dev@specificom.mg', 'dev@specificom.mg', 'Nouvelle connexion à un appareil', NULL, NULL, 0x789cc556db6edb3618bece80bd03c7a0f34d644a3eacb16cb9b0e3041d9075c5e675dbd5404bb44c943a94a46ca741df65b7d96bf8c5f693a25c3b4997f46a3074e0e13ff0fbbfff9347dfcd7ebe98fff9f612ad7426d0dbdfa6d73f5e20ec11f27bf78290d97c86fe783dffe91a056d1fcd25cd15d7bcc8a920e4f20d4678a5751912b2d96cda9b6ebb902999ff42b6c657608cddaba70f2cdb894ef07864e36d3391abe8112fc16030a88dcd564693f128639a22b3d3631f2abe8ef045916b966b6f7e53328ce27a1461cdb69a18cb218a57542aa6a34a2fbd738cc878a4b9166cfca6a8d64c08668c72b685b4d0ee6f54e5889625958c8b11a9378e94be816d1a2238c7b15278dcce28cf3d13119e4ca25bb4a0f1fb5416559ec0b42864884e196343f4a9fdc4aee57269769923da2d268847054ff310c5701e26cdf2a2d2bac83712f2fb9223df4f9683def03f1da0dbc7569790a1a7f84716a2e0bcdcba8925cdb8b8099182ca798a49be740b1bc6d3950ed1a210c910953449789e86c8475dbfdcbac7701f91a2db83a3dad3da1c121617921a4684282f7236fc342216ecf188d4f55e14c90d148c2e4c9d0455c09363d831a42001b508fb507ea8a7cb653f56258d9bb1f51de10d4ff42a0c7cff05f04abb1012aea40965c189700dce578570493a22def78f5616b708f7fab0444c406257ead5036377b8a38c7b9d7eb9c54d8e4f1ea67157d3cab450f01cd2c3ae2f6666dc3709dc87ee5d5129b436b7dd3f9aa93a420cf821ba6631c460506317bd8986e0dd1f90492949c70f062617ff87b0df6da35f39408bf216531ae8553b3e43aa053636462928d7672688aa84661f6156211a6bbee62624cb2165fea1a2b946aa92268ee0669203e994020fed878774883ed21ef81e078f5a113f4197237a1cd3e701bed62f3ea609089e64cbbd408a22a66255284d54c962bee47191b5b394e4154d19a9a04b49022ac98522dd57325a1519c3e377a677390093b13d4cbbbb11a187b526aeae873375891fae1ce7bd2c0a6d29f615a6cd195ff69f69777f25e16bc49308cf26d3ded56476ee7566b3975ecf9f4ebd49303df77a979dc924b81a5ccdae3a78fced37a38534ea6fef305a4957f0565dafd02a10aa85ea74e09bdff0a1c89e4e7df31bbafc412e8d5ad65d88068317c356edfeb0495d04e341d052b1b079191e866e81d98941071e279ff978945ea3b4466583be915ab840afad2d581d7245b9af295d53a5e1139411c5538f817e8a5795cefeca58c2ab2cb213df9b09680b19b348f0fcbd1dc7342ba961f6deae9e761f593b139bb6d2b80e7f32e259dad0df474ac67bd62a0d3a1f1fe462ad15b1139e79f7604b56b6cb3c350d05c4989825248ab4c01652e31f086bd131ac7030b995b281cb95a99bf4923e3dfe8ee10be8d485e4f80c43432434a7f036919c0a78be6662cd20478a0fbf8641a7d44387eec9758b2e14cb41981286d65c820e811365942a06eca469b0dd9d00d593450eea034207636834b4dedd9906dcdd3150b35a8e8a94c79c090412c56b5ff6c06d87e4428effbf6a1e056a4007d4cb23f46d5b02d55d43361d06cf26f1d367f566dd3d110e3e0b5f80c7a85627e872b8bbce37ffe8c0ffbf6aba9620, 0x789c3d8fcd4a04311084ef03f30e7d9bcbce8f8ac2ee6defe245d87bccb4da904d66d349467c1aafe36be4c5ec6c54028114555f559e5c4c680c8276d6e207390bf90ba205b52cca2399938b0ca95cf93b20579f0ee84125d4e244b0bf8cb6f90b8100a7fd785cfc783bddec0b727a38dcdf0df04ca025d12107585425ef803bc95c4b16a328ecda466a389a809f2233281d285129450bdad0252a1b80a32f45868a48fd8ccc82184ee8e995c47b469649359ab7b6a9a7effbb679ecd40ba395293342222fcdb3b25cb66917bd2ff1bc19f9a87756ea1094bc8502296f059f3794fdb5dfbd912634209ba8b28e497118dae63d84850fe3b8aeeba0ae9a76e7f1dfd7363f5fd78a5f, 109, 'INBOX', '<5cac416c71f79@specificom.mg>', 'html', 0, 0, 0, 0, 0, 0, 'EDIT'), (17, 1, NULL, '2019-04-10 09:33:18', NULL, '=?iso-8859-1?Q?THIERRY_Cl=E9o?= <thierry@specificom.mg>', 'dev@specificom.mg', 'dev@specificom.mg', 'TEST', NULL, NULL, 0x789cad544b6fe336103e3740fe0357bdb48bd0921c3b89154958c09bb497ec2149d1c3620f8c34b289f2a192b415b7e87fef8c24c7c936d8cda1102461487e0fce0c99af8356ec512be3b36d116d9cc97cb5062d3cd7b272d6db26f0caea6cab5534aeb3df5a679b465630fef688ee0d88ceba7abf5e17d13a84368be3113279824c10120f90789a24b3389dc6563f997b02765d37e94e27d6ade2fbdbf8f66ac969a7b3242af33588bacc3504c16831873f37725b2cad096002bfdfb5c0aa2128a2008f2126e425abd6c2790885f4965f5ccc173c8d4616233414bf800127827507f0cdde34fb1d37c7d239fba9912a80839a69a8e546ff8c143eec1494f93bce8f8fe2f7ec1ad1ec2334d2c820adf1ec7d7c7cf4a1c151de880a8e8f7ef87b0cb454bb2c5a0afde0a4603722aca34b9c6e85b11e789a4dd98ccdd929be3376867f8c2ffff916d75228895c5f91a0ed3962e9991d58d0e91d19ff8fd57672e3ed27ebb450274cc9e7512db78790c4b5702b69b2a4d2a43944fcc186806d314992246d034df41ebdfc0bb2349d24cfc60e39e88d47275e18cf3d38d9f48458a94638103e7025cc6a2356905d7de2bfddd10e44a6a4f9e38479dc2bd9fa150bef68a87786d0be30bc75d23a1976d962419c9555d6653f26f3b3d3654a03d421bc86ca62f13109d9c6d43d0d0c1a5be96580fa15996bab94eda07e8bdc623ebb3e9f7e57aed7b8d242aabe36e9f94bee80d219aa7b6b84a2b3d7628ddf9accc149274d6d3b32417ab49fe5bac516101b155e1183c7d6bac0ad51bbffa7681f5a0cfbe3740715252025d5be37ced22935073b5f4cf74d32f6d77932b998d3cceb7fe2a5d6fc9a95a4b2e783b490f3328f0f47f6b36cd82a0043d76cf1a5ccf1122a8f8f729bf9b568a11e12e3d916338117029ef9106127c85a8bc7224a93e959c46202c404ccdf7d0653cbe60b897c975c899ddd8417d4c32cb1b72f256b1104eaedc55e3094af88c7c31df960eb1da32214d7b78c7ab688c6ce8fd8768c87d6c47b0c53c82a25bc2f9ee7acccdb71f4e9e49737e03d95f11e7c40bf6d498ee84b2fd2e09794c906debce5bf208b2dbc, 0x789cf34d2d2e4e4c4f5508492d2ee1e5e2e502002fc604b4, 110, 'INBOX', '<006601d4ef67$504ef9d0$f0eced70$@specificom.mg>', 'html', 1, 0, 0, 0, 0, 0, 'EDIT'); INSERT INTO `mail` (`id`, `mail_classement_id`, `old_mail_classement_id`, `created_at`, `date_sent`, `sender_email`, `dest_email`, `email_owner`, `object`, `cc`, `cci`, `text_html`, `text_plain`, `remote_id`, `remote_mail_box_name`, `uniq_id`, `type`, `is_read`, `is_answerd`, `is_deleted`, `is_draft`, `is_favorite`, `is_needing_accused`, `mailing_stat`) VALUES (18, 1, NULL, '2019-04-10 11:52:13', NULL, '=?iso-8859-1?Q?Thierry_Cl=E9o_ANDRIANANTENAINA?= <thierry@specificom.mg>', 'dev@specificom.mg', 'dev@specificom.mg', 'Texte Specificom', NULL, NULL, 0x789cad54cd6ed430103e53a9ef60c205aa3a3fdbddb69b2611d2d2c2a508b5200e88839b38bb16fe09b677d305f1403c072fc64c92edb6a5821e50944463fbfbf1ccd8d9c22b49ae95d42e5de5c1d2ead4950bae98a34a94d638537b5a1a95ae940c8675e66feb4c5d8b920fbf0da27d04a235b6daac5779b0f0be49a368808437901020510f8946713c8e925164d48db91b60dbb6617b101a3b8fde5f4417a7338a3b1dc741912d38ab8a4c71cf082ea6fceb52acf299d19e6b4fdfaf1b4eca3ec803cfaf7d84c813522e9875dce7c2197a7c3c99d224185834533c7fcd35b7cc1bbb059f6f4c938fb039924cc8f35a48cf2daf88e29558aa1740e1fc5af2227b4ae9ee4eb447ce004d5ef15a68e185d18eec45bb3b2f6b18a5352bf9eece93ef43a0845ca7c18ca92b2b1839677e119cc074c3b4719c26e9888cc9841cc03b2687f087f8e4c7dfb8664c0ae0ba4702b62780c567bc6501a79768fc0fab4d78eecc5b631593fb448adb512556db10c515b373a1d3b854a8d947f4ca780f6d11c6719c341e273a8f4e7ce3699284f1adb16d0e3ae3c1be63da51c7ada83b42a854cd2c67ce53c9f47cc9e63c3d7d4b3f5ce20e582a85feb24f1cec156dbd81c25b1cea9c01b42b0c6dac3056f8753a9d226769a4b1e9b3787278304b70003b8456bc34507c4842bad45547c37b8d9570c2f3ea01993323a56979f518b9e9647c7634faa75ca771aa98905d6d92a3bbdc1ea453507746338967af811a3f3699bd9356e8cab46802f5703fb345032dc096d23f20c6af1b633d355aaeff4fd15e361076c7e9929798800455bbde384c46d81ce4683ada34c9d05f4771783cc19987ffc88bad799f15a5d2db83b890d2228bb647f693a8c9dc7302aec9f47391c12554ecee6426750bd6f0aa4f8c232bc8045c0870e67d009d202ac5aef3208947870189101021307bfa89eb4ad49f51e49fe492adcdd2dfa1ee6791bdb92b5931cf406f237687a178403ceaefc82b53ad0916213fbb20d8b37930747e405643dcb726dc639042524ae65c7e3b6745d60ca33727bf78677ffd747043761d4c2e1b5e0ab8cf8d0ac17c53a03dfce20b9cf0451be809aee1e237e5a6338a, 0x789c0b283abcb23835af24b124333f4f21b8203539332d33393f578f978b970b00b8d60a82, 111, 'INBOX', '<0d3a01d4ef7a$b8d80380$2a880a80$@specificom.mg>', 'html', 1, 0, 0, 0, 0, 0, 'EDIT'), (19, 1, NULL, '2019-04-10 13:00:31', NULL, 'Irina Rafanomezantsoa <peacefulirina@gmail.com>', 'thierry@specificom.mg', 'dev@specificom.mg', 'Template', 'dev@specificom.mg', NULL, 0x789c8554db8e9b30107dafd47f40f4a52b8510b249bb21972a6afbd087d54addadd43ea1010f301b635bb673fd9a7e4bbfac0642925dedb608c3782e9e338719668c361e233df7616da5bfb8e795c7a0945cf666cf4cb3542f66a1532e9e5bbe09a6a5071c7358b9774502344a8f38ec3d8b95e260b17f0b076925b838f02a2851e301bc03b8d0bd4706c4befff2e1afa75d568102018f6ebd125aef330ec6ccfda202e2495692f25a9169da60a3f02f623c63f71ce7beab2128918ad2c6d18dda4d53c85685966bc182cc91a3635da4ef87a371efb8aea60a182351c463e77d76b91ef59afb6a9a4b6183dc91c3f7316802de6a9a7cb190baea34db366d2a393bbad001e3e8ba462135431d476ae719c989790d8a61d43baeab6905bb604bcc96f1f5c71a4905ba70a558a9e29bf33695d6caaad6f88bb76f3c77cdc02b35e673bfb45699380c1b7afa859405c77e26ab30278e210ba3f1cfef9f6ff5affbe5cd8f87bb72c9d6131093cf5fb6cbafbb0f778f0f2adc106e3fad8d9a374718b63a91cac8b85ed8c72997d9ea02ea703270d8e40675cee5362e893114538b3b1b9c94c839294366ba2dc962601464356d5b0daaf56498490d96a4706a81a7ef519335e898ab2dbe671d0b68e77e927210ab8e828606aa8a0eadcb6c29031e00a742c42d674f0f323a3b33660cef17c63a085943189399a91f9c8c0da982024d4899144934480a14a8294b6a5b5f89e212c39fdf17785c9da203d476d5bb689cbd5cf18b80fd852db1c25c6a3436180e46d16434180739ed9005c0aaa61ba435d61179dc3330652a41b3e034bc0752b3b0c6d2b54b089d743163f530250c395a4cd2b5cb2e9e70fb4fcfa4a6c63f4e7a97a495fffb5f384bc788bf6ba7a7db, 0x789c3d8dcd4a03311485f70379873c8099b4d28a23fe3054172e4ac156d0e5adf74e9336c90d49fa33f3f48e222e0e87b338dfb7765e2218767c252a51bd064c2cc1510787b1bd0d9088a575d0cb423e3a28542f61e0c220d182f46028d1007280f1da4b9b21f4f50faaf52a4280fd185149590c79ea38512eea7a329b36b3c95c75f642a800478fda32975c12c4bf8d90cd9621a1fa170f368aeade9412f39dd698ec89ea1df3ce51fdc55e77d691463d9d7fbc2d96e973dddebe6f56a6c56303a1593c9fdb97cbcd6abf89fa64e9fc74ccf1e11791f1f028aa6f57135b3c, 112, 'INBOX', '<CAFdDvquhXPzmAQd=LQxL2UDZ+OFxF8ySecft+Uy06M3qgUo8zQ@mail.gmail.com>', 'html', 1, 0, 0, 0, 0, 0, 'EDIT'), (20, 1, NULL, '2019-04-11 11:27:47', NULL, '=?iso-8859-1?Q?Thierry_Cl=E9o_ANDRIANANTENAINA?= <thierry@specificom.mg>', 'dev@specificom.mg', 'dev@specificom.mg', 'Test signature mail', NULL, NULL, 0x789ccd57db72db36107dae67fc0f083d752e635e75a745358a2c27eec47ab09df621cd78201214d180004b4092d54c3fa8dfd11feb82a4642b916379a2743a1a5bc265cf9e5dec1e82dd44a50cdda48c4b7f1618d39cfb324c488aa599d2301752c4ca0c45eacf526654fbc4d7f68938a621a9be9616f32d2ce6228f96fbd3c04894ca7cdbae4cac958905267669627b8e53b75dcf16e98adcca703e9f5bf39a25f2897d75615f0c07a68eb4ee18bd6e4270d4eba64461a4379be48f299d0503c115e1cabc5a640485e5203014b951b6b63c46618273495440a530dbed46c7748d0a85e39404af0927395622bf353e5f9246bf4270c86da06731658ae424422989e8347d0e104f4cf33d8dd193548a0fbdae540b467ab3dffc17e8d39824784645ee4f73f6ec2022319e3275f0cbf9dbe7c77fedef892df6ccb7d863c90443c80feceada25b3ee93f7844734fe609a4bb23a82fd3dfb053a85c0d1098929a78a0a2ed10b7b7fef650cb3668c43b2bff7c3a76a9052b6f0df1036238a86f8185632cc8524a6eb7bc8755113d591b7fad43581fb718c014ec739c5e81cabc4f80cac8e1aa8067f75c0ac3d8c35c08c02d6e78c1a805071b94581882f7502be0839b3cea518893cc5ec08317a7714d1d9ed503b4f713ea1dc77c254fb2c47e65828059d61398ee3664a2f141c25fd93f8ae6b3977e66e735010378e24e6d29424a7710108c51ae39c60a94c86f9648a27c41f8ecc77973a02ec33ca3f1e2109b16a5a6fa0f6733d553003d3e280cd2c87b2a06ae1773a1a33140caae4c069346b03574fe8263123120aa87f48823fe55101434a1f332aa922d10637a782313127d136ee3a8dfa69cb7bd05de1639862ca8ab3715bebd80a5cfbe05d0a8e99969f0cce78db64964ce6944762ae4914dd03f10c92eca46c970dcec84d2672650ace16bb39b497190c0b45b924a14e80abbd16b5d1743d5d1ca8d5f1964552d557cbb1da0dbdb2f95be3ead2fc1c55bbf2ef4eea8dbaf3eddbd6d7e2355104016bd40105031dee815e08bfd0954a47249a4126401341f694019540a314df0486eb784d03d9dac0d6866bf2f22038c30b31556bd0e5aa46cfd65d465861f0b774b686d0dbe0dc2e1f1363112d903e84e0f402e99a0d8caaf20d34abc665698294430a51c8b094c1dd9cf5ba5935bbeafcde2bc17f17d31ca8663d4d46ffcf366d2c761cf2b1cc8ebfbaefe7a98434658089a61c292295b53bf00144433123293cd68e7607dbd5cd8a8a4a0a9e6e2cfad38ba73dd334d75c6aa36f43ecd27482e6345249e0351d94103a4954d0769686c592ef592da75da3fcb85cf7ad76ad06c3a7884681719602d8f58de378ce355482ccc3d5cd838910b3444865e328a5dcd65a648362702670748d95c2fa4e039984fb8b5dab357e8ab3806a38107b2be3931febf0e3a47eea343a56a7f9aa39745ace611e24222587d706c20c4afaf2ecf5a87ff5ee62787dde3f7b6bf4b64fd0783d476b72b47a20af09d252ee4ff4e7f8fea47e79e81591f183648afe2a046e8d57f9bc730a29db82e8bdd4ae124af27c8106ec9fbf05ea8f4e2ecefaa3fee86a38ea9f8dfa9b72f76d943bdb32ae523b3c71db0df77efefd5c5109c670c1e130973f8ef1eee8eea6453755e08e785c115656a07f372fdfcb1b726a1e6a7aa5c756bb86da4d7478d0f65cf71896e0c2e9de5dfa5f24a8b818fd9729eac23b564ee2c0d08e95f055d98a2f6546420a2f7122b5d289d1db38ddb5f12384ed7b8570f9116e7155ca10e611bc6870a01beefa9974af7c3ee2116bc305441f28dc59f405065e5b7bff02bc814ff3, 0x789c6d8f410e82301045f724dc610e2044c12031c65891052676a15ca08111abd09252165cc43b780dbd98140d71e16626f3fecf9f99ad1457d92adbb22d3065df361aa1ee11b4023436da1db548aa9cb3122b147a3252c7714c1be7f4c251a90ea2f2f59040e8ee98104a681a539250621c4469de689ec1810956a0fa4949b184254c7d0f020f16a10f6100cf7b0fe610ccbec0f8e28a71e3d49f659ba6c68c9f79262bb72a6065542d977fd5f570e5e9d6d5d80730912bce44efccc60f86f206713f49eb, 113, 'INBOX', '<140901d4f040$76afc170$640f4450$@specificom.mg>', 'html', 1, 0, 0, 0, 0, 0, 'EDIT'), (21, 1, NULL, '2019-04-11 13:56:34', NULL, '=?iso-8859-1?Q?Thierry_Cl=E9o_ANDRIANANTENAINA?= <thierry@specificom.mg>', 'dev@specificom.mg', 'dev@specificom.mg', 'Logo SPECIFICOM', NULL, NULL, 0x789ccd576d6fdb3610febc00f90fac82a52f885efd125bb6bc788edd66688c2149b70f5d11d0126571a5484da4ed78c57ed07ec7fed88e92ecc4add3b8683a0c862d93bc7beeb9e3dd91ea262a65e826655cfaf3c098e5dc976142522ccd9486b99022566628527f9e32a392139f9313714c43523d561a8b1d3416228f56f26960244a65be6d572ad65ac50215bb54b13dc7a9dbae678b744d6eadb8582cac45cd12f9d4bebab02f8603537b5a778c5e372138ea7553a230d2c226f96346e7c1407045b832af9619416139080c456e94ad353b284c702e890aa81466abd5689bae51a1709c92e025e124c74ae4b7cae72bd2e857700eb90df42ca64c919c442825119da5cf01e28969bea5317a924af1aed7956ac9486ffe9bff027d989004cfa9c8fd59ce9e1d4424c633a60e7e397ffdbcf3d7fe9ed84166b1838c25130c2e3f20d5b54b66dd276f098f68fcce345764b507fb7bf60b3402c7d1298929a78a0a2ed10b7b7fef24865933c621d9dffbee433548295bfaaf089b134543dc81950c732189e9fa1e725dd44475e4ad3f754de07e1c6380d3494e313ac72a313e02aba306aac1b70e98b587b1069851c0fa985103102a2eb728e0f1a50ec0272e67d6b9146391a7981d2146ef8e223abf1d6ae329cea794fb4e986a9be5c89c08a5a0322cc771dc4ce98582a3a47f12df752de7cedc6d0c0ae2c691c45c9a92e4342e002159639c132c95c9309fcef094f8c3b1f9e6527b807d46f9fb2324c1574deb15e47eaea70a66a05a6cb099e59016542dfd765b63868241961c388d666de0ea095d2466444201f90f41f0673c2a604869634e255524da62662418130b12ed62aedda88f8ebd07cd15368629a6acd81bf778135b81691fac4bc131d3ed27833dde3598259305e59158681245f5803f83243b2dcb658b317293895c9982b3e5e36cda4906c3a2a35c925007c0d5568bdc68ba9e4e0e74dcf6564952e5d7b163b51a7a65fb53e3ead4fc18559bf2ef4e6a415df9f66de9ebe6355504016bd4860e067db807fd42f8455fa9fa8844738804f444687bca804ca0518a6f02c375bca6816cad606bc58df6f22038c34b31531bd0e5aa46cf364d465861b0b732b681d0db62dc2e8f89898896486f4230ba403a6703a3ca7c03cdab71999ad0ca2184286458cae06ecc7addac9a5d577eef47c17f17b3fc08b8663dcd46ff66db240b89433e9159e7b372438e7efee9f1e006e000c58ca47092edc252d71d2a922278ba357f47174f7ba6696e4069a5af43ecd2748a16345249e0351d94103a4d54d072568ac592ef59c74eab4679a75cf7ad56ad06c3a7884681719602d8f58de378ce356caaccc3f525828910b3444865e328a5dcd66dc586e2e74ce0e81a2b85f5f50422647bae5dab357f88b3806a38e8db56c6a7dfd7e1cf697de434875663e4b607f5a67398078948c9e1b5813083ecbc3c7b39ee5fbdb9185e9ff7cf5e1bbddd0334d98cd14667599fad1bbd65d5b94ff5a7737f503fcd918ac8e4413245a914bd6a83577974394557da81e8bdd4ae124af27c8906ec9fbf05ea8f4f2fcefae3fef86a38ee9f8dfbdb62f77594dbbb32ae423b3c755b0df77efefd5c5109ca7057e130977f19e3c7a3fb3825ba2d031f89c715616506fa77e3f2adac21a7e6a1a6575a3c6ed550ab890e0f5a9eeb766009ee8eeedda5ff45808a3bce7f19a22ebc2ee5240e0c6d58095f95a57822331252781f13a9954e8dded6e9ae8dbfa0b17d2b172edfc385ac0a19c23c8277060e74c3c73e93ee6d9f5f7022db7097d01b0ad70f7d178137d0debf25cd3d21, 0x789c73cacfcbca2f2dd2e1e5e2e5520011ae790a015e709e737e514a66624e6a6e6a5e09588daeae2e88822b08c9c84c2d2aaa5470ce39bc325fc1d1cf25c8d3d1cfd12fc4d5cfd1d3cf11a4c2b1a824b3b8243359c137312f313db508c99490d41c052b0503632305332305730b63050b338543d38002260a66865001b09b721333412a4b2096391417a42667a66526e7e7eae5a62bd880644bf2adb0cada815d199c5d59900a3420312fa52833310fa83219ee03300100598e4434, 115, 'INBOX', '<146401d4f055$3bed7090$b3c851b0$@specificom.mg>', 'html', 1, 0, 0, 0, 0, 0, 'EDIT'), (22, 1, NULL, '2019-04-14 19:04:48', NULL, 'NOREPLY <noreply@specificom.mg>', 'dev@specificom.mg', 'dev@specificom.mg', 'Nouvelle connexion à un appareil', NULL, NULL, 0x789c9554db6ed340107d47e21f86458817ecb5692a1ac70e82b61248502a08b7c78d3d4e56d86b77779da454fc0baff01bfd31666da74a7aa1ed832fbb73396766ce6efce8e0c3fee4fbf121cc6d59c0f1e7d7efdeee03f338ffbab3cff9c1e400bebd99bc7f07a11fc0440b65a495951205e787470cd8dcda3ae27cb95cfacb1dbfd2333ef9c8572e57e882fb5fcf6e44fa99cdd8386ef15665a14c724d9670381c76c1ce1545368e4bb4029ca787278d5c246cbf521695f526a7353248bb55c22cae2c77912348e7421bb44963736f8f011fc756da02c74755b3c0a24017a47045b4e0fc37340a445d0b8db28879e7181b7b4a6e9610fac4a9316cec97422acf21d217359cc154a43f66ba6a5446db45a523788c8823f8e5dfe295e7b9f37225b62e0ec413859ca90852aa07b5334f1b6b2bb5d4c4efa6444190e5c3c1e8bf09e0ec3a6b4e0c3d237f6204e15ebdea377251cae234024393f30c6a99f78625cad9dc4630ad8a6c04b5c832a9661104b013d4abfe33ba401470b6516a5b6dcb21c3b4d2c229220255291cfd8a79dbec71ccbb794fabec940626a66e4e8530a493edb633a2a0a96b090b68fc34cf9ecbc5dad4225dafdbdc095bcacccea330089e90ae6c0fa1e9c9d6506d7312d635e75e103dc95e8897f3c3bced5bc206bb64e20e90b796ceba11dc17b7c578f07cb75eb135c75b8b59a7eb64e58e507817d193d78dcc5cfa3581cbadfb52350616ee75fed7a2e91052ea1f8805a6848134e31e7d8d06f41f0ef8ab5af3e74138745cc2bd2818f8f049526b413d4563495e5de267609e524c8b511742da670ec43485c59fb46b40a4562ea483444594e549239405d368875348b7294974c65006ff6a917d47af391eec9206b78e22bb452e5bf2d896cf95feb679d9b64ce8c2d3987717a4a11bd2d498ca5ca655e99733ae1a3143ded0e1e4195d8eb2307ce7a54ee655896cfcc51d5949fd28f1a23be77f622e3647ccfb716eee7493bd6ad9a69b57956d95758fd075692f76ef1877c5d22fdded3e7ef8e01fa6a750e9, 0x789c358e3d0ec2300c85f748bd83b72ea53f8801d8b8000b52f72818c95248429c5488d3b0c2357a311c0a8b87a7f77dcf479f27b416c178e7f04edec1fc84ec4087a023921d7d6698ca99df0979e9998411f484469a08eee7a8d41f02110e9bee1062b7ee875d510edb7dbf69e1446084a8911304bd981be05a98ef48b09a52532999e16c133e2466d026d14465141d184bb7ac5d02ceb10c592a21adcec82c8a76c4481792ee15595e5ad0f955a94a7d00793b54f4, 116, 'INBOX', '<5cb37640aee5e@specificom.mg>', 'html', 0, 0, 0, 0, 0, 0, 'EDIT'), (23, 1, NULL, '2019-04-15 11:43:02', NULL, 'NOREPLY <noreply@specificom.mg>', 'dev@specificom.mg', 'dev@specificom.mg', 'Nouvelle connexion à un appareil', NULL, NULL, 0x789c9554dd6ed33014be47e21d0e4668374b9cd056ac695204dd2490c698a00cb87413a7b5489ccc76fab369efc22dbcc65e8ce3249dda7563db457eecf3f37de79ccf0e5f1c7e1e8d7f9e1ec1cce4199c7e7b7ffc7104c4a1f47b6744e9e1f8107e7c187f3a06dff560ac98d4c28842b28cd2a3130264664c1950ba582cdc45c72dd4948ebfd0a5cde5dbe0f6d7311b916e6212320c6bbc659e491ddd91c5eff7fb4db075e52c198639370caca7c3cf2b318fc8a890864be38c5725271037ab8818be34d4460e209e31a5b9892a933a0704e83034c2647c785254739e65dc0649be445a70fd1b2a09ac2c99e2220b69e3186ab3423783086de2586b32747326a46311f1cb155cc284c5bfa6aaa86482db59a10278c9391fc095fb80579aa6d6cb9658bb58108765622a0388b11eaeac79521953c885427ef725f2bc24ed7707ff4d009777595364e86871c103f00fca65bb91b25c64ab00344eced15c89b4352cb898ce4c0093224b0650b22411721a80071daf5cb69fc10d2283cb8d52eb6a6b0e098f0bc5ac22029085e483ab90d6cd1e86b499f7a44856383036b173ca98469d6cb79d2005855d8b8887e3c779b65c6ed6ba64f17a5de78ec842246616f89ef70a75655a08854fb286aa9b1391a6394f826849b642bc9d1f6675df22d2eda1895a405a5b1aeb46705bdc16e3eeeb5eb9246b8e0f16b34ed7c8ca1e21ff31a247af7b99d9f46b02b75b7756541ae6f675fdd770dd20c4d83f60731e2306c719b7e86b34c07fbf47df958abef6fcbee5e27b41b7e3c25781ad05b9c7b541793589f741ef614c8d51664c987d0ba2abccf00bdcd5c06223e6c242728994c579c5a4015d298b9309bb2950745a630677b7c8b6a3771c0f724b835b47913c20972d796ccb67a7bf755eb22d13bcf0144f9b0b52e30da94b1e8b54c445eee6532a2b36e5b4c2c34913bc1c45a669e7ad8af094e0ad79668facc07ee4fca63bd77f42ca36474cdb716eee3493ddb56cd34d8bc2d4ca7a42e8bab437bd47c6ed58daa5bddd87cf9ffd03988050df, 0x789c358e3d0ec2300c85f74ab983b72e85b6fc0cb0710116a4ee513092a59086388910a761856bf4623814160f4feffb9e8f63ca682d82199dc33b8d0ea6272407da7b1d90ec3026865ccef48ec873cf440ca0331a6922b89f43557f0844d86fdb830fedaaeb7745d977fbcd7a09270223448d1cc1ebd9dc00d7c27c47bcd5141b55c90c271bf1213183369132955174602cdd92761138853264a984b43823b328960306ba9074afc8f2d28c4e2f55a9ea03773554f0, 117, 'INBOX', '<5cb46036e698c@specificom.mg>', 'html', 0, 0, 0, 0, 0, 0, 'EDIT'), (24, 1, NULL, '2019-04-15 12:13:29', NULL, 'NOREPLY <noreply@specificom.mg>', 'dev@specificom.mg', 'dev@specificom.mg', 'Nouvelle connexion à un appareil', NULL, NULL, 0x789c9554db6ed340107d47e21f86458897da6b37ad208e1d042d08a4521084dbe3c61e272becb5d95d272955ff8557f88dfe18b3b653256da1ed832fbb73396766ce6efce0f0ddc1e4dbfb9730b76501ef3fbd387a7300cce3fccbe080f3c3c9217c7d3d797b04a11fc0440b65a495951205e72f8f19b0b9b575c4f972b9f49703bfd2333ef9c0572e57e882fb5fcf6e44fa99cdd8386ef15665a14c724d9670381c76c1ce1545368e4bb4029ca7873f1ab948d841a52c2aeb4d4e6a649076ab84595c59ee224790ce85366893c6e6de53067c1c5b690b1c1f57cd028b025d90c215d182f35fd02810752d34ca22e69d636cec09b95942e813a7c6b0b15f0aa93c87485fd4700a53917e9fe9aa51196d17958ee021228ee0ccbfc12bcf73e7e54a6c5d1c88270a395311a4540f6a679e36d6566aa989dfbf120541960ff746ff4d00a7d7597362e819f91323089fd6ab7e2317a52c4e22303439cfa096796f58a29ccd6d04d3aac846508b2c936a16410083a05ef59fd105a280d38d52db6a5b0e19a695164e1111a84ae1e82ce66db3c731efe63dadb2131a9898ba3915c2904eb6dbce8882a6ae252ca0f1d33c7b2e176b538b74bd6e73276c29333b8fc2207844bab23d84a6275b43b5cd4958d79c3b41f4247b215ece0ff3b66f09dbdb27137780bcb574d68de0beb82dc67bbbfbf58aad39de58cc3a5d272b7784c2db889ebcfec9cca55f13b8dcbacf556360e15ee77f2c9a0e21a5fe8158604a184833eed1d76840ffe13e7f5e6bbe1b8443c7250ca370e0c34749ad05f5188d2579758977c03ca69816a32e84b43b0ec43485c59fb46b40a4562ea483444594e58f46280ba6d10ea7906e5392e88ca10cfed522fb8e5e733cd8250d6e1d4576835cb6e4b12d9f2bfd6df3b26d99d085a731ef2e484337a4a93195b94cabd22f675ce4a8056fe870f28c2e4759183e78a6937955e2a3dd5752654892f9ec8eaea4be9478d1a5f3df31179ba3e6fd583777ba095fb56cd3ceabcab60abb43e8bac427fbb78cbb62e997ee961fdfbff71728d65387, 0x789c358e310ec2300c45f748bd83b72e851210036c5c8005a97b148c642924214e2ac46958e11abd180e85c5c3d77feffb18ca88ce21d8e03dde2978989e503c98184d427243280c633dd33b23cf3d9b318119d14a13c1ff1c8dfa432042bded0f31f5eb95de55a5d67bbd59c289c00ad1226788663677c0ad30df91e80ce5ae5132c3c5657c48cc606ca691ea287ab08e6ec5f80c5c521d7254435a9c915914cb01135d48ba5764796946a757a31af501763354ee, 118, 'INBOX', '<5cb467597c3fa@specificom.mg>', 'html', 0, 0, 0, 0, 0, 0, 'EDIT'), (25, 1, NULL, '2019-04-16 09:40:50', NULL, '=?iso-8859-1?Q?Thierry_Cl=E9o_ANDRIANANTENAINA?= <thierry@specificom.mg>', 'dev@specificom.mg', 'dev@specificom.mg', 'DOSSIER', 'specificom.mg@gmail.com', NULL, 0x789ccd576d4f1b3910fe7c48fc87e9a283b6625ff34258b2b9a6015aa41255407b1f7a1532bb4ed657ef7acf761272d5fda0fe8efeb11bef2640da5052353d9d2202b6e7e599f1cce3a19dea8cc375c673158e236b24f350c529cd88b233164ba1c440dbb1c8c271c6ad999cf8969c180c584c67bfe61a93153426422673f92cb252ad8bd075672ace8d8a832a6ea5e2069e5777fdc015d90db81bc5c964e24c6a8e9043f7e2cc3d3bead926d2ba6775da292549a79d514dc008dbf4af111b473d916b9a6bfb625a5088ab4564697aad5da37900714aa4a23a624ad8ad5663dff6ad99959c64347a41732a8916f256f9740e1a7ec7e0c06fc0e301e39a4a9a40461336ca9ea08947b6fd8e0de051a6c4fb4e5be929a79df11fe153f87845533266428623c91f6f257440465c6fbd3d7df5e4e09fcd0db182cc64051947a504437e40aaed56c8da8fded13c6183f7b63d076b22d8dc709fc231060e8774c072a699c8153c7537379e0d70d71e90986e6efcf271b6c8189f862f291f53cd6272802705c985a2b61f06e0fbd0843a04379fba0170bf1dab47b22bc9089c129d5a5f18ab43036af853479bb5876df5086768eb4b440db430c3726b05233e3709f82ae4c23955a22f6446f82e70767795b0f1edd238cf881cb23cf4e2ccf8ac56f695d01a3bc3f13ccf2fb43928312af6370d7ddff1eeecdde6a0046eed2a922b5b51c906a5412cd6019194286d73920f476448c3a3befde6dc444042cef20fbba0305603eb25d6be345b2532542d2fd82e249605d3d3707fdfd88c05c72ad9f21acd5acf371ba649ec84c602eb1f93108ef2a434432b1f63a698a6c91237c7827331a1c92aeef61bf5e3bde04177a58fa38c305ede8dbfb7685ba3eb10bd2b91136ee8a7c03b5e3599159209cb13313120caeec1787a697158b5cb1267f4ba1052db22e7d3f55cdab3029725a39cd3d824c0375ecbda68fa81290ed8db0fe64532abaf3dcf6935ccc9f2dfc6ae29cd2fad1a57e1dd4d23683adfbd6d7d435e434d0151c33e3218f27007f9428425afcc7844c11833819c88b4a72dac049664e43ab27c2f685ae01a05d7282ed0cb83c639998a915e305d9d1aebc5a2cb846882fee6ce162c74963877ab67e24a24533097101d9f81a9d9c89a55be05e3d9ba2a4da4724c21c49c2815ddcd59a75dcc766f3abff35ce47f8a91843e316f056139d945d845c70033dfc532a552623bbf52c5c137e55ed3d1b5ad4750c8cf9f0aac23099c2a4884520c2b1f6286dda39418292063f48fa71034a13b968c83dac12f4c78c109d3cefa30d9f03a155ac4a260147a27fd872ddbd0a352337ce98986840206a35842f398aea4fb7615a9b393e7ab88f547d9e74f5240af4f5e9faf2f273d2c124638cd705a58e3f5b70d0742d9a0d1ce522e393edbe9d8b6bde0d228fd98c536cb863061894ea3a0e9414ad930d551cb9b2b964761e0ec79ad1acb0faaf3d069d56ab8dc019644d64986c62eaf3d2ff02eb1c1948c6f063a2e62c253a1b44b928ce5aea178178938e7822497446b624645cca41b34dc5aadf5dba0889831876fa853e4c35febf8c761fdb85e6b397b5def28c0f5b68c5291d1ed4b0b0847a6383f79d1ef5ebc393bba3ced9ebcb23aab27e86a31470b2c7f33e72cf0fcfc153d349f83fb93faf5a5cf805c3d08a6a4adf2dd58c0558d115ef942ac00f45e681729d2899c428f7ffe24a0db3f3c3be9f6bbfd8ba37ef7a4df5d96bb1f83bcbf2ae2596a8f0efd56c3bf1f7f17d945a132ce8d39eec9ef43bc3eb8eb69d16515b8261c1794571518decdcbcff2065e2d80665079dc6bd5a0d584edad56e0fb07788473bc7ff7e87f91a072defc2f53d4c67f5d251d449671ac45a8ab567ca60a1a9b1753644e36b43a4bb7db2ef90e62fb59219c7fc0e1789632207982ffbfe508375ef79b742f7d7ec713ebe25c672e14474133176a1c15ff05b54cc5a6, 0x789c6d50414ec33010bc57ea1fe6c68554d0a2505508e1861e72c0aada8abb952ced426247b653d18ff0877e837e0cbba902072ebbf6cc7a76c673a3df4d6b2195f6a4156b753d1c0c07886549ed67e25b34f6746c94258b8a1c4ae31c9375283829c939d33aa87d781e588c5388bde50aee2a144f682ac57ed44b2658ee8c3785699890e5b2c332b29edfb8501e25216c735c922ee8c2be767d95cfbb836cebd3d11a64522dd7bd74666cc9aaa29ab4ffcd9024496cfd7db30bdeed0159753a1a08f9bcca851472b3902297224e88e0c5792ef0a2b4da92fda3b2a10a33dc4cc648c7b89f4e304df1fd15803ba4b71720ce2d6ac571d277cb9e5c4345cc67ea51bdc54364bd99fdcb3e9e5dae3f0e0d0501a54bcbe16b775cf409cee507c39c7a73, 119, 'INBOX', '<006401d4f41f$58294450$087bccf0$@specificom.mg>', 'html', 1, 1, 0, 0, 0, 0, 'EDIT'), (26, 1, NULL, '2019-04-16 14:54:42', NULL, 'NOREPLY <noreply@specificom.mg>', 'dev@specificom.mg', 'dev@specificom.mg', 'Nouvelle connexion à un appareil', NULL, NULL, 0x789c9554dd6ed33014be47e21d0e4668374b9cac2dac695204db2490c698a00cb87413a7b5489ccc76fab369efc22dbcc65e8ce3249dda7563db457eecf3f37de79ccf0e5f1c7e3e18fd3c3d82a9c93338fdf6fef8e3011087d2ef9d034a0f4787f0e3c3e8d331f8ae0723c5a41646149265941e9d10205363ca80d2f97ceece3b6ea12674f4852e6c2edf06b7bf8e598b741393906158e32df24ceae88e2c7ebfdf6f82ad2b67c930ccb961603d1d7e5e8959440e0a69b834ce6859720271b38a88e10b436de400e229539a9ba832a9b34f800e43234cc687274535e359c66d90e40ba405d7bfa192c0ca92292eb290368ea1364b743388d0268eb526433767423a1611bf5cc1258c59fc6ba28a4a26b89d152a80979cf3015cb90f78a5696abd6c89b58b0571582626328018ebe1ca9ac79531859c2be4775f22cf4bd27e77f0df047079973545868e16173c007fbf5cb41b29cb45b60c40e3e41ccd95485bc39c8bc9d404302eb26400254b1221270178d0f1ca45fb19dc2032b85c2bb5aeb6e690f0b850cc2a220059483eb80a69ddec61489b798f8b64890363633ba78c69d4c966db095250d8b58878387e9c67cbe566ad4b16afd675ee88cc4562a681ef79af5057a68550f8242ba8ba3911699af3248896642bc4dbf9615af72d22dd1e9aa805a4b5a5b1ae05b7c56d30eeeef5ca0559717cb09855ba4656f608f98f113d7addcbcca65f11b8ddbab3a2d230b3afebbf86eb0621c6fe019bf1183138ceb8455fa101fefbafe9bb52d13dcfef5b2e7e27e8755df82ab0b52077b83628af26f12ee81d8ca931ca8c09b36b417495197e81bb1a586cc44c58482e91b238af9834a02b6571326137058a4e6bcce06e17d976f48ee3416e6970e3289207e4b2218f4df96cf5b7ce4b366582179ee26973416abc2175c963918ab8c8dd7c4259920b492b3c9c34c1cb51649a76deaa685ae49c0ccfec9115d88f9cdf74e7fa4f48d9fa88693bcef59d66b2db964dba6951985a594f085d95f6a6f7c8b82d4bbbb4b7fbf0f9b37fa3e850e4, 0x789c358e3d0ec2300c85f748bd83b72e8552fe24d8b8000b52f72818c95248429c5488d3b0c2357a311c0a8b87a7f77dcf479f07b416c178e7f04edec1f884ec4087a02392ed7d6618ca19df0979ea998411f480469a08eee7a8d41f021176dbf61062bb5c74bba2ec56fbcd7a0e270223448d9c20e8c9dc00d7c27c4782d5949a4ac90c679bf02131833689062aa3e8c058ba65ed12708e65c852096976466651cc7b8c7421e95e91e5a5091d5f95aad4077a5754f6, 120, 'INBOX', '<5cb5dea20c084@specificom.mg>', 'html', 1, 0, 0, 0, 0, 0, 'EDIT'), (27, 1, NULL, '2019-04-17 06:47:22', NULL, 'Nantenaina Fahendrena <dev@specificom.mg>', 'dev@specificom.mg', 'dev@specificom.mg', 'Test d\'authentification', NULL, NULL, 0x789c6d8ec14e84401044ef26fe433b174fd092bdb83a701036d164d58d19a31e67a159260106a159e0a7fc097f4c0734f1e0ad3b55afaae459f218abb7dd060aae4ad83ddf6cef62101ee2cb2a464c5402afb7ea7e0b817f01aad57567d8d85a97889b0701a2606eae108761f087956fdb03aa271c5d56e0e09fd3e33fa49f71262239f78d555977e13f29c17abd5e6067259d45b222d6e09c1ebdf7e6188ad8d64c357b6a6a4840ba7ca1601a191d790d69a1db8e38ec39f72e056024d9704991a28e213bd73d17df88c94daadd36898b2c7169dcdb6cfaf5527db41341465069534263fb164aed5a7373e8db9977ead1724bb0b79f1fbc587d89738e9c3745a7275fa3277e95, 0x789c0b492d2e5148514fcd2bcbaf4c55484955c84dcccc5128c82f2d52c8495448cecf4bcb4c2f2d4a2cc9cccf03c996e59714a52a24e51f5e570251aac7cbc5cb05007417188c, 121, 'INBOX', '<5cb6bdea9a613@specificom.mg>', 'html', 0, 0, 0, 0, 0, 0, 'EDIT'), (28, 1, NULL, '2019-04-17 06:48:43', NULL, 'Nantenaina Fahendrena <dev@specificom.mg>', 'dev@specificom.mg', 'dev@specificom.mg', 'Test d\'authentification', NULL, NULL, 0x789c6d8ec14e84401044ef26fe433b174fd092bdb83a701036d164d58d19a31e67a159260106a159e0a7fc097f4c0734f1e0ad3b55afaae459f218abb7dd060aae4ad83ddf6cef62101ee2cb2a464c5402afb7ea7e0b817f01aad57567d8d85a97889b0701a2606eae108761f087956fdb03aa271c5d56e0e09fd3e33fa49f71262239f78d555977e13f29c17abd5e6067259d45b222d6e09c1ebdf7e6188ad8d64c357b6a6a4840ba7ca1601a191d790d69a1db8e38ec39f72e056024d9704991a28e213bd73d17df88c94daadd36898b2c7169dcdb6cfaf5527db41341465069534263fb164aed5a7373e8db9977ead1724bb0b79f1fbc587d89738e9c3745a7275fa3277e95, 0x789c0b492d2e5148514fcd2bcbaf4c55484955c84dcccc5128c82f2d52c8495448cecf4bcb4c2f2d4a2cc9cccf03c996e59714a52a24e51f5e570251aac7cbc5cb05007417188c, 122, 'INBOX', '<5cb6be3bab6e2@specificom.mg>', 'html', 0, 0, 0, 0, 0, 0, 'EDIT'), (29, 1, NULL, '2019-04-17 06:50:45', NULL, 'Nantenaina Fahendrena <dev@specificom.mg>', 'dev@specificom.mg', 'dev@specificom.mg', 'Test d\'authentification', NULL, NULL, 0x789c6d8ec14e84401044ef26fe433b174fd092bdb83a701036d164d58d19a31e67a159260106a159e0a7fc097f4c0734f1e0ad3b55afaae459f218abb7dd060aae4ad83ddf6cef62101ee2cb2a464c5402afb7ea7e0b817f01aad57567d8d85a97889b0701a2606eae108761f087956fdb03aa271c5d56e0e09fd3e33fa49f71262239f78d555977e13f29c17abd5e6067259d45b222d6e09c1ebdf7e6188ad8d64c357b6a6a4840ba7ca1601a191d790d69a1db8e38ec39f72e056024d9704991a28e213bd73d17df88c94daadd36898b2c7169dcdb6cfaf5527db41341465069534263fb164aed5a7373e8db9977ead1724bb0b79f1fbc587d89738e9c3745a7275fa3277e95, 0x789c0b492d2e5148514fcd2bcbaf4c55484955c84dcccc5128c82f2d52c8495448cecf4bcb4c2f2d4a2cc9cccf03c996e59714a52a24e51f5e570251aac7cbc5cb05007417188c, 123, 'INBOX', '<5cb6beb5bd007@specificom.mg>', 'html', 0, 0, 0, 0, 0, 0, 'EDIT'), (30, 1, NULL, '2019-04-17 06:52:13', NULL, 'Nantenaina Fahendrena <dev@specificom.mg>', 'dev@specificom.mg', 'dev@specificom.mg', 'Test d\'authentification', NULL, NULL, 0x789c6d8ec14e84401044ef26fe433b174fd092bdb83a701036d164d58d19a31e67a159260106a159e0a7fc097f4c0734f1e0ad3b55afaae459f218abb7dd060aae4ad83ddf6cef62101ee2cb2a464c5402afb7ea7e0b817f01aad57567d8d85a97889b0701a2606eae108761f087956fdb03aa271c5d56e0e09fd3e33fa49f71262239f78d555977e13f29c17abd5e6067259d45b222d6e09c1ebdf7e6188ad8d64c357b6a6a4840ba7ca1601a191d790d69a1db8e38ec39f72e056024d9704991a28e213bd73d17df88c94daadd36898b2c7169dcdb6cfaf5527db41341465069534263fb164aed5a7373e8db9977ead1724bb0b79f1fbc587d89738e9c3745a7275fa3277e95, 0x789c0b492d2e5148514fcd2bcbaf4c55484955c84dcccc5128c82f2d52c8495448cecf4bcb4c2f2d4a2cc9cccf03c996e59714a52a24e51f5e570251aac7cbc5cb05007417188c, 124, 'INBOX', '<5cb6bf0dde54f@specificom.mg>', 'html', 1, 0, 0, 0, 0, 0, 'EDIT'), (31, 1, NULL, '2019-04-17 05:56:17', NULL, 'NOREPLY <noreply@specificom.mg>', 'dev@specificom.mg', 'dev@specificom.mg', 'Nouvelle connexion à un appareil', NULL, NULL, 0x789ccd56db6edb46107d8e01ffc394469a17534b4a946dc9a202d9b29b02691ab46ada3e052b72452dbc5c32bb4b498e917fe96bfb1bfeb1cef222ebe2d4ce5b0d5822f73273e6cc99190dbe1bff7c39f9f3fd15cc4d2ae0fd6f176f7fbc04c725e4f7ce2521e3c918fe7833f9e92df82d0f268a4acd0dcf2415845cbd73c0991b93f709592e97ad65a795a9844c7e212b6bcbb797eb47d76cdc6cc526768683d2df2a1552878f58f17bbd5e75d91e65341e0e526628d8932efb54f045e85c66d23069dcc96dce1c88aab7d0316c6588bd790ed19c2acd4c5898997be600190e0c37820ddf65c58209c1ec25c956080beeff824202cd73aa181703521d1c68738bc70c7aa80d475a3bc3564ab974ad47fc660aee604aa39b4465858c715964aa0f478cb173f8d27ae2d46c36b3a76c88e511ebc4a58227b20f11c6c394dd9e16c66472a910dfd70c795e3ceb05e7ff6900ee1edb9d214257f3cfac0ffe59beaa176634e5e2b60f1a33e76aa6f8acde58329ecc4d1fa69988cf21a771cc65d2070f3a5ebeaabfced71e29dc6d845a465b62885994296a15d107994976fe65404ab2870352e57b9ac5b798303ab5791254a34eb66977108242d642c7c3f4633e6b2ceb779dd3a8792f6d87ce92c766def73def25eacad42e14fec78dab929cd0a9c8f9261735c85a88bbf6615ef2163a4117b7887548ca9d6a77e3721ddc16e2a0ddcd574e83f1c9601a7395ac6c09f9cf113d9efa2a326bbe01b04bdd87acd0b0b01ff7ff18a62b0f11f20774c122f4c130c7b5f7c61be0b37f4a46b9226dcfef592c5eb7df3d69c1af1ca905f98a6983f2aa0c1f837e85774a1fb9a0dc1c5b27ba10867dc6550d34327cc1ad4b261132ff5450694017cafa11dc2e72149dd668a1b51f64cde823e5e1ec6870ab149d27e4b2258f6df9ecf15bda75b665820d4fb1d9ba418a2ca2629e694374ce223ee35196b6d284d038e5921458a524c62ec985269dd72a9c672973861f6ced722426656b9aeeff1e10ba996b52e77573a54af1fece36ee5996995262df70b589f1b4fbcc7bbb3b315f008f43673cba08ae47e333b73d1e9fba817771e18efc8b3337b86a8f46fe75ef7a7cdd46175385bd1fb68ba7ca946bb21cdb1e362e9d091ec3d1b8330ec65798f5c3831716eee101947f1b22a9ca0eba5ddb2beb8cd6766cfbdc499bae071b5d506d701aa444f3c465d8cac4ebc2a41f5316f3220dcb85efed022a54452c145cde94ef114d736a45b6be572dd7f3ae5c89acc28d0386aa04e79df3712aa8bc41243c4d40abe8010acfd328961b68784a13a609b7e5547eba4c62a56639730d8f6edc6aca60af960973a9c4e386c5aecc5cc572468dbbf05b099fd94240bf0e94e4a07a4f1e94dceeed3433084e2c75f37a90b47b96353b9d1b4d22f72ff6090f4ebd7dc64fed523361023f68076c7ba275f626da48712a8ee10d130b8621d2e3ad1987bc33b7815627f4078ae11b5e9e830557d842e07f93e486a5350941b7c328a2de0264b90564b5a6b72cabc383a6a0f0a909e7e85935d5e4d97f48b3ef60899519c4eac4cfba62ed2f31b4ff2f4618852a, 0x789c3d8fb14e033110447b4bfe87edaec9dd254801912e3da2414a6f9c0556726ce3b57d88afa13d7ee37e8c750e90254b1ecdbc193f8652d139041bbcc70f0a1e962f281e4c8c2621b953280cb55dcb77465e7d36630253d18a13c1ff32b4fa0b81007777e331a6f166bbbb6fc8edfeb0bf1de089c04aa243ce10cd4ade007792b9964467286fb4921a2e2ee3a7c80cc666aad44ad18375f45e8ccfc025b522474da4fe8ccc82184e98e885c47b4196496b7499b55a4fdff75a3d74e699d1cb943342a524cd67e3b96db3a1a4d4e2cbece4a32978a94330f2160ad4656ef86546d9bff68757b2840e6413adac63359c07adde728e7c18c7699a0673d56cb88cff3ead7e0060d58a60, 125, 'INBOX', '<5cb6c001aec58@specificom.mg>', 'html', 1, 0, 0, 0, 0, 0, 'EDIT'), (32, 1, NULL, '2019-04-17 08:28:26', NULL, 'Nantenaina Fahendrena <dev@specificom.mg>', 'dev@specificom.mg', 'dev@specificom.mg', 'Test d\'authentification', NULL, NULL, 0x789ccd54dd6edb3614bece80bdc329036c37a519d94a13db92073b4a9602dd160c2eba5e05b4782c13a1448d3af2cf1eaa2fd1172b29d94db7eea2973560913afccedff7f1287991fd71b37cff700b1b2a0d3cbc5dbc797d038c0bf16e742344b6cce0affbe56f6f201a5cc0d2c9aad1a46d258d10b7bf33601ba27a22c46eb71bec4603eb0ab1fc53ec43ac28381fb79cbef01c28526c9674f9f6a5a99af47fa244e3f1b8770e50946a969448120292e3dfaddea6ecc6568415f1e5a1460679ff9632c23d89e039857c235d8394b6b4e6d70cc42c214d06674b6c08d4cfb2a58d77d16b9dcb505b22fae344f41957561d4e58acb6f680a0104aa90dd4b6756064c8bad645eb3aff70bab5e41056f6e307eaa18344e92d6895b26cbe88efe6d9351f66d9158f2f160b3e8f16d73cbe1dcee7d1ddf82ebb1bfa6e57ce170a09c9954168e86030652beb143a4eb69e4054efa1b1462b38cf46599cdd4ed9ecc71fce12727e81ee97903a79eeb4a2cd042e2febfd146aa994ae8a639c6b6ff2f93ca90ed7bd08cd5105b9950d0d725b8a46171c431fbfb4543e96a8745ba69de1a760683c0f39a646574fdd7b2ecb5aeaa24a3ffbf5e6a3389d2537daef1990748517873dae8cac9e7c25ba2ca071f97329ba2e73557d518d2e65818dd03e5effe45e1734b6464e3a7fe2ceb695e2d6dfb602b9ac3c9c50f1ca7287354ae2db6850e83503697c5e061d39298b5f31d8a02e36de381cb3ff5017bf0ad4f5e713188e036be12a09e9ffa402f7675f131e5f5d7ccdf85530e5d6583781f3388a87314e61edb9e18dfe073d6014009d612d4b6d0e13983b2dcd4bb847b345dfa27c098d1f25dea0d3eb2978de919f4a3b0afaabf4ed93ee70b0d5ae6d06f0dd887c62e93309f1e508a5affa5f05056ec1b37aa4d7afe16efb25cc44d89dda39ffa6993ae91c3dcb1c313f629d827e3afdb31bf5a4fb6cf8f89f00277caf52, 0x789c3d8d3d0e83300c857724eee08d89b277ebdeb11730c1504b21a68913d42365e92572b1a620556f7a3ffade8382c2d4914bf226980856640b9b440f16c1889b79891e95c5fdda24ea0946291f3da797b639d5f77ddbdc3b1c0339739012fb18604217a006a6223d9387922d19f5e2f81509b07a2d1952c99e672e9960c3fa4d606561c364019df2c9ba250c5a1f9faa5bb80ec3beef173c3223ebf0dfb5cd171c314df2, 126, 'INBOX', '<5cb6e3aa33728@specificom.mg>', 'html', 1, 0, 0, 0, 0, 0, 'EDIT'), (33, 1, NULL, '2019-04-17 09:45:46', NULL, 'Nantenaina Fahendrena <dev@specificom.mg>', 'dev@specificom.mg', 'dev@specificom.mg', 'Test d\'authentification', NULL, NULL, 0x789c6d8ec14e84401044ef26fe433b174fd092bdb83a701036d164d58d19a31e67a159260106a159e0a7fc097f4c0734f1e0ad3b55afaae459f218abb7dd060aae4ad83ddf6cef62101ee2cb2a464c5402afb7ea7e0b817f01aad57567d8d85a97889b0701a2606eae108761f087956fdb03aa271c5d56e0e09fd3e33fa49f71262239f78d555977e13f29c17abd5e6067259d45b222d6e09c1ebdf7e6188ad8d64c357b6a6a4840ba7ca1601a191d790d69a1db8e38ec39f72e056024d9704991a28e213bd73d17df88c94daadd36898b2c7169dcdb6cfaf5527db41341465069534263fb164aed5a7373e8db9977ead1724bb0b79f1fbc587d89738e9c3745a7275fa3277e95, 0x789c0b492d2e5148514fcd2bcbaf4c55484955c84dcccc5128c82f2d52c8495448cecf4bcb4c2f2d4a2cc9cccf03c996e59714a52a24e51f5e570251aac7cbc5cb05007417188c, 127, 'INBOX', '<5cb6e7ba9e698@specificom.mg>', 'html', 1, 0, 0, 0, 0, 0, 'EDIT'), (34, 1, NULL, '2019-04-17 14:38:52', NULL, 'Nantenaina Fahendrena <fahernatt@gmail.com>', 'dev@specificom.mg', 'dev@specificom.mg', 'Re: Envoye d\'un mail officiel', NULL, NULL, 0x789c6d51414ec33010bc23f18725870aa49236500948dc08158903427c0139f136353876ba71a2f637bda17ea3f918765328080eabf5ceaec7b36326640b42d23450968294b9329d49d440d87d34672ca3948d3cb83ff9e15cf1ba9e0645c9a57a5d36c6627fedc8f27b845b4ffc8cbb4d8914427403bc75f96a1cdd41b7d96da2497c1d0de1856b8b9a4bcde1912f500b72150c944d188705e17c1a783a6b6281ed7d5d612ee7323765581641fa0762239e0e0a9b00876e9b93b4bb4dfc731765f2f7bdf6ffd681daae15faf7a8903a1e572bf88ef01657496648205d2a9cdb3872686d94144045767e359e0c0f7191545c08a98bc31cae9c4f8d53d0f42eb32a9d19fd661a1a7a65a7274f08ad696a40dd9ab51386e03541e526fa4645ddb6452d09968deb73d7a77c8190f9ff1208da5872b8b1dd36ec291f9c50c91596a82d1b550ee90df0f9e8c1972b87d6273552b800, 0x789c258ec10ac2301044ef85fec37897625510458a287810f11fd674d588ddd4350df837dea4df911f33c5d3eccc83d9d95a1628c76f37cab33c3b321ad602e50214924e27e512f18372be9a95639c483c0b5921ece9c6526b7258d71c36af968dbd58e39aa2b956a03c8bbd51ebb11a7a2b6c9ddc5da7e3e13e3082eb5e6009eecd30e929d907dac4ffa0d5d80716ab78768953e26a6e8cf3b0b66688f39a72e7635f0c853ba7b5a507372c3ef93cfb015a18472e, 137, 'INBOX', '<CANt0zhcFGNYY69dwwVaB23HzvauPjcqVLdntzW20b8RhpCvJxA@mail.gmail.com>', 'html', 1, 0, 0, 0, 0, 0, 'EDIT'), (35, 1, NULL, '2019-04-17 21:09:49', NULL, 'NOREPLY <noreply@specificom.mg>', 'dev@specificom.mg', 'dev@specificom.mg', 'Nouvelle connexion à un appareil', NULL, NULL, 0x789c9554db4edc30107dafd47f98baaa782171c28260b349aa16905a8952d46e69fbe84d9c5dab89136c672f20fea5afed6ff0631d2759b4cb4281875cecb99c3333c70e5f1d7d3e1cfe3c3b8689297238fbf6fee4e3211087d2efbd434a8f8647f0e3c3f0d309f8ae0743c5a416469492e5941e9f12201363aa80d2d96ce6ce7a6ea9c674f885ce6d2edf0677bf8e598974539392386cf0e6452e75744f16bfdfefb7c1d695b3340e0b6e18584f875fd4621a91c3521a2e8d335c549c40d2ae2262f8dc501b398064c294e626aa4de61c10a0716884c9797c5ad6539ee7dc06493e475a70f31b6a09acaa98e2220f69eb186ab3403783085de2446b12bb0513d2b188f8e50aae60c4925f6355d632c5edbc5401bce69c0fe0da7dc42bcb32eb654b6c5c2c88c37231960124580f57d63caa8d29e54c21bf8712795e9af57707ff4d0057f7593364e86871c903f00faa79b791b142e48b00344eced15c89ac33ccb8184f4c00a3324f0750b13415721c80073daf9a779fc12d2283ab95529b6a1b0e294f4ac5ac220290a5e483eb9036cd8e43dace7b54a60b1c181bd939e54ca34ed6db4e9082c2ae45c4c3f1e33c3b2eb76b5db164b96e724764265233097ccf7b83ba321d84c2275d4235cd8948db9c674174243b21decd0f93a66f11d9dd4313b580b4b1b4d695e0aeb835c6bb3b7bd59c2c393e5acc325d2b2b7b84fca7881ebd1e6466d32f09dc6ddd79596b98dad7cd5fc3758b9060ff804d7982181c67dca12fd100fffd7dfaae5274c7f3fb96cb8e17787d17be0a6c2dc82dae0dcaab4dbc0d7a0b631a8c2a67c26c5b105de7865fe2ae069618311516924ba42c2e6a260de85a599c5cd84d81a2d31a33b89b45761dbde778903b1a5c3b8ae411b9acc9635d3e1bfd6df2927599e085a778d65e901a6f485df1446422290bb71853961642d21a0f274df17214b9a6bdb72a9a940527f1b93db202fb51f0dbeedcfc09295b1d31edc6b9bad34e76d3b24e372b4bd328eb19a1cbd2f6f79e18b761e996f6768f5fbef807a1c450e3, 0x789c358e3d0ec2300c85f748bd83b72e85fe2ca86c5c8005a97b148c642924214e2ac46958e11abd180e85c5c3d3fbbee7a3cf335a8b60bc737827ef60794276a043d011c94e3e33cce52cef84bcf64cc2087a46234d04f77354ea0f8108fb5d7b08b11dba7e2ccaa1db77e3164e0446881a3941d0abb901ae85f98e04ab2935959219ce36e14362066d12cd5446d181b174cbda25e01ccb90a512d2e68ccca2d84e18e942d2bd22cb4b2bbabc2a55a90f79de54f5, 138, 'INBOX', '<5cb7880d93af1@specificom.mg>', 'html', 1, 0, 0, 0, 0, 0, 'EDIT'), (36, 1, NULL, '2019-04-18 14:05:11', NULL, 'Nantenaina Fahendrena <fahernatt@gmail.com>', 'dev@specificom.mg', 'dev@specificom.mg', 'Nouveau test', NULL, NULL, 0x789c7d8ec10ac2301044ef82ffb0e4e049dabb6e83e897c4666b5792a66eb605ffc67ff1c76c2b8207f132f0869961d0f3089ea53241c5589cd01e53774d836cb19c69b1f02cf60b4f04d171807e8a81525612c80c14028113e191e0f980cd6d48ba4707ad505399b9a169a72d93c8fd907baab9e13ac5225e8cfd6963e9ec7ba5f873268967172852a79fd8a2ebd50b47a84e41, 0x789c1dcccb0980301005c07b203d2c394b6a10ad24c4a7aee4c7260a76632f3666f03a8799723af22983565acda0e83850e9400db541a83221049013e10bf43e64dace10b9c75ae079659fa38d9bb1ff9065611710915a870fd3a21f73, 139, 'INBOX', '<CANt0zheQ6UkVG+dFJg86XVYAqT=GoyKsAEwiA=0vAK_tivF5cA@mail.gmail.com>', 'html', 1, 0, 0, 0, 0, 0, 'EDIT'), (37, 1, NULL, '2019-04-18 12:32:43', NULL, 'Nantenaina Fahendrena <dev@specificom.mg>', 'dev@specificom.mg', 'dev@specificom.mg', 'Test d\'authentification', NULL, NULL, 0x789c6d8ec14e84401044ef26fe433b174fd092bdb83a701036d164d58d19a31e67a159260106a159e0a7fc097f4c0734f1e0ad3b55afaae459f218abb7dd060aae4ad83ddf6cef62101ee2cb2a464c5402afb7ea7e0b817f01aad57567d8d85a97889b0701a2606eae108761f087956fdb03aa271c5d56e0e09fd3e33fa49f71262239f78d555977e13f29c17abd5e6067259d45b222d6e09c1ebdf7e6188ad8d64c357b6a6a4840ba7ca1601a191d790d69a1db8e38ec39f72e056024d9704991a28e213bd73d17df88c94daadd36898b2c7169dcdb6cfaf5527db41341465069534263fb164aed5a7373e8db9977ead1724bb0b79f1fbc587d89738e9c3745a7275fa3277e95, 0x789c0b492d2e5148514fcd2bcbaf4c55484955c84dcccc5128c82f2d52c8495448cecf4bcb4c2f2d4a2cc9cccf03c996e59714a52a24e51f5e570251aac7cbc5cb05007417188c, 140, 'INBOX', '<5cb8605bedbf5@specificom.mg>', 'html', 1, 0, 0, 0, 0, 0, 'EDIT'), (38, 1, NULL, '2019-04-19 13:58:55', NULL, 'Nantenaina Fahendrena <dev@specificom.mg>', 'dev@specificom.mg', 'dev@specificom.mg', 'Test d\'authentification', NULL, NULL, 0x789c6d8ec14e84401044ef26fe433b174fd092bdb83a701036d164d58d19a31e67a159260106a159e0a7fc097f4c0734f1e0ad3b55afaae459f218abb7dd060aae4ad83ddf6cef62101ee2cb2a464c5402afb7ea7e0b817f01aad57567d8d85a97889b0701a2606eae108761f087956fdb03aa271c5d56e0e09fd3e33fa49f71262239f78d555977e13f29c17abd5e6067259d45b222d6e09c1ebdf7e6188ad8d64c357b6a6a4840ba7ca1601a191d790d69a1db8e38ec39f72e056024d9704991a28e213bd73d17df88c94daadd36898b2c7169dcdb6cfaf5527db41341465069534263fb164aed5a7373e8db9977ead1724bb0b79f1fbc587d89738e9c3745a7275fa3277e95, 0x789c0b492d2e5148514fcd2bcbaf4c55484955c84dcccc5128c82f2d52c8495448cecf4bcb4c2f2d4a2cc9cccf03c996e59714a52a24e51f5e570251aac7cbc5cb05007417188c, 141, 'INBOX', '<5cb9c60fc2761@specificom.mg>', 'html', 0, 0, 0, 0, 0, 0, 'EDIT'), (39, 1, NULL, '2019-04-19 13:59:19', NULL, 'Nantenaina Fahendrena <dev@specificom.mg>', 'dev@specificom.mg', 'dev@specificom.mg', 'Test d\'authentification', NULL, NULL, 0x789c6d8ec14e84401044ef26fe433b174fd092bdb83a701036d164d58d19a31e67a159260106a159e0a7fc097f4c0734f1e0ad3b55afaae459f218abb7dd060aae4ad83ddf6cef62101ee2cb2a464c5402afb7ea7e0b817f01aad57567d8d85a97889b0701a2606eae108761f087956fdb03aa271c5d56e0e09fd3e33fa49f71262239f78d555977e13f29c17abd5e6067259d45b222d6e09c1ebdf7e6188ad8d64c357b6a6a4840ba7ca1601a191d790d69a1db8e38ec39f72e056024d9704991a28e213bd73d17df88c94daadd36898b2c7169dcdb6cfaf5527db41341465069534263fb164aed5a7373e8db9977ead1724bb0b79f1fbc587d89738e9c3745a7275fa3277e95, 0x789c0b492d2e5148514fcd2bcbaf4c55484955c84dcccc5128c82f2d52c8495448cecf4bcb4c2f2d4a2cc9cccf03c996e59714a52a24e51f5e570251aac7cbc5cb05007417188c, 142, 'INBOX', '<5cb9c627bd5a5@specificom.mg>', 'html', 0, 0, 0, 0, 0, 0, 'EDIT'), (40, 1, NULL, '2019-04-19 14:02:39', NULL, 'Nantenaina Fahendrena <dev@specificom.mg>', 'dev@specificom.mg', 'dev@specificom.mg', 'Test d\'authentification', NULL, NULL, 0x789c6d8ec14e84401044ef26fe433b174fd092bdb83a701036d164d58d19a31e67a159260106a159e0a7fc097f4c0734f1e0ad3b55afaae459f218abb7dd060aae4ad83ddf6cef62101ee2cb2a464c5402afb7ea7e0b817f01aad57567d8d85a97889b0701a2606eae108761f087956fdb03aa271c5d56e0e09fd3e33fa49f71262239f78d555977e13f29c17abd5e6067259d45b222d6e09c1ebdf7e6188ad8d64c357b6a6a4840ba7ca1601a191d790d69a1db8e38ec39f72e056024d9704991a28e213bd73d17df88c94daadd36898b2c7169dcdb6cfaf5527db41341465069534263fb164aed5a7373e8db9977ead1724bb0b79f1fbc587d89738e9c3745a7275fa3277e95, 0x789c0b492d2e5148514fcd2bcbaf4c55484955c84dcccc5128c82f2d52c8495448cecf4bcb4c2f2d4a2cc9cccf03c996e59714a52a24e51f5e570251aac7cbc5cb05007417188c, 143, 'INBOX', '<5cb9c6ef79a44@specificom.mg>', 'html', 0, 0, 0, 0, 0, 0, 'EDIT'), (41, 1, NULL, '2019-04-25 11:45:16', NULL, 'Thierry ANDRIANANTENAINA <andrianthic@icloud.com>', 'dev@specificom.mg', 'dev@specificom.mg', 'Test mail icloud', '=?utf-8?Q?Thierry_Cl=C3=A9o_ANDRIANANTENAINA?= <andrianthic@gmail.com>', NULL, 0x789c030000000001, 0x789c73cacfcbca2f2d52f02d52f04bcc2b49cd4bcccc4bd4e3e5e2e572ce2f4ac94ccc49cd4dcd2be1e5020019350d26, 144, 'INBOX', '<6CB009DE-3C15-441F-8CD0-A5C88556778E@icloud.com>', 'text', 0, 0, 0, 0, 0, 0, 'EDIT'); INSERT INTO `mail` (`id`, `mail_classement_id`, `old_mail_classement_id`, `created_at`, `date_sent`, `sender_email`, `dest_email`, `email_owner`, `object`, `cc`, `cci`, `text_html`, `text_plain`, `remote_id`, `remote_mail_box_name`, `uniq_id`, `type`, `is_read`, `is_answerd`, `is_deleted`, `is_draft`, `is_favorite`, `is_needing_accused`, `mailing_stat`) VALUES (42, 1, NULL, '2019-05-21 11:46:22', NULL, 'Irina Rafanomezantsoa <peacefulirina@gmail.com>', 'dev@specificom.mg', 'dev@specificom.mg', 'Re: Rapport : Conférence Fiharina - Carlton Anosy', NULL, NULL, 0x789cad595b6f1bc7157e2fd0ff305000430268dab29dc29615a16b5d12b9ba4152fc5a0c7787d428cb99f55c08d1bf268f511ffad497226fe51feb77cecc2e971413074561242277e7722edff9ce85fb959e894abbefb6640c76ebe0a372ca8a9f543d176329a6d2548affea5a8caa9190612ee454ff648596b5bc9b0ff75fe08083fd913bd8a793ca5a7affddd68436fcfd73b4416da5177c451ddcd6ea1219f0e8e04ce1063714af76e926f1eae5ee3bb1bbbbf7faed405c48139491da487122ef94a91cbe89677578bf2fc59d53e3efb6e8a060f72a35fbab6f54a9c7bab4d3e174b275f0e4d1fe0b79f06c12de0b29168fa5d3e13f3fefb1ec598bda963fb1d49b14113ecc6b45f7b989367b2f05fd1bbe550fef47d655ca3dafd538eced360fe29bb22c85b7b5aede37b2aab499e477ea01e688b82eb2550ef69b830fd6dcdbe80624c69ffff4f1d937afdfbd870d70bbf661f128163f8b5a8ad29af1e211ba974a3c2371de9fe83beda491e9db407c8e5a78dead7c10b059a4ad87d2c1364614c67a388bef385b3d6eb9a9c2231b6b5c0a6b4df126ea20f6d2a6e7024e2aefe00d6164d0d6c8ba7d71e5168f5e99c08f45a5bc689c1de198299e7c8e0a8f4805af434c4b607a6bec94df41c67359c989f4a574bf75a280b2d20103ed8223ed4b184d5431add51556e3a953655078fefde2d1401959b7977fb838dd70cfe663d28eebc563134775abc0d3cdb750d0ea899113c54a4f243e77dba1613a3a59d704a71a82aed3322c654a67a5ffef8ae7e214eb6c154bd23b3d3de2fd4212c40642366ef18b17754289737a06677d4dfa7307f7576e2e2e34d9505c171f2f8fcf4e2f8a81a8c959ca796b0cbb2d995d58fc3796707ebdee73d1b0528bc7510ccab1a2b03359c26835ecab736c083e6a40289ae92c56f37f83ca507c54c2b4d1d2489c14bd30964226d81844a96ae62d2fee1574345e093a041acd60282b2a0bfd16ff805fc04dbe81fca39a20ef727ccd71481ca9f4859f93b277602296323dff74faa9e809951eae98e195f82a9c0b76ea60937d96b1ceebf3f9dd7e41511b0d1971e224856ceba781d0c60719711e8ce348ed661d236e899181a8a4f1b40a7ea5d76339b34e7b72f12600afba22a9f1a301e823837e556a71083c41d2d6941bf82603da206815d1ffdba1e0e3520cd9c5af42d75e78552b0e0d43d8cce8b95701b69b59ed84870141d4262037690061205410122a3ba0c18b4e0762086800fd235816fbacc9270dc5692d90e16674c1ee4b5122ffe94a524430aa06e2350707c53aac39480063db4d81366604a7525c219f3afc015c3c6d61884a1734bfc43eec2124faa138b3ce93d14b1528f3246e06350f586bda4c7c1c0d3c45b6eac707efeab86728aeea1816ff4ab74d11ae50734ada599ddc3e8b6d94ae61483d011145fb4c7b8a7e9c9201d1f9ea7701218e6b40890eaef18229a3b19ed0d439848c70afa259f38b5f714ccd4fb293851c6b5618b099a9da364d2220a7266409bbf837cc058c0850689ca92cc458961a60504eb6202b91296140b61e3f41008dada9f2d1c8ee8e28bd4c5133a1b39c51538a9bf97389b89a41312dbe7d29ce755de3189fcf398ece8a6d4fbcf2ea657e2b5d95df16b0939bef64b164b60a0041d50d4808ca4953eac52ff8bcccb9c81297c586e4f31b29edaa3d54971ae62100c1020869985fb904c40a9ed0fc0582ca8888770a7f3a3c540c587202db75bbb83ebe28c4e94c720e61b18b8bdbe202ffae4f3f5dee0cba93c08ed391637ae402c2956aed3468dfa6054acdad24e41d9432f5dcb77425c5481ae26b0086824099999d2b460d822ad6604896dd26bada25d8bcc241145708a93e03bf16bd44bf9a7851d2fc2fe50367d45a3d9045905e8f4f538068e6e22a5fc51983f1aba74dadcb1caf4cb3b2176c1b193e27860c595b96d2f7a27d17e82a3ad82d1e1f50294ae68b2cea4c915928a927725306049120acba1791f9baa143e154b8ea22e70e725207a21cfe5f15195c4bb8e69b3bf8164d635d600fb3df3c0c53aa842172e5edd5f9b1d8bee59aa6510106b4519cc3d1101042302d2009ed3c398f4296e385951aa04ca8f5841338648d2d9b932d1217df04a8f3e395d85e1e0aa390fe99798102d67e872400b058b0de6210c33d8e56c9d461a7aba42b3d6e2be98128bbd4f639a6ba8d097c3c7664face2cb7323e8811630c8d8906e6b73f48df6979046d50d39070a17d768302468fc0643ee108228ead9ba62f3dea68d71f42a10af6fc80f60556d92efaac47dd16d2a3d3aa467a8ae3eee6735b31e21b394f68a960d52061d7b402c951726742f0a0bc9da2639acdd9d49222be25553ff701c788e3e71d1bc084c0107a4aa1ca3b02cc501cfdde11990492181016e7e0d6c3ebe3a3b6c884eecc72c8635c2cc809a5a80dd9beb3bee45a81b2ac2600d1ad2a3efcce5b8ae2f63888f92281abdd40c4daa79b37e20ff7159b48e84969b6da7cfc76310f0b6ca620cf18d52548337b6c4302e7c207bec5424726cef88561b9508b99d51d9537cc216a73f9748e7aa81f07f9aee928410f3b89490842f8462dabb128db5970145d30b8cb9210785785903101cf774962f1f320d5fadcc61033f8965bfaf400760852d387b122e5502549767148a59a18518cb04e5eb66aa110e36d2c70a5403a539deaa261eb79b024f2fcee202b797c78298a1f6f6eaf8bb3b6d4e032328336d1e4b9a2bb20e2711f9e9d532ed14d498336b082bc6947d71313b3cadc2a9c9f1e21211547c5f7c5cd6171dddeb77ad7193fbce356bebb21d5d8ab4727455e8bbd1c48918c822aaab94bdd655afd91aab5d5b0ea9263ffbcd3e42ed817ea9791bb2e5406258099db1599b22ce742024f65396da7629a2a51d4058b5f98873cfb7694fa531c59318e7c9720839328cf7c2e9dbb14c594909abe2eee4fda4a90e1f1b4e0e332629a4aba959a8d6b0ba4dcd57792df2d0feffa25c27770da06eda7aadfc02ed75210c90618968b7f7203da16c3abe6dd3e9a1b394dfd59ce50e3411b3d86fa9be170b8b34ecd557f68738364faa53338f2b3a5fb66ba0de2f4ddc7b204ae7a552775fd603f6a5e2238213514483a2b2bd71a7d060f8732150f6de5a71e1a4e35994c297bb681dd57367b94cf48e3853cfb4ac6cefe7907c80c968fc19296adc3db66e8252309e0b8cda79ccc31ce347cf43d1df083e669d8761169e6961c79c72c94124b9a96ed6416b1d46e51c1e565cd29051d80b06e220d35424c54cb66b66dddb1654dcdbc43b20fa87749dd04b2ef70cd8294d517bf7297448d1b0e24e2a5ce862b77b851cfa8b165f2d2266bce230da2b764145d51139d418a2c9bea25d526de299e51b06953451fb806606d93dd08899404b08f262a484125322fbdd936b6afd4531f5021820026ff97fd53388352efabd37c2c559314f16886ce64275089363fb48dfd34374f6c74194b5220170346b1a7999ae13ab23ba9882e87a76f393827cab4490d9132b15c66e1ac93d3e2fa9237a6957684064cbb444ba575555b648f63a0e2b0acd9b4747122394418a18d666fd4c6259aa31852ed62cfabb1ae5e2ac7eb21726ae9b35b5252c2e72f24503bdc49e3201288c88d06ef582e9d49c9fb95e010207a936ea6933d53d1d2a980023e887768fc41a76dc6e008a111994332a6b297cb24584f3fe4c497451df6f86406f68aec8f0ab0446ffe8868453fbc92e2193d3c6d5be6eb594a56b95a27d4b579afe3f0651790c700e7b2a62287a62faa2465d66ad8de2c22e576b7a9a35faf6dbbd30215ddc9e7b09a72c0c2087cb93ab42cfad682fcaaced5641eb078e2923f36da5d72304ab613e56c250748ec284f8d4e0525f2ae721350f1b5323465a8a9d0a60352e23ebdb9a52f475a4d2c4a963417ce348eb6cc50d3ee6dcde08326892e0b545ab51da9b68a4a6d4b13290fd1d2343f6a7bfb34585bce4c28405a6a61f2ce08ec4a9e22a89a3af64f3258faf9878b5364b91b508b5c17f283e3faf5d04e1beafd70357a27ee61f011c21f6aaece3ad94f50712325c2ca1667dda4f15e0566a4c99f2302a496ed8e627b39640785a571793b84b9bae2d496904123389e84ea10576bb707a826aef4972fb2d581f05723c54288347dec66bd27d287e7636babd53157aa531e2b426553476e24df226b94921043ce30a024d249cf6c9efb9033faad53d7782e7b9ebe68587e2b016880b813fdacb8297e28586a029679028eb1433d35513c254c967df3eddfa6cbac79ec5bfb404014f072c472dd7a18ffce1a45228bedb7e24e51f681cddf3cbcd9c980fa8af04a74c98e1e7ba4fe9286b15418f5461ff9170e4124ce6deba09dd9734f80cf8e3833d207b1bd72718eb9990620c45f5e02a5c4ec8878bfb312c954c3a8f68789951fc6a8905f8e993c65a590fb9b964f380f70601347fa3c15520faa048ac6fd09fea0575ce4b827f4ad3cbb2c86fd1ff714ac42433eae8bb96c758929db9f33b8d6629dc41835486aaaba9f69ea3cf2b86f7ffb18810878904354ffc8792e1dbb2c3548a6fb0d97f7663a54f04d96535295aad6b5ee73c5c28730127c9bc4d97fd1d00bfe1995fe2e7f493d681ffe1711b2e472, 0x789c9d594d6f1b4712bd07c87f68f04209a0b996ed2c9c6061ec581f89bcfa82a4f8de9c6952ad0ca727dd3384e45f93a3b5873ded659123ffd8be57dd331c52f66677110426873dd5d555af5ebd6a7d30de38f58b291fd55caba5ae0a23ffda52cd8a99d2cda3d24bfb8b535697faee71faed37df7e7366b0c04fd5ab032e54af5e1e7caf0e0e7e78fd76a22e74d5984adb4aab137d67aac2e39bfa4b61567f0db5c9eddce66e395d2ede29fded37eba7dcdb46fd409befd47b57ddbbd64ff8f9c3187675083634eb27b5fe4d955ae5ae9aaf9f602f376a7462efacd7951e4dd4afad55616c42a3b073cbc587da978dab5456b9408fdfa9b3edd7e3f2025f5d5b6203f8b4c4d3363af34ebd5038627e87b3a84a37d655ba8c8faffcfa2998aa9187aa3041d5decd60628927bfb6068fe86ab04d1b97e088ae724bf90d9e9deb422f74c8b5ffb23d8573698fe8c59f8f6cc8111255b471a52db0164fbdc91b83e73fae9f2a1c4297ddc6ef2f4e9fedf1652371fdf5faa96e6765e7faeeabb73898b38b4a2f8c1c76a1f1b97f19278b86c730e84dcd547bab9b8d2fb042430730758a25ae68731e94cf8ec64acf9c2f264ad77efd39a872acbdb72b64e38f1c3df7c86ce11fd585ed42759d7db83c3e3bbdc826aa64528c0faeaa243d31c0cae1ffb94682cbddccaa5a0eb17e9ab58df1d88c0673849587afac99a6531c5704889910272b9bfcaaff4740d0d0573131551f8caa08fd5ac3501b54e588ffc6b58dca4d297519d4bdc101ab60807c437b38d10ab172aa7038dffaefc8852a6ca8e1fcac24acbd1a3dc2443b3323f9c6dcdda146c5bbd1c7d38f19cd6cfc1875477ef54710cd2477932f45426a54168ea6fd3b8a75d7560cd2c26b165d9705297b5b8546b7308400789eabdec581dfe060a20a5d05ae42e2f8f35caf9cb7c10878cb5d506e479a4b7eae00e15620dcfbaa0e011438397ac611c067856233a4bbb7d3f872c4bf5bff2ece974105531a817845a82538dc9b06215a39eb55409c1c68aa019b5aa476a24ca3340ee891df402bbdd7ac6ff88c03b7e041bceaaa646caa4e4b055a5e718f83972a0769db4213e30295897a4db8d31a0b16119c44e048bc96409194b537b158748b1d0135c32d9a083ded1b2b3fe23dbc43788548a4ce07c63a374d633a4e05a54ee4f87c9f5cda5648106336a44279abe710b17655b6cdfa9f71cf252a11e75df298cec684af5aa9be5df89867f86119af6c6059c346028224ed190ab6a13e55c7251044bb25de142aa85d00883699611cee4d4b3a19662724637d864a799812aef4dcca9981a095295d5d0bb7286f160c865bff0b11035e1468b15d99e807cdcd756e810de3352197a3bb218412bf310a67eeaa2259450bf624e63c96ca82667c65962c96c7173ad6d30a27b3eabb97eadc9625ac2079e3e3d63bb5174816af5ea65fb487d9718618f9c7fd14142de1a01de2815d1dc48253e92ab7ebcff8dcf54a70fd65f6ac797cb11d5d498009afdc2222840d4e8cfa45d08d8f082c107f2b5fe0a16e51dedee09f1e04852035855ea2b9975d1f5f64ea74a5a52f4816b38bdbec02ff5d9f7ebcdc9ff4c6407ccb9917e693aeef737ea63116583238dd903d5b6be70f7302cd513e868ea1b49ae98a3c0eb0b0004cb5728f899403721dda128428877091a40e08d057b0c5ca8a45c5e5af878d7ad03e2944fe9fd62f4db2340f0c083ae6f16902abb440e0a8487b493b10dcda655dda3c95aa10ab1e94d980cc85f7814d97e73a0c0afb0058ca0460eba70708372db4903c5b191e9f3d393299a9c003825521bdfeb75638b9a64d6411b9b948fd8129e98193ea7ce821cd6c9c04af12c1b26b426956d7ce379246c94cc0f17313b1c264dd5e9d1fabbd5bd122b5691026d7aa7364137e616fa97b3497fd1d6bac49290939cc04cdbdb40be9bb70b0ed289b31886c7bd3e00c3f5fd1cadec62ae2c173276e45bee5d4fb7401d811cf068b51fcf7b06e62949bfda4700b3bef14ee44e5d2be7e6dc79198e7734ffca458dceaf641cd044110e41668de7baf433ada118e000942779af8e4066ac3cec04a21c2032ecd9d5fc62f034288ab0fe17e81f0bdc70c8130ec65430ee3e480bee7ad29d171da79daf3dc1582e35a3f46022b10c446cf2225a2dd6999060800f6e288f8650a5c5d6a1631e9313c860606d4f18bbeb8112820a48a356ef23b0263aa8ebe6621d573dc1f3ec20c363cbc3e3e8a1a10c715d2422f92eeaf176c333bad819ba6506be9fb6c949620e16ea67df8ea6facc5ce149cfb53844f5ceea2b4e19737ffbdae7f4e22cf94d4b6f4dfd5d71b71adf4d7292408fc6c0ec24b09da69bdd394462cf20c29a06965aa1299d5264af6d425c207e6cbd2e71c42a64337b658ce22b0f04614ee357182079c0a2b07092dee422b21c03ef94074caf6b2b76e23b242cfeaebdf2622a43a1e97520f1d550ceb1de5de68cb0f73c3534dd595968c36515da9196b404e13f4402c403bc99bf41a3f824896362a9969cc35c80ebdf90036c6c787972afbf9e6f63a3ba32210d59760393a37b40fb78e87e893e85f6284d1d2254f210f4d354a1327295127d97e7e7a84a6911d653f663787d935cdf7a6cfc67732158bb1287d4743df5eab1f521db43c28644c7d1787b7d1078aa5ed82e87bd4281534238f38e13479cb41868d3907aad280a063979346c4f4174efa65d4b11480e8c9ebcfb1a8a91e99a6591cf960b5105084d4aa1aafa18c42d2ac7dc790328e8354aad5934e7a49969f2b2d69dfcb28a47ab524fd1cad2f3da7a562ace5a7ce6a1a4ba45fe9c65bd7d8b034c339b05b49f0eb1a20d4eb7fc818d749cfed68ee1d3d567a1987a0d42de6930efac8940c53d3e9747f9b3d8bcdfdc60d1adba73ecae8948edbad6c577bf17b68f31c40e9651e0767f014478516751c853bbac166ddd6a02cf090fa63e34eba0d6dab960690188f1d8cd5383ce034ce532c5519cbd31dd0b84bc2f780c5243e028b3989832c5f61566bb9259c470ed90ba516014b519f473ff2fd9fac5c0fed652d2f9c8af19d704524fa7875b49f8add718aa1b809ba149287b4a621e717bae284218c1247c56e00c61b8363a5955a02cd51202a74f4bfe956acd853d7bfcbd4c12908a648891c134413235376c58951c8c556e9c432fa937ecab145a84c421fba5cd42626f53ed44d7ec7fab155d18646daaf9c30868a302331e33d49b634861c0d903fee55ae3bcc76c4d9fc518ecc6f3e3010db1887482b939e5c798858630963b838d3bd3b3966e7a61b959769109130eb36a7fba91d5746528b95c2c9c817a3cd336276901b2994dc0281480c8f1a583811363075729a5d5fca4bc5d8cd30c8581f292677be908845013b6f1b2ab0bc948872db118a86b8e2c514e7a148582c0cd3ad0bb210eb62fbe90e26afc0dd3817a784c44e81cf9fe8cd689aae4fe80c398a77ae58a97d153be82b1a14a493a8b45fd9287ba36ce84f0065dca8ef313883193b629762e005924787a4ae149122a9f5f621b6a3ced7694f122b30522ba9280045ccb74fa8474c957dc315c8c845546c9fabd84c92148e6cbcec5a52cfc31b8d9da6e8735d526bf00ac3e43cc88e64ec2779911bb1dbfadd69785749f6c61a8adb628c60198feccf407dfd1d5e368c0f1c3765526fe95622b07ffdf1bd66c7a2504a27c6bb424fd06421042b1be51bcadaf805c8f4da541ccb4b2a59be7e363ebdb9e587236b162ede81c46bd1c4c3186d2a0ebbc1950234781fc92f83d229ddcc7412268e0075cb2ec2a572db329c8951595b370cac848e3b848713e492e0c81a5372c8fda81bc78b7ed184685237a00f3dddf1f2bd17d978e896352729ec8d41440684f59380b6558756f451efff09242eda1a42ec60ee26de8c15e03e5e9a79521c47a03b56718cb3dcc2a289373e5e1af3e2e2ea4adad358aeace4b6d036ed50353de050eaca7efaa43bff89b512fd11bbc74bbbfee2f34487e6c5dcb9e2f9c5bca88ba78220accb5686b2b76806b92654988c0aa4c3f3d8954b97254cc67038e987b848c9c0e5d039acbed5c02f309b5c3fcb6eb29f32f19aa0aadc6ecce71e126861e4422d86f4cd777f5bc626781c9ab80d1c8360d633f1e73620e077ae327455edbd5577863d05717ef3f0663f01e93f3b6d54dfbf988280ce9df3ea926a66704990eef515095a26c14977674d1d4e63f8ea498b2d3fa8bdadad51662b0b08a83fbf0430c9daa8ebb0dfd52c7587e92ee3fbbff450306f6e61025b4d938608120589316a26f6c8102f4d64da78303920331fde644f64868ada20153861b6f5ec329bc63f4c190481975fa2594551fac880bcb9174124feab39c4431c57fa3f4794e98ee07eac25283354badc7690b69fa45d458b1b9d4047ee77f61c5ccb50902dd058d28d77d4933bf35c17c7438404b98b3ec8b37f036ea1f3a7, 145, 'INBOX', '<CAFdDvqtCfNFo-mjrEhAsqg02YyDyhXLzNeKWm95gACZR-BsqqA@mail.gmail.com>', 'html', 1, 0, 0, 0, 0, 0, 'EDIT'), (43, 1, NULL, '2019-05-21 17:25:02', NULL, '\"(Cron Daemon)\" <specific@golf.cloudns.io>', 'dev@specificom.mg', 'dev@specificom.mg', 'Cron <specific@golf> /usr/local/bin/php /home/specific/public_html/admin/task.php task check_mail', NULL, NULL, 0x789c030000000001, 0x789cb5514b4ec3400cdd8f3477f012364cd320b5cdae48542c0055e20095337189c57cc2cc84124e8fd3f608e0cd93ede7cfb3b5da61410794524c0d6c9d8b27eac0938f6982cc3f04f108557dbfac56abe51adaa95006faee71cc45883725b1408980526ab110ac37b5d0178b0bf7163880e9a3279307b27c646b86b1756c0f7df1ced898243349336f3a59a5c54ca64bfc45291b3fe54fc757385ca277433f400ce03810d49b4a2badb6b07fdac3e3ac014e28fb051bc750285137a7df48eab84c0d889d595abd50cef84ee7d07fc8d66ac78e02facb88bfbe8056cfb3fed7d1b7247fbbdee101ed474968a999bd5fc0089f99, 205, 'INBOX', '<E1hT7ZW-004qg7-QT@golf.cloudns.io>', 'text', 1, 0, 0, 0, 0, 0, 'EDIT'), (44, 1, NULL, '2019-05-21 17:26:02', NULL, '\"(Cron Daemon)\" <specific@golf.cloudns.io>', 'dev@specificom.mg', 'dev@specificom.mg', 'Cron <specific@golf> /usr/local/bin/php /home/specific/public_html/admin/task.php task check_mail', NULL, NULL, 0x789c030000000001, 0x789cb5514b4ec3400cdd8f3477f012364cd320b5cdae48542c0055e20095337189c57cc2cc84124e8fd3f608e0cd93ede7cfb3b5da61410794524c0d6c9d8b27eac0938f6982cc3f04f108557dbfac56abe51adaa95006faee71cc45883725b1408980526ab110ac37b5d0178b0bf7163880e9a3279307b27c646b86b1756c0f7df1ced898243349336f3a59a5c54ca64bfc45291b3fe54fc757385ca277433f400ce03810d49b4a2badb6b07fdac3e3ac014e28fb051bc750285137a7df48eab84c0d889d595abd50cef84ee7d07fc8d66ac78e02facb88bfbe8056cfb3fed7d1b7247fbbdee101ed474968a999bd5fc0089f99, 206, 'INBOX', '<E1hT7aU-004rjG-1H@golf.cloudns.io>', 'text', 1, 0, 0, 0, 0, 0, 'EDIT'), (45, 1, NULL, '2019-05-21 17:27:06', NULL, '\"(Cron Daemon)\" <specific@golf.cloudns.io>', 'dev@specificom.mg', 'dev@specificom.mg', 'Cron <specific@golf> /usr/local/bin/php /home/specific/public_html/admin/task.php task check_mail', NULL, NULL, 0x789c030000000001, 0x789cb5514b4ec3400cdd8f3477f012364cd320b5cdae48542c0055e20095337189c57cc2cc84124e8fd3f608e0cd93ede7cfb3b5da61410794524c0d6c9d8b27eac0938f6982cc3f04f108557dbfac56abe51adaa95006faee71cc45883725b1408980526ab110ac37b5d0178b0bf7163880e9a3279307b27c646b86b1756c0f7df1ced898243349336f3a59a5c54ca64bfc45291b3fe54fc757385ca277433f400ce03810d49b4a2badb6b07fdac3e3ac014e28fb051bc750285137a7df48eab84c0d889d595abd50cef84ee7d07fc8d66ac78e02facb88bfbe8056cfb3fed7d1b7247fbbdee101ed474968a999bd5fc0089f99, 207, 'INBOX', '<E1hT7bW-004sj2-EN@golf.cloudns.io>', 'text', 1, 0, 0, 0, 0, 0, 'EDIT'), (46, 1, NULL, '2019-05-21 17:28:02', NULL, '\"(Cron Daemon)\" <specific@golf.cloudns.io>', 'dev@specificom.mg', 'dev@specificom.mg', 'Cron <specific@golf> /usr/local/bin/php /home/specific/public_html/admin/task.php task check_mail', NULL, NULL, 0x789c030000000001, 0x789cb5514b4ec3400cdd8f3477f012364cd320b5cdae48542c0055e20095337189c57cc2cc84124e8fd3f608e0cd93ede7cfb3b5da61410794524c0d6c9d8b27eac0938f6982cc3f04f108557dbfac56abe51adaa95006faee71cc45883725b1408980526ab110ac37b5d0178b0bf7163880e9a3279307b27c646b86b1756c0f7df1ced898243349336f3a59a5c54ca64bfc45291b3fe54fc757385ca277433f400ce03810d49b4a2badb6b07fdac3e3ac014e28fb051bc750285137a7df48eab84c0d889d595abd50cef84ee7d07fc8d66ac78e02facb88bfbe8056cfb3fed7d1b7247fbbdee101ed474968a999bd5fc0089f99, 208, 'INBOX', '<E1hT7cQ-004tcS-3r@golf.cloudns.io>', 'text', 1, 0, 0, 0, 0, 0, 'EDIT'), (47, 1, NULL, '2019-05-21 17:29:02', NULL, '\"(Cron Daemon)\" <specific@golf.cloudns.io>', 'dev@specificom.mg', 'dev@specificom.mg', 'Cron <specific@golf> /usr/local/bin/php /home/specific/public_html/admin/task.php task check_mail', NULL, NULL, 0x789c030000000001, 0x789cb5514b4ec3400cdd8f3477f012364cd320b5cdae48542c0055e20095337189c57cc2cc84124e8fd3f608e0cd93ede7cfb3b5da61410794524c0d6c9d8b27eac0938f6982cc3f04f108557dbfac56abe51adaa95006faee71cc45883725b1408980526ab110ac37b5d0178b0bf7163880e9a3279307b27c646b86b1756c0f7df1ced898243349336f3a59a5c54ca64bfc45291b3fe54fc757385ca277433f400ce03810d49b4a2badb6b07fdac3e3ac014e28fb051bc750285137a7df48eab84c0d889d595abd50cef84ee7d07fc8d66ac78e02facb88bfbe8056cfb3fed7d1b7247fbbdee101ed474968a999bd5fc0089f99, 209, 'INBOX', '<E1hT7dO-004uYh-1U@golf.cloudns.io>', 'text', 0, 0, 0, 0, 0, 0, 'EDIT'), (48, 1, NULL, '2019-05-21 17:30:03', NULL, '\"(Cron Daemon)\" <specific@golf.cloudns.io>', 'dev@specificom.mg', 'dev@specificom.mg', 'Cron <specific@golf> /usr/local/bin/php /home/specific/public_html/admin/task.php task check_mail', NULL, NULL, 0x789c030000000001, 0x789cb5514b4ec3400cdd8f3477f012364cd320b5cdae48542c0055e20095337189c57cc2cc84124e8fd3f608e0cd93ede7cfb3b5da61410794524c0d6c9d8b27eac0938f6982cc3f04f108557dbfac56abe51adaa95006faee71cc45883725b1408980526ab110ac37b5d0178b0bf7163880e9a3279307b27c646b86b1756c0f7df1ced898243349336f3a59a5c54ca64bfc45291b3fe54fc757385ca277433f400ce03810d49b4a2badb6b07fdac3e3ac014e28fb051bc750285137a7df48eab84c0d889d595abd50cef84ee7d07fc8d66ac78e02facb88bfbe8056cfb3fed7d1b7247fbbdee101ed474968a999bd5fc0089f99, 210, 'INBOX', '<E1hT7eN-004var-4X@golf.cloudns.io>', 'text', 1, 0, 0, 0, 0, 0, 'EDIT'), (49, 1, NULL, '2019-05-21 17:31:01', NULL, '\"(Cron Daemon)\" <specific@golf.cloudns.io>', 'dev@specificom.mg', 'dev@specificom.mg', 'Cron <specific@golf> /usr/local/bin/php /home/specific/public_html/admin/task.php task check_mail', NULL, NULL, 0x789c030000000001, 0x789cb5514b4ec3400cdd8f3477f012364cd320b5cdae48542c0055e20095337189c57cc2cc84124e8fd3f608e0cd93ede7cfb3b5da61410794524c0d6c9d8b27eac0938f6982cc3f04f108557dbfac56abe51adaa95006faee71cc45883725b1408980526ab110ac37b5d0178b0bf7163880e9a3279307b27c646b86b1756c0f7df1ced898243349336f3a59a5c54ca64bfc45291b3fe54fc757385ca277433f400ce03810d49b4a2badb6b07fdac3e3ac014e28fb051bc750285137a7df48eab84c0d889d595abd50cef84ee7d07fc8d66ac78e02facb88bfbe8056cfb3fed7d1b7247fbbdee101ed474968a999bd5fc0089f99, 211, 'INBOX', '<E1hT7fJ-004wXw-Ou@golf.cloudns.io>', 'text', 1, 0, 0, 0, 0, 0, 'EDIT'), (50, 1, NULL, '2019-05-21 17:32:03', NULL, '\"(Cron Daemon)\" <specific@golf.cloudns.io>', 'dev@specificom.mg', 'dev@specificom.mg', 'Cron <specific@golf> /usr/local/bin/php /home/specific/public_html/admin/task.php task check_mail', NULL, NULL, 0x789c030000000001, 0x789c0bc92f49cc5148ad484d2e2dc9cccf5328c9cc4d55c8cc53284e4dcecf4b29b65230d4333230343537b334b1303433b5e4e50200c1d50f4d, 212, 'INBOX', '<E1hT7gJ-004xZB-Dg@golf.cloudns.io>', 'text', 1, 0, 0, 0, 0, 0, 'EDIT'), (51, 1, NULL, '2019-05-21 17:33:02', NULL, '\"(Cron Daemon)\" <specific@golf.cloudns.io>', 'dev@specificom.mg', 'dev@specificom.mg', 'Cron <specific@golf> /usr/local/bin/php /home/specific/public_html/admin/task.php task check_mail', NULL, NULL, 0x789c030000000001, 0x789c0bc92f49cc5148ad484d2e2dc9cccf5328c9cc4d55c8cc53284e4dcecf4b29b65230d0b33032b6b030b430333135313737e6e50200d2220f87, 213, 'INBOX', '<E1hT7hG-004ycv-OM@golf.cloudns.io>', 'text', 0, 0, 0, 0, 0, 0, 'EDIT'), (52, 1, NULL, '2019-05-21 17:34:02', NULL, '\"(Cron Daemon)\" <specific@golf.cloudns.io>', 'dev@specificom.mg', 'dev@specificom.mg', 'Cron <specific@golf> /usr/local/bin/php /home/specific/public_html/admin/task.php task check_mail', NULL, NULL, 0x789c030000000001, 0x789c0bc92f49cc5148ad484d2e2dc9cccf5328c9cc4d55c8cc53284e4dcecf4b29b65230d03335b430b234b0b4343335353435e4e50200d1eb0f7f, 214, 'INBOX', '<E1hT7iE-004zvx-TG@golf.cloudns.io>', 'text', 1, 0, 0, 0, 0, 0, 'EDIT'), (53, 1, NULL, '2019-05-21 17:35:03', NULL, '\"(Cron Daemon)\" <specific@golf.cloudns.io>', 'dev@specificom.mg', 'dev@specificom.mg', 'Cron <specific@golf> /usr/local/bin/php /home/specific/public_html/admin/task.php task check_mail', NULL, NULL, 0x789c030000000001, 0x789ced95d14edb301486ef27f10e56d0a6a2a9c44eda5042db2d622071419880ab4d536412b7314becc876a1ddb407da73ecc576dcb51d5502abba4b909a2669fecffe7dd2ff982a45672d7f0f7ddf7985d067fc6530b417f2e696a5a6a54d765c50adf7767d8c5aa4bb9081d0e199b3d022a48de262dcf2f69043b0b3544c345389a025ab0b0928cfe092a2cbe8348a2fce4f3e45f1f5d545b40eb392f2a2469343a0b9a5dfeb8aa57cc45359ee97e375b602dbf752d55d126f895f7d3cf630395ce77469aa2497dad4c11e80d6d1fe13d3cef14aaa3a0e3576babd830679aa6695913500aaed08a975b18ef092fe8fc139fea841d2f11be44f1a34855e215c2723aeb449e428a1459118def0f6edcbc70f913ba6c02c6b7855d6d143a562f0e08e25b2c892e6ffc61aa1f9585033512cc94d5917631037680d9bd68bb3d2fe98e7843c9a13f2ef9c5893c10631f1eda4d739674acdd071f1eba74451fce1f22c8a212c277174166f949779dacc9f61b64b8cf511091822f5bebee4e5d9e6c53fb42b68b7dbfd1b855c78d6e7e518d1c20c1c0769950e9cdc984a87aebb564f976625172e5466ccdc8c19f0a1ddce3b35b08e5e7ba75c646c0a6702470247460d4be8ad9c187bc3740aa72e862f0cb39859c1601ec6c7b90903bf9a1ea17b9e993cf4b0574d1db0b532a72b2a96c0480ad3d6fc1b0b0906d9b00f4b92623cfc9bae378ca613c38eea19ebbb0b71e3c8a92ca40a7747238c7ddf1946ca706d788acea980f52a8041bc42df7a01f13d1478e8a0e7a35e80da68fe5307118230ee224c96d2135b9e1035067731ea96cdcb7bb479799b352f7fd33d3ea6c23041ed467f4a73263205771bedf1074067ec6efb7e05f0cbfefebcfbd5b6fb3b7caea5a1056253063d814b81ec421187d0b3548a4c8788ec13e83824e875824e10909d57bf019a7b3951, 215, 'INBOX', '<E1hT7jD-0051Dj-0C@golf.cloudns.io>', 'text', 1, 0, 0, 0, 0, 0, 'EDIT'), (54, 1, NULL, '2019-05-21 17:36:02', NULL, '\"(Cron Daemon)\" <specific@golf.cloudns.io>', 'dev@specificom.mg', 'dev@specificom.mg', 'Cron <specific@golf> /usr/local/bin/php /home/specific/public_html/admin/task.php task check_mail', NULL, NULL, 0x789c030000000001, 0x789ced95df4edb3014c6ef27f10e56d0a6a2a9c476fa37b4dd220612178409b8da3445267153b3c48e6c17da4d7ba03dc75e6c275ddb5125b0aabb04a96992e6fbd99f4ffa1d33add9bce11da0ef7baf10fa8cbf0c47e585bab9e5b16d189b1c67cc98837d0fa306692f65207444e22cb50819ab854c1bf40039043b2bc5d4701d4996f3aa9080f20c2e19ba0c4e83f0e2fce453105e5f5d049b30cf99c82a34e9032d4afabd29782cc62256f9619e6eb205d8be57baea92d0157ef5f19862d2dfe44c6e8b68a28cad823d004b47874f4cbbc00ba5ab38d4d869f7ba35f258cf0bab2a0054db91ca986c131139fb1f830bfc5183a4e5d5c89f346833b3468489c6421b1ba971c4b22cb2a2e6ed972f1f3f44eeb806b3bce655958e1e2a358707773c525912d5ff3736082352c9ec54f36862f3aa1883b8466bf9ac5a9cb5f6c72227e4d19c907fe7a434d9d922265e39e9f54470ade7e838fbf553a120fc7079168410969330380bb7cacb226df6cf30bb25a6f411481822a65f5ff2f26cf3e2f5cb15349bcdc18d462e3c1b883c452cb343c74146c74367626d617cd7dda8a7cb925c48172a937237e1167c18b7f54e0f4b47afe9a990099fc199c011c19130cb2376aba6b6bce12686531bc3178659ec3ce3300f17e9c4fa1daf981da17b91d8894f312d660ed85a9b3305932b60aca46d1af18dfb04836c34802529998efea6eb0d67f1d4f2a36ac606ee525c3b72ac32a5fdfdf11863cf734681b6c25811a3732661bd1a6010afd1b7b4433c8a3a14757b1eea7550132d7e6a214210c66d84c94a7a5296c747b5c15d8eba63f3a28f362fba5df3f2b6dde343262d97acdce84fd984cb44c3dd567b7c17e884dfeddeaf007ed9df9f77bfda757f87cfb5b22c437cc6a127082551b9502420f43c5632313ec287ed3ea65ddac75eab45bddedeabdfd4c6398b, 216, 'INBOX', '<E1hT7kA-0052XK-QQ@golf.cloudns.io>', 'text', 1, 0, 0, 0, 0, 0, 'EDIT'), (55, 1, NULL, '2019-05-21 17:37:01', NULL, '\"(Cron Daemon)\" <specific@golf.cloudns.io>', 'dev@specificom.mg', 'dev@specificom.mg', 'Cron <specific@golf> /usr/local/bin/php /home/specific/public_html/admin/task.php task check_mail', NULL, NULL, 0x789c030000000001, 0x789ced95d16e9b301486ef27f51d2caa4da9a6141b124268920d75add48bd2a9edd5a609b9e010776023db69934d7ba03dc75e6c872cc91a41bb28bb6ca51020fc9ffdfb90ff982a45e72df7007ddf7b85d067fc6538aa2ee4cd2d4b4c4b9bf438a75a1fecbb18b548772903a1c5536ba945481bc545d6720e9045b0b5524c3553b1a005ab0b0928cfe092a2cbf0348c2ece4f3e85d1f5d545b809b382f2bc46933ed0bca2dfeb92257ccc13591c16d9265b82ed7ba9ea2e89b3c2af3e1e3b98f437395d98329e486deaa00f60e5e8f08969177829551d871a5b5dbfd7204fd4bc34b20640b52d21b5ce37115ed0ff31b8c01f35483a6e83fc498326d76b84eb78cc9536b11cc734cf63c31bde7ef5f2f143e48e2930cb1a5e55e5e8a152317870c76299a771f37f6383d03c13d44c158b27a6a88b31881bb486cdeac5596b7f2c72421ecd09f9774e2a93de163171ab49af279c293547c7f9af9f1285d187cbb33082b09c44e159b4555e1669337f86d92d31958f50c01089f3f5252fcf362f6ebf5a41bbdd1edc2864c3b3012f32447333b42ca45532b426c6943ab0ed8d7ada342db8b0a13219b35366c087b63befd4b072f4da39e52265333813386238526a584c6fe5d454374c2770ea62f8c2308b99e70ce6613c9b98c073cbd911bae7a999040e76ca9905b6d6e67449c50a184b61da9a7f6301c1201b0d60495264a3bfe97ac3683235eca89eb181bd14378e9cc85caa607f3cc6d875ad51a80cd78627e89c0a58af0218c46bf4ade311d7419e837abe8b7c0fb5d1e2a70e220461dc4598aca427557902d418dce5a83b362fe7d1e6e56cd7bcdc6df7f8880ac304ad36fa533a61225570b7d51edf033a6577bbf72b805ff6f7e7ddaf76dddfe1732d0dcd119b31e8095c0a542d1471083d4ba4487580f061d7f35cdff1fd4ebfd777ba7baf7e03d59739a3, 217, 'INBOX', '<E1hT7l7-0053Wv-Vd@golf.cloudns.io>', 'text', 1, 0, 0, 0, 0, 0, 'EDIT'), (56, 1, NULL, '2019-05-21 17:38:04', NULL, '\"(Cron Daemon)\" <specific@golf.cloudns.io>', 'dev@specificom.mg', 'dev@specificom.mg', 'Cron <specific@golf> /usr/local/bin/php /home/specific/public_html/admin/task.php task check_mail', NULL, NULL, 0x789c030000000001, 0x789c0bc92f49cc5148ad484d2e2dc9cccf5328c9cc4d55c8cc53284e4dcecf4b29b65230d23336b4303434b03431b2303130e3e50200c1890f3e, 218, 'INBOX', '<E1hT7m8-0054dq-71@golf.cloudns.io>', 'text', 1, 0, 0, 0, 0, 0, 'EDIT'), (57, 1, NULL, '2019-05-21 17:39:04', NULL, '\"(Cron Daemon)\" <specific@golf.cloudns.io>', 'dev@specificom.mg', 'dev@specificom.mg', 'Cron <specific@golf> /usr/local/bin/php /home/specific/public_html/admin/task.php task check_mail', NULL, NULL, 0x789c030000000001, 0x789c0bc92f49cc5148ad484d2e2dc9cccf5328c9cc4d55c8cc53284e4dcecf4b29b65230d233333531333036303031313535e3e50200c1a70f3f, 219, 'INBOX', '<E1hT7n6-0055gA-F6@golf.cloudns.io>', 'text', 0, 0, 0, 0, 0, 0, 'EDIT'), (58, 1, NULL, '2019-05-21 17:40:06', NULL, '\"(Cron Daemon)\" <specific@golf.cloudns.io>', 'dev@specificom.mg', 'dev@specificom.mg', 'Cron <specific@golf> /usr/local/bin/php /home/specific/public_html/admin/task.php task check_mail', NULL, NULL, 0x789c030000000001, 0x789c0bc92f49cc5148ad484d2e2dc9cccf5328c9cc4d55c8cc53284e4dcecf4b29b65230d633b730b4b034b634b330b53032e2e50200c2df0f5c, 220, 'INBOX', '<E1hT7o6-0056y3-H4@golf.cloudns.io>', 'text', 0, 0, 0, 0, 0, 0, 'EDIT'), (59, 1, NULL, '2019-05-21 17:41:04', NULL, '\"(Cron Daemon)\" <specific@golf.cloudns.io>', 'dev@specificom.mg', 'dev@specificom.mg', 'Cron <specific@golf> /usr/local/bin/php /home/specific/public_html/admin/task.php task check_mail', NULL, NULL, 0x789c030000000001, 0x789c0bc92f49cc5148ad484d2e2dc9cccf5328c9cc4d55c8cc53284e4dcecf4b29b65230d233353235b034b2303130b43431e7e50200c1d90f47, 221, 'INBOX', '<E1hT7p2-0058Au-HV@golf.cloudns.io>', 'text', 0, 0, 0, 0, 0, 0, 'EDIT'), (60, 1, NULL, '2019-05-21 17:42:04', NULL, '\"(Cron Daemon)\" <specific@golf.cloudns.io>', 'dev@specificom.mg', 'dev@specificom.mg', 'Cron <specific@golf> /usr/local/bin/php /home/specific/public_html/admin/task.php task check_mail', NULL, NULL, 0x789c030000000001, 0x789c0bc92f49cc5148ad484d2e2dc9cccf5328c9cc4d55c8cc53284e4dcecf4b29b65230d2333530b730313334343730b434e7e50200c1e80f47, 222, 'INBOX', '<E1hT7q0-0059Em-Hh@golf.cloudns.io>', 'text', 1, 0, 0, 0, 0, 0, 'EDIT'), (61, 1, NULL, '2019-05-21 17:43:05', NULL, '\"(Cron Daemon)\" <specific@golf.cloudns.io>', 'dev@specificom.mg', 'dev@specificom.mg', 'Cron <specific@golf> /usr/local/bin/php /home/specific/public_html/admin/task.php task check_mail', NULL, NULL, 0x789c030000000001, 0x789c0bc92f49cc5148ad484d2e2dc9cccf5328c9cc4d55c8cc53284e4dcecf4b29b65230d2b33036b6b0b03037b33434b1b4e0e50200c2cf0f61, 223, 'INBOX', '<E1hT7qz-005AKe-4V@golf.cloudns.io>', 'text', 0, 0, 0, 0, 0, 0, 'EDIT'), (62, 1, NULL, '2019-05-21 17:44:05', NULL, '\"(Cron Daemon)\" <specific@golf.cloudns.io>', 'dev@specificom.mg', 'dev@specificom.mg', 'Cron <specific@golf> /usr/local/bin/php /home/specific/public_html/admin/task.php task check_mail', NULL, NULL, 0x789c030000000001, 0x789c0bc92f49cc5148ad484d2e2dc9cccf5328c9cc4d55c8cc53284e4dcecf4b29b65230d6b33437353430b4343137b73031e1e50200c25b0f52, 224, 'INBOX', '<E1hT7rx-005BR6-Qq@golf.cloudns.io>', 'text', 0, 0, 0, 0, 0, 0, 'EDIT'), (63, 1, NULL, '2019-05-21 17:45:06', NULL, '\"(Cron Daemon)\" <specific@golf.cloudns.io>', 'dev@specificom.mg', 'dev@specificom.mg', 'Cron <specific@golf> /usr/local/bin/php /home/specific/public_html/admin/task.php task check_mail', NULL, NULL, 0x789c030000000001, 0x789c0bc92f49cc5148ad484d2e2dc9cccf5328c9cc4d55c8cc53284e4dcecf4b29b65230d6b330b530313235343130b630b0e4e50200c2270f49, 225, 'INBOX', '<E1hT7sw-005Cei-IF@golf.cloudns.io>', 'text', 0, 0, 0, 0, 0, 0, 'EDIT'), (64, 1, NULL, '2019-05-21 17:46:06', NULL, '\"(Cron Daemon)\" <specific@golf.cloudns.io>', 'dev@specificom.mg', 'dev@specificom.mg', 'Cron <specific@golf> /usr/local/bin/php /home/specific/public_html/admin/task.php task check_mail', NULL, NULL, 0x789c030000000001, 0x789c0bc92f49cc5148ad484d2e2dc9cccf5328c9cc4d55c8cc53284e4dcecf4b29b65230d6b33437b33037b130b23036b630e3e50200c2fa0f5f, 226, 'INBOX', '<E1hT7tu-005DxF-0R@golf.cloudns.io>', 'text', 0, 0, 0, 0, 0, 0, 'EDIT'), (65, 1, NULL, '2019-05-21 17:47:05', NULL, '\"(Cron Daemon)\" <specific@golf.cloudns.io>', 'dev@specificom.mg', 'dev@specificom.mg', 'Cron <specific@golf> /usr/local/bin/php /home/specific/public_html/admin/task.php task check_mail', NULL, NULL, 0x789c030000000001, 0x789c0bc92f49cc5148ad484d2e2dc9cccf5328c9cc4d55c8cc53284e4dcecf4b29b65230d6b3303530363534b03435b4b434e3e50200c2020f4d, 227, 'INBOX', '<E1hT7ur-005F42-8t@golf.cloudns.io>', 'text', 0, 0, 0, 0, 0, 0, 'EDIT'), (66, 1, NULL, '2019-05-21 17:48:04', NULL, '\"(Cron Daemon)\" <specific@golf.cloudns.io>', 'dev@specificom.mg', 'dev@specificom.mg', 'Cron <specific@golf> /usr/local/bin/php /home/specific/public_html/admin/task.php task check_mail', NULL, NULL, 0x789c030000000001, 0x789c0bc92f49cc5148ad484d2e2dc9cccf5328c9cc4d55c8cc53284e4dcecf4b29b65230d23333b13037b2b0303137353036e7e50200c2860f54, 228, 'INBOX', '<E1hT7vo-005G7f-C4@golf.cloudns.io>', 'text', 0, 0, 0, 0, 0, 0, 'EDIT'), (67, 1, NULL, '2019-05-21 17:49:06', NULL, '\"(Cron Daemon)\" <specific@golf.cloudns.io>', 'dev@specificom.mg', 'dev@specificom.mg', 'Cron <specific@golf> /usr/local/bin/php /home/specific/public_html/admin/task.php task check_mail', NULL, NULL, 0x789c030000000001, 0x789c0bc92f49cc5148ad484d2e2dc9cccf5328c9cc4d55c8cc53284e4dcecf4b29b65230d1333336343432b3b030303331b5e0e50200c1f70f4b, 229, 'INBOX', '<E1hT7wo-005HJi-H2@golf.cloudns.io>', 'text', 0, 0, 0, 0, 0, 0, 'EDIT'), (68, 1, NULL, '2019-05-21 17:50:06', NULL, '\"(Cron Daemon)\" <specific@golf.cloudns.io>', 'dev@specificom.mg', 'dev@specificom.mg', 'Cron <specific@golf> /usr/local/bin/php /home/specific/public_html/admin/task.php task check_mail', NULL, NULL, 0x789c030000000001, 0x789c0bc92f49cc5148ad484d2e2dc9cccf5328c9cc4d55c8cc53284e4dcecf4b29b65230d633373335303033b73030333231e1e50200c20e0f47, 230, 'INBOX', '<E1hT7xm-005Ie4-BS@golf.cloudns.io>', 'text', 0, 0, 0, 0, 0, 0, 'EDIT'), (69, 1, NULL, '2019-05-21 17:51:05', NULL, '\"(Cron Daemon)\" <specific@golf.cloudns.io>', 'dev@specificom.mg', 'dev@specificom.mg', 'Cron <specific@golf> /usr/local/bin/php /home/specific/public_html/admin/task.php task check_mail', NULL, NULL, 0x789c030000000001, 0x789c0bc92f49cc5148ad484d2e2dc9cccf5328c9cc4d55c8cc53284e4dcecf4b29b65230d6b33035303435b6343236303631e7e50200c1d40f42, 231, 'INBOX', '<E1hT7yj-005Jpc-QB@golf.cloudns.io>', 'text', 0, 0, 0, 0, 0, 0, 'EDIT'), (70, 1, NULL, '2019-05-21 17:52:04', NULL, '\"(Cron Daemon)\" <specific@golf.cloudns.io>', 'dev@specificom.mg', 'dev@specificom.mg', 'Cron <specific@golf> /usr/local/bin/php /home/specific/public_html/admin/task.php task check_mail', NULL, NULL, 0x789c030000000001, 0x789c0bc92f49cc5148ad484d2e2dc9cccf5328c9cc4d55c8cc53284e4dcecf4b29b65230d2b3303136373731b03030323733e5e50200c2300f4c, 232, 'INBOX', '<E1hT7zg-005L0K-8Y@golf.cloudns.io>', 'text', 0, 0, 0, 0, 0, 0, 'EDIT'), (71, 1, NULL, '2019-05-21 17:53:06', NULL, '\"(Cron Daemon)\" <specific@golf.cloudns.io>', 'dev@specificom.mg', 'dev@specificom.mg', 'Cron <specific@golf> /usr/local/bin/php /home/specific/public_html/admin/task.php task check_mail', NULL, NULL, 0x789c030000000001, 0x789c0bc92f49cc5148ad484d2e2dc9cccf5328c9cc4d55c8cc53284e4dcecf4b29b65230d13336b6343230b5b430303630b0e4e50200c1f00f44, 233, 'INBOX', '<E1hT80g-005MFC-5Y@golf.cloudns.io>', 'text', 0, 0, 0, 0, 0, 0, 'EDIT'), (72, 1, NULL, '2019-05-21 17:54:05', NULL, '\"(Cron Daemon)\" <specific@golf.cloudns.io>', 'dev@specificom.mg', 'dev@specificom.mg', 'Cron <specific@golf> /usr/local/bin/php /home/specific/public_html/admin/task.php task check_mail', NULL, NULL, 0x789c030000000001, 0x789c0bc92f49cc5148ad484d2e2dc9cccf5328c9cc4d55c8cc53284e4dcecf4b29b65230d6333733343133303033b5303134e7e50200c1f70f47, 234, 'INBOX', '<E1hT81d-005NNS-FT@golf.cloudns.io>', 'text', 0, 0, 0, 0, 0, 0, 'EDIT'), (73, 1, NULL, '2019-05-21 17:55:05', NULL, '\"(Cron Daemon)\" <specific@golf.cloudns.io>', 'dev@specificom.mg', 'dev@specificom.mg', 'Cron <specific@golf> /usr/local/bin/php /home/specific/public_html/admin/task.php task check_mail', NULL, NULL, 0x789c030000000001, 0x789c0bc92f49cc5148ad484d2e2dc9cccf5328c9cc4d55c8cc53284e4dcecf4b29b65230d6333632343230b330b030b03430e2e50200c1680f39, 235, 'INBOX', '<E1hT82b-005OS6-Fq@golf.cloudns.io>', 'text', 0, 0, 0, 0, 0, 0, 'EDIT'), (74, 1, NULL, '2019-05-21 17:56:04', NULL, '\"(Cron Daemon)\" <specific@golf.cloudns.io>', 'dev@specificom.mg', 'dev@specificom.mg', 'Cron <specific@golf> /usr/local/bin/php /home/specific/public_html/admin/task.php task check_mail', NULL, NULL, 0x789c030000000001, 0x789c0bc92f49cc5148ad484d2e2dc9cccf5328c9cc4d55c8cc53284e4dcecf4b29b65230d2b33030373235b6303637b53035e1e50200c2310f50, 236, 'INBOX', '<E1hT83Y-005PVH-MU@golf.cloudns.io>', 'text', 0, 0, 0, 0, 0, 0, 'EDIT'), (75, 1, NULL, '2019-05-21 17:57:05', NULL, '\"(Cron Daemon)\" <specific@golf.cloudns.io>', 'dev@specificom.mg', 'dev@specificom.mg', 'Cron <specific@golf> /usr/local/bin/php /home/specific/public_html/admin/task.php task check_mail', NULL, NULL, 0x789c030000000001, 0x789c0bc92f49cc5148ad484d2e2dc9cccf5328c9cc4d55c8cc53284e4dcecf4b29b65230d633373135b134b2343635b43030e7e50200c2630f50, 237, 'INBOX', '<E1hT84X-005QPj-S2@golf.cloudns.io>', 'text', 0, 0, 0, 0, 0, 0, 'EDIT'), (76, 1, NULL, '2019-05-22 06:47:07', NULL, '\"(Cron Daemon)\" <specific@golf.cloudns.io>', 'dev@specificom.mg', 'dev@specificom.mg', 'Cron <specific@golf> /usr/local/bin/php /home/specific/public_html/admin/task.php task check_mail', NULL, NULL, 0x789c030000000001, 0x789ccbcc2bd130343436d6e4e5ca84304d80cc90fc92c41c85d48ad4e4d292ccfc3c8592ccdc5485cc3c85e2d4e4fcbc94622b05133d0b432323135343630353630b4b5e2e00fb7f143b, 238, 'INBOX', '<E1hTK5j-00A4K0-1W@golf.cloudns.io>', 'text', 1, 0, 0, 0, 0, 0, 'EDIT'), (77, 1, NULL, '2019-05-22 06:48:07', NULL, '\"(Cron Daemon)\" <specific@golf.cloudns.io>', 'dev@specificom.mg', 'dev@specificom.mg', 'Cron <specific@golf> /usr/local/bin/php /home/specific/public_html/admin/task.php task check_mail', NULL, NULL, 0x789c030000000001, 0x789ccbcc2bd130343436d5e4e5ca8430cd80cc90fc92c41c85d48ad4e4d292ccfc3c8592ccdc5485cc3c85e2d4e4fcbc94622b05533d4b4323633323034b0b334b630b5e2e00fcfd144f, 239, 'INBOX', '<E1hTK6h-00A5LJ-D6@golf.cloudns.io>', 'text', 1, 0, 0, 0, 0, 0, 'EDIT'), (78, 1, NULL, '2019-05-22 06:49:07', NULL, '\"(Cron Daemon)\" <specific@golf.cloudns.io>', 'dev@specificom.mg', 'dev@specificom.mg', 'Cron <specific@golf> /usr/local/bin/php /home/specific/public_html/admin/task.php task check_mail', NULL, NULL, 0x789c030000000001, 0x789ccbcc2bd130343436d7e4e5ca84302d80cc90fc92c41c85d48ad4e4d292ccfc3c8592ccdc5485cc3c85e2d4e4fcbc94622b05533d7303730343230b4b4373334b135e2e00fdbf144e, 240, 'INBOX', '<E1hTK7f-00A6Jd-EG@golf.cloudns.io>', 'text', 1, 0, 0, 0, 0, 0, 'EDIT'), (79, 1, NULL, '2019-05-22 06:50:07', NULL, '\"(Cron Daemon)\" <specific@golf.cloudns.io>', 'dev@specificom.mg', 'dev@specificom.mg', 'Cron <specific@golf> /usr/local/bin/php /home/specific/public_html/admin/task.php task check_mail', NULL, NULL, 0x789c030000000001, 0x789ccbcc2bd1303434b6d4e4e5ca04334d0c80cc90fc92c41c85d48ad4e4d292ccfc3c8592ccdc5485cc3c85e2d4e4fcbc94622b05133d0b23434ba03e5373534b530b5e2e00fd1c1453, 241, 'INBOX', '<E1hTK8d-00A7fF-Nv@golf.cloudns.io>', 'text', 1, 0, 0, 0, 0, 0, 'EDIT'), (80, 1, NULL, '2019-05-22 09:08:33', NULL, 'Nantenaina Fahendrena <fahernatt@gmail.com>', 'dev@specificom.mg', 'dev@specificom.mg', 'Another test for mail', NULL, NULL, 0x789cb349c92c5348c92cb255ca292952b20bc9c82c5600a2c4bcfc928cd4228592d4e21285927c85e48cd4e46c85dcc4cc1c3d9ba4223b1b7da0363b5e2e00a53f14d8, 0x789c0bc9c82c5600a2c4bcfc928cd4228592d4e21285927c85e48cd4e46c85dcc4cc1c3d5e2e00fedc0caf, 242, 'INBOX', '<CANt0zhdKp-4g_1qU+hqm_9pEgcEAnY2mjH7SaiCjWEFhpEyjnw@mail.gmail.com>', 'html', 1, 0, 0, 0, 0, 0, 'EDIT'), (81, 1, NULL, '2019-05-22 09:34:18', NULL, 'Nantenaina Fahendrena <fahernatt@gmail.com>', 'dev@specificom.mg', 'dev@specificom.mg', 'Re: Another test sending', NULL, NULL, 0x789c6d504b4ec33010dd237187218b0aa492a62d0b9aa4162b2424c406f6c88d278955270ef6a42db7c9966ba417c34e4b0181e4f178de7c3cefa5426e4048b30c1499803db75986d65e40ba322c9db8241b5ebe2a53dcda6550545caad7b756130687c4a9fd7709273ff111fbae4213c26c060e8659345dc0beebbb6811cfe76378e23561cd65cde19e97580be32218294a520ea5c17c19f869a463819b3bdb60267399e92aac8a80fd81d20967a38212e0b0ffc88ca4be8b7f52513a5b0fabffc7062cbd2bf4ff9942d671d4ece064e12dee92953602cdb5c29ce2a943ad565280295697b3e8667cb4aba4e142c8ba38d6e1cec9d4ba0dda412d9636eca59416dce1b5a6120d105a02d2072f73b04e0637c0eba560abcd3a84072875832009b652a9d0733a3f3bdc7d974e1a1f0d1cbdffa6c9bec04fec8ba679, 0x789c35cd410ac2301404d07da17718f7126abb6a91e2aa20881bbd40487f9b8f4d529268afe3d673f462a6883030cce6cdeda91485b0cbb33cbb100c7981b284918cb238d458df28eaa6aaf6b84a1bc94ab6129dd4647b9f168e3dbd4e6126c5032b6784195bc83c5b3fca7344b3b12dee9a0352a475519347a41011ddaf7940481adb717b9db038ff103843bb99908c85a74924e59f2f9604378e, 243, 'INBOX', '<CANt0zhdc_yE9ctGhdaKujMLnhXKnQcTATKpypG+4YU7ASdrbaw@mail.gmail.com>', 'html', 1, 0, 0, 0, 0, 0, 'EDIT'), (82, 1, NULL, '2019-05-22 09:45:57', NULL, 'Nantenaina Fahendrena <fahernatt@gmail.com>', 'dev@specificom.mg', 'dev@specificom.mg', 'Re: Another test sending', NULL, NULL, 0x789ccd934d4ec3301085f748dc61f0a202a9a4bf0b9a26a62b2424c406f6959b4c52abae1dec4929b7c9966bb417c349abf25721b1412c1cdbe3a717bf4f9e28952b48a58d9922cbf88309e0d6812478367621757e1dcd2c8f3a5ec59b552d4f94702e66f95248357d2a0d21db1d1c7c3e4b04d5d677b8a9966803e8f7c197a1dfed8d605b6daaee281c0cdb702f34a116520bb81173d4a9f53b68291a4702e616b398d56e64c2cc1f5bed5d278d7f909825e3478a5147f0564e6310b07d4daca44d157e8ca34cb268ae7f2c11387a5158ffd3e65287dd620d87115ce17a3c3336457ba930a3b0e7abce289982cd67e7fdeeb0bd1f17e342a4a9e7b8d7e1fa2b2afe5026093a77067f437af01bd229ae26aec04466d2f30c963903f23c9062369d29a1178c7f93fc57eaa5bf41d9d0e351c11fe7d23f7307421bf20f07081d0199dd2c33701e8b37a8f9a9a6177c5fc0dc14d8f486542aa8339d9eecbe9b2aea14f5aec958cfef31f98fc537761e33c3, 0x789c7d90310ec2300c45f74abdc36747111416102a4c484888052e1005b7b568139404b80e2be7e0623865800506cbf690f7f2bd770a9b008eb8397f625b2ff32ccfb6848ebc4251a0d38c62349ee179c768369f4c87d8691bc96ab61a6bdd903d7ad9b0a864f656c7b8aae551ab8ceb4ae83c7b3e8c17fe3c814bec2fc650080399d3fac734f9693ad27515ce64b86291a8aeee3d253ea6c42e716858a20568eba2fc0d91424474efce158210257232b77d7eb9051a77a6fe1edcb62a61be2acf5e012a5d20, 244, 'INBOX', '<CANt0zhf5CiULxi=jaqYgKndUZtsn-3_ibbmmxA5XG+aN6=Wg3Q@mail.gmail.com>', 'html', 1, 0, 0, 0, 0, 0, 'EDIT'), (83, 1, NULL, '2019-05-23 12:58:02', NULL, 'FOIRE INTERNATIONALE DE MADAGASCAR <pao.premiereligne@gmail.com>', 'dev@specificom.mg', 'dev@specificom.mg', 'Invitation pour FOIRE INTERNATIONALE DE MADAGASCAR', NULL, NULL, 0x789c9554c16edb300c3daf40ff81c30eb92c71922659ebb801bc251d0c34ee9015bd0e8c44db5a15c990e4acdd69bfb1dbaef98efcc9be64b29b64592fc52e8668917c8fe4a34e4f5e45855bc9c9697d20e4f5012072c2499a246a2d1c3aa11594ba327075932c6690a4b7b3451adf2637697c3d83e90ce6f134fe187ffe102f60d81b70decffa033e3cc75e970f4617a3e55977383aa7e5e8dd198f82a7d4355eb0078c969a3fee90cbc97badbed668917546ab7c92a272a45028842b2c4871e32d88d3e92289d3244ed27891dccdae6fa26017f0360aca43b63baa8494f41dfc5db52603a4009d435610acb53304e26f95b9415709471d384e91eaca7a5fff695cb5b2b0fd75a0275bc9fcd32299cf16706000e46a1789509aedc6922fc0343f7efff8898c552424486d2cf00a2c4aad3ac77873324c00dff32bd138c144d950fcc7f19a80e99570db0df09636392a619f7b71b19e4462958335ecb2553857da30080ce5c27a521dcc49316a978656820c49912beaf8a48158f92b1b489debf64b43ed942a6fc1240a6a300fbae737454710425d65ff2ce80e837eb77701e8add1c1aa991e85ecbb7a24bd354a5c4a7a92600f4a32562b45f0fad0ee67d52258f728e9b2c5852d253e864ba9d9fd18be09ee8ab03fe8960f6370f4e0da9c98360d4aa8b4a2312c91dde75e288a876fd8456fd83b1f83148ada0589bc70e1512cd6bd0a59335b1fa80d27d336c84565c361ed5522e742e561177a8dcdb41f79f826cbb25d066750d94c9b555895be2a8696c62d280c65ff35a843a7be943c3b325f9e1acf5a8786df6e3772bb61059adc6bd52bd7ef8a6d369f67e0e577d46cdc4dbad9e1fdeafa6ddebd23a7277f000bdb6967, 0x789c030000000001, 245, 'INBOX', '<20190523105802.2F4CE18138BEF@mutu11104.phpnet.org>', 'html', 1, 0, 0, 0, 0, 0, 'EDIT'); INSERT INTO `mail` (`id`, `mail_classement_id`, `old_mail_classement_id`, `created_at`, `date_sent`, `sender_email`, `dest_email`, `email_owner`, `object`, `cc`, `cci`, `text_html`, `text_plain`, `remote_id`, `remote_mail_box_name`, `uniq_id`, `type`, `is_read`, `is_answerd`, `is_deleted`, `is_draft`, `is_favorite`, `is_needing_accused`, `mailing_stat`) VALUES (84, 1, NULL, '2019-05-31 14:17:00', NULL, 'Cloudflare <noreply@cloudflare.com>', 'dev@specificom.mg', 'dev@specificom.mg', '[Cloudflare]: Add a site to Cloudflare Network', NULL, NULL, 0x789ced3ddb6ee33896ef03f43fb05de8d9eed9c8d6dd566e3ba95c5d4852a9c4152769f4362892b295e8e291e438ae6080fa80fd81057681c1beed2fec637f4a7dc99294644bb6ec24531597ab2207492c8a97c373e3398787d2fa8f3b6fb75b9727bba01bb9cee63afb0bee5cc70b372a9f3efe57378a7aabb5da6030a80e94aa1f746a926118b53b56edd3c7ffaec455576f79e57ee0ad86a84b5c180aae8d023ff4ad4840bebb7a9babed3f50dbb72c1b91e41f6f174643876c548401316fec4888c85d2484f60722407cdd0fa355e0f91e59ab50f009c49b3ffc69dd2511040c7881fcad6f53f0b67d2f225e24b4863d520128bedaa8b09e6a6c326b007561109268e37d6b4f68546a9b20ed26bd51e94756fe4e76800be1fd96b0edbb3d18d9a6931da3b9bb417087240d7f14845f6d0b742202dcd007c66f9beb142b0c667ff52d9ff18e8ffa2e6d7946a2c8f63a617c6fcb71fcc1c9f17e2dbe3cb1ef88139e90a0e9a1eea6a1afd726cb68b5dabc2e6b6cd8f51f7f251eb6addf042185ee1c0636a433085951f187568cecc8219bebb5f83f2b716cef067403626d54185e42ca3616454158edf87ec721b06787554add1a0ac37fb3a06b3bc38db73de2fdeb19f4c29f942d45147f92b7e95f9bfe53f9851a5fe8fc428f2feafca21e5f34f805fd6b5740409c8d0ae793b04b4894609b17d0d9c670d7fe02b60f9bbbc72de1ec6477bbb9d7dc0667adcbc3dd33f0975a5ac7763bf7821b0a36a55ed0f31d4a4edf135c1f935560daa84f7fd7fe0e323deef90122a0b90b221f84aeef475d6748a1f13009e83fc6a598760a3b24ac668679e5f723c7f76f00bcef418c295156c5a27edf26d56451ac03e861d0efb1817a817f6b630220a8dcda64006c0f98813f084950012e09433a5c76b48811f49ef29bc0bf094ed88354c2c45eb4362e0cc68539404e89ebdf12c0ee52308149a201215edc67c8462e80313b78f5940ae551d879ede3e1fdc0c6517755a284cb0c52ddbda3c8f6a0b3edc0302cae338911c64b0c13d80e7b0e1c02aa476c2704300256df7100ef230b456f05c015e0d82b20c22bc0747c74f3b7be1fc558a1bc4b842eb13bdd4808fa0e5925771045ce701e45e8d80995596b10b7a6008420ea92e1bf0404f881ddb1e9ac283f50fd910506feca04e5df99fe712abfad8caf4337acfc768f7cc70f566daf4b023b5a43fd20a4979858b0ef446b806b3f4c901f70de5ce5baaf0050d7376d87004c6ea9060819bc498fb4083930a07cc96536169a39b8a2745b89c99d431c9392294dcca936534f4fd3f42420b7543181b6ed61cabf02e79f76dcdc842185319906257264f9811b022ba094a74ad9eb30761ccd850d06d860b9a9e4596b65e29acd74a284cd78a208dbb75365541abca942a6efee33bc94ccf7b12c9ce3238fce95b1ceb4189b7e40b98eae948e037b21594dbfb081d29a7c19bf4faf007860e54c2b667a78d5610275e4632a0e2b236cc6c478eb39c3fb146cce7fe047dbedf941043dcaa099091f3025b5470552683381044da60881ef811d12de447e8fcd6d241494eb56bb54d504f7600c792c0be095a53564c9ca8e33ae532411453533d3ab9afd28a270d041a78a6601f1cae29fdc5c3f0f088b2e1754816481488b6602d1b0d8cf970302fe7a27c05e8f2e00184690368e088afc20fc2dcb3f09155205f2282a805983032e289c0d1fe892d78b8d85c7d41cc45237bf66563ee7d5cca0e8af2ec136a46ccb34390ad8eac7d4d4cf2ebc13e2c54ad7c4dedd2f1984bd625ab3c5e5158cd7b362316106d5f83b3340c65720690dfb545114ce078031189363646b25539edd51069e2ad734671144378f019fd74ec4873702f714a880ea6781caf82a90287266b6c5130d13732869a94fb79c1c37d6495cb3c44a2605596ee4209e02386ed8a26c9b6fa7cf6c97c150c8919345701ef0892917550c3841b499144beb993ec58ffbb83e1d62cdeb329ea0318b4bf27449f0e3f74e209ea08b3c8fa259e4268db3dc50d43683581caf0cb4d94a469c32ab510ee9b316a162b6468459f553229640c771375fd078bde00982948c18afdc73fb2a1a6904d1dcdeb38b44a286a16377bcd564f00781f47c46a459bcfc684e7e44c584951fcbc833ebe5a13fa356c6ac193c1ab4a70cf89a9b60f72036c5265b652b7783f9547f80d51e60c92c5445a619b7d68b414bbeacd76217b93834917ad0201af648122da1fe7b85de607632b59efbce0af01de62c00c686d9057b2bb021bd1352ff5ea08ea93d69b35008e2d6ccd088e7bb0a182ad35f599fa446ea2a83293a3976482d0a06abd0f3433b36406c2f64f667ae221d35565089034ef966db77faae478188b5a3a2fe54386a4235f9a7e90e71dadb9ee3c3e83e4b3c9582ba369719ffce823169a062322053e3112df68d1914c0ec704b6ca3f2cad2d9cf283466d2d5a813f87d0f0b238b99d75863b4145200a013e571cca003859e1ce0cecb1ccf21be3f22dc1a18538785e2a8d7940297b263ec6c707b2535c0f8f8ccd2b51c7fb00aba36c6c48b61a6dfc92a75816867977effd3c7ffa42e7518911ef5b107d45be26e6097383d1e94e8db0e0690052798c66b32bde7319fbb4d6843160f80ce0d18fa7dea9c532c75bacc49675114ea1987dc98633df10a1d42ddc8080611c1d56a75bd46e7f16527f3c73f3e7dfc8fec9f780c1e55639c09029f8dd30b4848f537b7a52bf1c2bd516138af246a67a3225600228e93446646d7091df8f597608fa9b8116031223015398a8b3f8799265d5b30f26d2bd3ac1f638c8905939b2888af713ae5c2b80e48033b9f036625d5962ca205b8919f48eb6cfad9981221750946e4a46ec393a8c997f58d4abcae8f889b5537805b0bf975262d5b0632a6a83b0908d36c545659641e523a05290e538ad25ab539d5164deff9b445297894682c1644e1a156ecf6b8749e0067493cc902a900cf44e9e2e85ad91c9187a17fd1d276e877fc07e5ec33d1ec52a189ad8074795b26a199b6ce52326c3e062945dae61138c944386216983051628e886572d4a66b47444850e3f98300f6e80c0b1621fec96b77fea9a4d29d481377b727a5817a27b1cdb70a42dfb1f10889ec463e7098bb35a2305bdd26406551d779a082e7e3f4b101256b74ede596e32ccc3079a0fa3e270f09aac6b19bca3c6e501b4f939064ed61ab4c252bf5cb211d59269ccb3a5f6f99c8a9a687b09d21ccb784eb49cbe41991bd0e33bbcdabb51adf00ac22c7ef638bed08f1cd66524335327ce398edbd9eb967f4aeb69b7ad37973d8da755e6371eff5bb73fca125edede29dd7d7a6f4baf7fe1c0dc97bdc3c939dd3772dd168da031b1ebc71ae6cdaceed8af8e0f587b776e3162b5839748f435339bfb972efbac87ddfbf948de8f08321e17dc932dbe737f0e23c3a699f47976d27bc38783f38da69caf8e234ba508e6ff1c59bebab96242277af8fe4bd6bbcefdc9aee5ebe9e7cdc352f5e77611bf74fdac7ddc3f6decdd5b6f4015e9c3a4776336cba773dd38d2cd87e67bfbd7e271d7d682a47ad23f170fbcdc0548e7bbc4f0af7d1815893755334f486688aa22cd7b125199a2e3564a2c9a22aabc434254b93ea32161503d715c9220a241849082b1023034a0ba0e89c9d9e87b716283bd86e0784011af183ed59fe243b0461ad2e29c2c5d9b660488d5abc2d5f73a861f13bdb35e610fc2e497ae38efe567b5e87a9bd68a3b23deaa692c4d1372a238196f5b1903e943990468c928495dae67a0db22c8ad8c5af25f2541b4b588dcb76f2952ff3f32b31a339b330d0cb534ea785af13dcf5f8a6955726900af86cc62caaf0cf5a7e7f8a65b30096cdb2020e88734b221bc1153015055bcbee7e492a3341725b52f2c8e77e26cd99a7d088b51e6640c65b236e9a6a53689f26adf3dc5b10e59acdcb89d19f1b2e3635337e56bc3100c65b0723f37171eec91963e0e04107a5f449be1b9f24c36ea35541d6e6c6dc121f222ff01a13f88c52880b9e530314ccec8f7f2c4aa4c782322dd48b17db164b60046c13b88c2dbc5039ce3b88b94c1287fd23c1f4ca9f350e984b3c238ef0d906823c6d2028322bca6d5bc6b182893dcfa4f0ab843226c2050514e0d9b93de8e5d01ecf599539376c610cce284ed76bac5e9109fc3cfa29af119641479d9020b443964d0e1e696594aaea3b535505f6c55303972fdae82814a102d95ef81622f43cb661cd2211a554bf34a92edecffd4a2b763194b9b01a3bd4d3818e43826195855b51d7767b3cb2861b2256715d95751d89485455533411ae239806d9505dd588683604a29b445055c3101ad85404d2d06449911484653d8eb82504d51a635537cab9e0094df13ce785d9729c1047f0020229736d2144f11a813f772843ffbcb5b303ce9aaddd5fe2eb33e210148113875a25bce07d0fb346c7d0a50c17dc52159254a4bcd70f57696f917d9b1eec5a886d32a92e96408395c6c98b5763a571f27d1a27ece04e191a7991225d181af95a419099bb245f2208521ceff99aa1911ffe7460b3fcd480acf0c4df203630d8ff4bbf1f80f16e2480893dd3852130d9b924c4ed1ccc535aed10d02b3ca4530c586a2b65134a9d2ad8f3d959729e011be7d39a845ffb80a26e5c9115b03a99e13c120dfce0a63a09d6f32a87a5d105457b87b7093523bf9799e913a389dfe43ee2e6a78fff335aa42631f102a64f67bd942928f2eeadb96f78b0adfe1ea79148ced5be23992d2981e14e3adad91a1e7be7a2796e7ca0ed8797f27b031fbce99ade71f75239ed99b2d69da8777dd99606976dc733afa5ebcb33a97bb5ff2e42b2235eb59af6e1f69b10b6b5e042766e9ad7be78dc3a1a1e7fd8fd707c36b0d1bec15256689faafdf67acfa811d18050a72e22964d5d311453868a2ae93ad42515eb486e580d156153531b75a96e589a05695355b7ea9a898c06b22a208241873d90e37793ba6a37f90dfb795922f3524c9e93530efd0eb03d96eac1742a57b0a9e2fe3920d4f8e12921bcbc1fb2f3e42e61ca1b93dbbf863d826ccba68c54753bbf4cd9a3a51e2af5d056ba68639fea1f8f725ab270fff995a2aeb1bb10d03ed892ce4be83277c7ed03e4d8e826ae7586a007768ecfc029131f1cf2c292db4a6e9b9afeb6ef5976e07206630c13c40cc3cf98b89081cd9e7742ad3a6a849ac38cf1f8b8fcb5d49a5c48342de7df2e81bf5d6e06942e77ea723f796be0d1bef0b7bb87205313d0d21b58a82b0614545d91046a0f2a025620b51e91a9ab9251edd8d6780fa12ecedc43283c22377d92eee1ad86094a65d82e8d8b4a8a9a6c43e456e3e5da3878209f72d1bab04ca77c698aaf4ca7fcf2e994e58e4129c5e58ec10bd831f8aaa148a49c0fd0be31c4dbdab5b96f4857fb57e1e5c51be7d03dbe35cf0cff726838a62d496868749177dabb94ef1c346c0c8f767695a3ebadbbe3eb77d17be5d441dbe2f0f0fdf1f0aabd275e9d495dfa3d1bde8c2edbc7d7f4ba8fb7a5aee9bea3d7a73787eddd08cbe7761c8afceaa7efe4a9d3779e58131b489274ad6120a86a9654270829aa6e2255d365ac344c05ca9a6c622423c3d42555c2123465a961a18669a9aa4abec188278181075c9f6d51997e3f02b18851db97ef2c7dfaf87f3c1aba248e7e69fa968b6669fa96a6ef6749ed8ecd9ec8bdf8ecb7e578324c29c379c3b7d0a62c323ebfdef32826e2569fcb978f0ba74d716b487a905a2f8be7d6a2648e54f74eec64c5ca549c72296247219e51fc64cb91684edf49190af1cfe4ddfc636cfe39ffe73959893da5eee143e20bd2fb19555b1a73a531b79885608f7f720b415cf4f9c65cd2f5121973a399bd5063ae3c15febd8af13f69cfe5627eba287ebd13e152633ab4a97e0f27c27ff8537a020b66738ef971ac45058a1e3afb5d1a17a5562a234565a4a84cf32a05b94cf37aa6342f535755d8d0b0204b5015d44643124c0389826662d35020d24543cd1f155f8e342f59359234af911d4341f1ca34afd28229155f69c17c47164c99e6f5d2a5b84cf37a79695e334f9c2aafc3cbb6f661091e7eae4ca55f29620d2253d549bd2111c9b414b36ed46551562d59d474d9544549d24d8bf281a2d56528422c5b2a92a0a659a4ae10c522cab79a7e15675eb19381cc0c0dd3acab45d9a2cb76baaa7c50d177be783dbc43f7190f2a2af7e81effa0a2d2c72c05bcf4314b1fb35cae4b699eb35cebec27bfa4f1a22fb25cc79d2f913c8fe6b674cbf5e2c347be1f95f2fc2dcbf3fc7050a1902ec3c6d53333dc52f0d7888a59d94ec86471c1cb2735a5f1b738d2360ebd65436ea9563564a36e98f9109c3c15828b3394a663808b0a9d6db6ba760878680c0c6008188593076f019320d80f09ff1ed22604837e8f3f20719c725405fc31347ffc2f9045c9c8ddd8721cc05f811582d3f899d0b80a0683c14408ae4ac19240cb1f78746c0ccea22a8b6c82bd007ac80e91bf02b6b7aac05025b13ea1db27b5712a21d49a5de0abc1924dcef99ae84902e20c27cf08f07dd7ec4e2c2f98f98eebe595adf43d79e22cd827b45cc1eb5be4e7d67b4b1037beea5ecae7b6291b41722c78277754783815d31d1e7fb811dfee1c499331dde303b18645b1ae3490a4634daaabf5868671c3b2645517359948a2422c4bd455a28948511bc840a655173509d58964126888d42f8c58aadf46658f728de9fb8b7841ec177dc365f8a4575c863ea2da5db091ef09962970f20b924815752e9142d1c7fe32fbce9319a630f44c291613efc6a4d8f2c22880367bb85ad02715c0e74275d0ad4d0674f1824e48b26fd02ca5f171d278807bf8e0d441b6766dcae2ed3bf9ee16b74f5d737f6f787536298547ca71ab797774ddbc9b92c20bb1a69bb2a68866dd805851a0a86996a2d70d82554dac8b4433450941cbac23d8207509134b57b486565711aeab045bb23892c2d6c08e16f3e2e02511c2289ef0d32471124ba5207ed382c897452e6cec01bdfd6459a442c91eb4ab698772fee917b0ad5d1f4e09e868999c7af2c4b127d6144d158d864454d29064598492aa2a0da38e44ba206a4892554d829a2c61b12123a85aa66140d9a2e28a65b35ec7a23512d043dbbb21b8e9bd1c0975f88ca9e83c4944a7f0b4bc329a781cb591453b2bde34abc6f307b0c681a225885a9501e9ef28805506a49736209d349f7ba8bcb64d7146b5dd4808d3a4c436e38f38ff994775f6791428f24140d853d6d37d68c05ee645d911f8ec2945a6ed8c0e622cfaf59eb3052589d9756dccd439dea874d85ce2fdf4ef53b780d16239bdac8f85fb99b68e470f6b9dc0fc34c262ed037c86d588022be64478c663229e958fb8cd939900377f5ecd81dd857779f00a0dab279b21b502699db21e8a05fa8b48eff45871efbb1e06afe91dd0e2ac3ca9748a9bd252f693b727673b09fee739099eb831a2d72890debbcba70c66a856746ffcf091dcadc2626e0c268ab61bb9ce269bebff032dabfc5f, 0x789cad54c14e1b3110bd23f10fa31c2a90d85d40a80824da46a1a8480855243df4544dec4962c56baf6c2fdbdcf894aab7fe428f7c0a5fd2b13764b729ea89c33af1783cf3de9b198fb4ade54ca323d8834508953f2f8aa66972b139c8852d8bf77528bf9524555d5e50894abf89066f6b27e82238341e4550d6607b20b0ac50cdcd85c00ca5ccbc0a740cfbbb3bbb3b8f3fe23a9412c66cec2c234718088642d8da0478077bc3cb4b185f4f3eeef3664c9a4480cf1a0defbe5432fade62499edc3d391f5d0286da9f7384a0ee7b813f29080b727410375f19318c3ad2b84eb7400f53220322c190804682f2c03bb9829975b08a37238f1caeacd6b68951c107aae2cdb4b7c05c3bc768883ebd74864263dd328f509e1e7ec69f1b3b0765feaf3e16dace95799d22445809e333f73d47a53292dc796baf5953c3d246fe92ee3ff88a849a29069297f3fd0df4e1335769198b61126bbe837882d0d034661cc0d47e4f720aadc4120663c135bcbc1dc31d09eba41f6c228eac992957a620d1c1b50e8075e0144109d47a1535e6fa4c573d5d9f3b6a93b4abfe0da13350da58eba9ad43bcaecc9c5d53899e1e7ef7a4f775555917b6e55f88824c56fb021d83d0e48be3c3a353fede9e64636e80ec386bbb37c3ac0395adf5cd987bd21fb335bad71ea6feba1e14ec775d9c9a173caabfccad50ad46b1aaf1d46fe9f3426b26b7577f1efaeb64c17d988242c353ea895bb66d619e3b81dcade9bfe778dc177595a6b563cfb3f6f80bb858677d230cb5863b355f04cf7d981e1199c3bffc72383a3c82896d0ce7e5272be430e6f6bd624a4279610f6034cce1ece4e8f03462bd4241536b975b9acdd6e6a45887a28894278d0a815cef46682d5bced1f7469925c9ebedd74227b332e9067f159a55d1f1c8941159abee1fc30c071d, 246, 'INBOX', '<RKLIAwAAAWsOQDt0coPiQW2yGHKiQA.1559312219@cloudflare.com>', 'html', 1, 0, 0, 0, 0, 0, 'EDIT'), (85, 1, NULL, '2019-06-03 05:19:05', NULL, 'Cloudflare <no-reply@notify.cloudflare.com>', '\"dev@specificom.mg\" <dev@specificom.mg>', 'dev@specificom.mg', '[Cloudflare]: specificom.mg has been deleted', NULL, NULL, 0x789c030000000001, 0x789c6590314fc3301046f74af90f9f3a87886641ed54a94b19d88a98aff6253d91d8917d2ea4bf1e9b2010b0597ea7f7ec3b4a5dadaad5e9c2b879c73bace3c4463a317e6cc67e0d7120637c729a99e5ebfe0f7fa308cb032b5b9c67fc9b807778615be38966b4db1aedfd668b76b779c034e2f974684affb1837e3de19731d739041fea821d4461c8e1cc087c47d6e609f5f92c2e2a2983df25aab81ec6bb4efa144825f7fd8fbdf96ccd3e65c9207ce54c242ecdc4c596fdc951d28b0f72cb0132c551631a982217b3e62bc4344d3ee8de0c3ed96ea0c04df9f0b24c72afb15eb67af8e650a6b15a7d00d1707cde, 247, 'INBOX', '<ef348ece8a0a8240065510cf57e5179b@swift.generated>', 'text', 1, 0, 0, 0, 0, 0, 'EDIT'), (86, 1, NULL, '2019-06-03 05:24:44', NULL, 'Cloudflare <no-reply@notify.cloudflare.com>', 'dev <dev@specificom.mg>', 'dev@specificom.mg', '[Cloudflare Alert]: Your Cloudflare account has been accessed from a new IP Address', NULL, NULL, 0x789c030000000001, 0x789c95524d8fd3400cbd47ca7ff00d90da7c14362dd9cb8a95f89040da4391e0e84e9cc6221987f968b7fc7a3c5940cb6d77144dac3ce73ddbcf1f79956779f65da2034f263a0e17600f2772fa9e6671016d8020107d01fb41219a9047c0ae73e43d9cd12b445d4a4163d2a73010dc8e12bb7e4447d0a11f0e82ae83dec9040896cef0e9ee2f439bf4d74f3e79b6e8b7d0d1e9c6cf64b8672353311df32cf0442d6caafaedba6ad6d56ba8aeda7ad76e6af8babfcdb3479ab0a99ba26e36c59b6db1dde6d9c1c9d9936be18bfce271c4f2aaa8e0e5b7babe86cf6ce33d70b36baec19dda665754afe003991f52aa52a54f0defd9512ff765029fd78c56d5ebc0f861901789ab7481410b7cb4a2e35b401cc985023437a13ea6c603a0bd2c311b96a84926f029f92736a5b9e487441b56308f849ec00c688ff480cde8fd59d414b41d90c5c3a8526759f7ca22fa6b54176d608381c5b6308430fbb62c939985f9676ea1a32f67273d8ff4a79954e080275aaafb19c927020fca69c41a72d6afa013fb22c0409e03064aab73a4006c358a6668b5a9396ddecdff4249e09df22d1bfb68c1f6848afd063d24deb9, 248, 'INBOX', '<9ab22fca2cf4a40e7e0a33fff056fff8@swift.generated>', 'text', 1, 0, 0, 0, 0, 0, 'EDIT'), (87, 1, NULL, '2019-06-03 05:35:02', NULL, 'Simafri Support client <support@simafri.com>', '\"dev@specificom.mg\" <dev@specificom.mg>', 'dev@specificom.mg', '[Ticket ID: 661712] Identifiant CPANEL', NULL, NULL, 0x789ced59db72db38127d4fd5fc0342d7eecc56892225cb97e8b69338492555f68c6be2d9cd3e4204246144120c004a56b4fa977df56fac7f6cba094a2229c6b73ca4a666ccb28b68007d43f7e906dd7ffefae7b3abff5cbe21531385e4f2d757e7efcf88e37adebf0fcf3ceff5d56bf2f1ddd5c53969357d72a568ac851132a6a1e7bdf9c921ced498a4eb798bc5a2b9386c4a35f1ae7ef1ae91570b37e7afae29ec6c32c39ce1b37e26f03a0a633da861d37af1e285dd0d6b09fcf4a79c32fb9a0d236e28c17d2eff948af9c03993b1e1b171af96097748604703c7f06be3219f1e09a654696e06a919bba70ef1aadc621af18133177c9148650a3c168299e980f1b908b89b0d1a44c4600f0d5d1dd0900f5a0d12d16b11a5d18e906aaeb2111d0121964e419e36cb901303aae61a065a17e6f1a7f9e6da70050e3b0ba9d68df2903031af92c6a06e959654093aa17195665863da6a8868b20a45ccdd291793a9e9b67cff6f6ba04fdb2b267412d2657714ca60d64339ee9846225c76dff170ce8d08a8a566667563a9221a5acac2323bf1fdf5814c4d28e58cd055421913f1a4ebafab56fe02a77ca127af245bae324f5b3d682393fd299586374630d90845236918746dc3b015c819cd8471d197ae169fb94bd96fa9b656f4dc48d7cfacb70c222ddd6ce086e0a28077fdde8ea472d21a7d84cc0404864a644831a4dd4832de1d892085dfde482ac6156ccfdd4853237b6839b816a8991a8c0752657bc15731b75aacec4e3790614813cdbb9b97e722c278a4b1591fa0e9673c0c1bd9db55a63dbead0a87b65bdf8ba89a8818c46e1ddedb39b58eeff664da7e72dd5b1f181ec1c91b8ec945c102951fcab18ff3b9adade49a68190a460e1863bd110d661325d398a12d52750fc6e3f1baaaf0feaab72ff181905be584b68f4fc11c1b637086ddf631880fb93198627038a8721e7699876928267137e4e39d0f884f5aa0f41ae239e7dff1f1a9e78fe655b3e1a9020f1bd34e5d0ed96c1106f606a56ce9f8fed3647d2137f7d3fa70e383631f9f5a1fb48e51f94ebe72a2f8b27e59079635119db9ca31b8e670c7a7f8e411e38ea43132aa064ebef4c8c7e74e98d91e510563f68faceab03957c827cc6991602ce4bd021e659960cd6834c712f0666bd5039c7b5423725d6153980f38024949284914df6661eb08b36ccf999d4ea757e7d78afec80a8a18e3abc55418ee5a1403626f01cbdd91e274b609ac8cb25034c909654616a0f260c340237e7d9ad743420d3362a65b2b21806cf4de1336d578a91efe3d8ecde5b2addc436077fa25185b3773ece73a91d0bccc37005d75325d15bc99fd051dc24a46104a9a4b3d85e409520365ae32d985209aed53e7029a26ce36b9da1a1fb1d37da4a89614701f571895eb03cbf07d44277c55ac47d0abb845202fa2fe0ef45fd5e334a279d103ab9abcdd22439975d971659794a6728794695feb8e0abba9043058d516e4d24a2cfa1bf4163172ead5fbf2e838b3b19ced3bf42c7aa6bde799d2aeaa6faa93b68bab50739f55a915af59c07f84d77e8c381394c8385c121d28ce634263467e28c450072cf8c72aeb151bb6da5571b8d86becf71495702c9499fa6e658f836d296a173fb973c44028f0c9244422761fd840b54a86605753285d9df25c7b552e6bc5b9c3c25cebb43cd75995ab759d8f2e15b728b08de18a6195d2fd254dca75ae7d54b4beae4e6e11e04b2c5a77b000502df54b257505e3d0728f0454a4a249bdf57a77bff2b2de2abf397abbab631fcf896059b6c56ce0f80eb1aff69287632393bd59ab754690e331de22e1b570a1b305a77c83ebdb8a9355a481635738c456918c53000193c7cb769c377cd978231483cd21b9827620d8c0d976d4959ba395adf689768255359ae763b07bc71883b9866fc5b64718838cf712f70e09775af1088bee67f0347bf68e6363dcbb2c9f1e28f7c156562d2e1d5a8097e78153cae44728b0e54bc954f1b1fd1ea3f30f325a4474ac443390d11358666ca18212ad821ddf88c6d092a8226f6fe33eede5d4b607fbbc504ea49b53dc79db6d75fceb13bf99c4138764493e70eeea66ecd114fa2007620552ea83e558fa0af4205b3cc31e71b2de438f165662003e20daef55e07ea17fc8b4c26ef45b2455a115c4cf96cf5d97445c6b082562c38a7068875c77d84f868ccf7fd4090fc458404837a349a3ef25b029195e701508c2bea7732954f6659106e6f686c4d2c0254da709d6371029404c93fc1a13b85bceb8216c3749c9ed0d6e91295e6281acc83cdbcd38e413e34df22f996aa2b9e29f8988c7708f83d5090505232a4202ed9ffe947e9fc69ca8db1bbcd4406d4ad5862dcda4dcde009f73ae09032aecd2a88115936ba425f6c431139fd2db1b4d02016da3d620b9b9b1f543fa1b375df29e812de009a8dae4ecf2e54f6fcefb2305f976a98454022475c9855cf238e696fec15093c2be3e76b79bdccebbd6939317473e14dc9f33dba1bcc392e1465e6676826ef98c9ed56908d10a451e5c24e6020d08b6dadffe0fca7b6a4824a3acb78743e9eee35e1d3ee17761cba4994c937f1a88cde3e3d649abfdf760f07676f1fae38c7f74865fcba1efd1ad5dae6b1df3ddb3734e3ee451900317ae29c5a2ed9fc06d141641343efb0ba9be1552bdcd8ee25b6055a9897e4ab5bebf03c8ae9380418ac0c5096f9618b18fef34b21cdfb42dbb8ede1992ff923cbdbfbe7da94b4267081d05e017c00059a2193408641a9b3f98193a1d45c2ecd0c4194e109b2d48a02dc462c7a3a59fc964a9f0da41fe7fb3019b0679198624a36aa23854983967cd3f57df74a7a07ae6fb0cf798f4bde2c5b1ef61b381d08dffb004dcffeed9ef260d0f12, 0x789c4551cd4e023110be93f00e73928b2cc1032624448d3f89092809d1706dda014676dbd24ed7c8d378dde7d81773caa2a6a776bef9fe6ab0be8d1e356d48bbaaa8b697fd5e3e0b0c9ac00c54ed2880769695e6b601eb3820c4e4bd0b0cba24b45cc09b0526bd4706f33f54d03679c5a51ae51a5380fab46db052d66001ef2e458818f00864372e5482f62a80cca984d285784883641142db786723824ae197569d54da4678e618c1c8ab6cc5eca093393b8ae25de80d1d52db44d0343418a328175dd255fa409ec2b39124d28212f4fdf2eee571deef2d03b940a2318585fb426b51e0ac3809fef594aaa338e5f039e731571553c918a0cc55504dd991feb3d37e03bbc450b90ab33169790a3b661fa7a391f4a2b6188a4895da042ae44b4635e167b75bf89dbf6132b3c9647c3dbebad0b3a7fde261bdc775676338ecf7e608ab73ffab8e244f7e00de92ae51, 249, 'INBOX', '<0102016b1bd57525-14d841dc-6f4b-41b8-96f2-cf479dcd858f-000000@eu-west-1.amazonses.com>', 'html', 1, 0, 0, 0, 0, 0, 'EDIT'), (88, 1, NULL, '2019-06-03 05:45:05', NULL, 'Simafri Support client <support@simafri.com>', '\"dev@specificom.mg\" <dev@specificom.mg>', 'dev@specificom.mg', 'Votre avis est demandé pour le ticket #661712', NULL, NULL, 0x789ced59eb8edbb815fe1f60df81d1a0bb2d605992c73399f8d66e2609b240b20d76a76dfa9316699bb5242a24e54bbd7e9fe6359a17eb39a22c4bb232b72e102cda1132231e92e7f07c3c5765f4f4e59faf6ffefefe1559983822effff2e2ed0fd7c4713def6fe7d79ef7f2e625f9f0e6e6dd5b12747d72a368a2851132a191e7bdfad121cec29874e079ebf5babb3eef4a35f76e7ef236c82bc0cdc5ab6b2a3bbbcc3067f264940bdcc451a2c72d6c82e7cf9fdbddb096c0cf68c129b3aff930e68612dce7f28f99588d9d6b99189e18f7669b7287847634760cdf180ff90c49b8a04a7333ceccccbd7288d7e496d0988f9d95e0eb542a53e1b116cc2cc68caf44c8dd7cd02122017d68e4ea90467c1c74484c3722cee22321d35ce5233a0542229d8a3c6db61127068e5a9c30d4ba328f3fdd571bc31500761d51ad3bf5216162d524cde0b84d5ada24e894264d9a619d45d011f17c178984bb0b2ee60b33087cff777ba02f7a3b26741ad1ed601ac970394439ee8cc622da0edef068c58d08a9a5e66a0d12a9621a59cada327be6fbfb33999948ca25a1bb94322692f9c0df37b5fc096ef99d9ebf906cbbcb91b6e7a09d5cf6c74c1ade99c26427129db46310da8e613b90335d0ae32296ae16ffe42e65ffc8b4d562e8c6ba7d665f3288b574f3811b0144211ff8c3234915a43d6284cc0418864a6544d1a4dd58323e988a30837fc3a9548c2bd85ec048332387a839400bd4fc188c8752e57b01ab84db53ecec4e3794514453cd078797a722467ba489d99fa1ead73c8a3af9db4d7e7a7cdb552eedb87e1853351709882d011f1e416de35bde4ccf4f37c3fd99e131dcbce1e85c143450c5a55cfa385fe81aa41ba265241839638c0da7345cce95cc1286ba4835389bcd66fbe6814f57bdfe1e1f30b95d41e8f9f854d4b136067738e85d82f8881b832e069783472ecc2e479846629e0c223e3b62407c12c0a1f760cf05ffbe8f4f3b7f54afe90d8f1578de59f4db7cc87a8b30b037ac794bdff71f27eb0bbe79ead6e7070c2e7d7c5a31082ef1f0fd62e55cf16dfbb23e2ceb6274e6aa88c12d973bbbc2a7b018772a8d9171d3708aa5173e3eb78699f28a1a31e6f4ca9a80adb8423e51418b0563111f56e251ee09568d4e772621de945add03dc8b1691fb069bca7cc83190d4849254f1d20b830bf4b21330fbfdfeb00dd7c6f991152431c677eb8530dcb5510c88c3352c77a78ad3e5c1b072ca5ad1b420d419d90055181b1a1af1dbddbc3d24b4302366516a090664adf70eb369da4bf3f2ef00b690cb4ab9e7c0eeea4b616cdf2d623fd7a984e2657508d04d90e9ae8266fe1bce10353c8250d2ddea05384f981948738dc90118d1f294ba1250347176f0d56076c1ae4e234533a5007c5ca155eecf2cc31f623ae7bb6a3e825ac5ad06f26ad43f06fd17ed711aa37915815d8bdf9691a1ceba0e5c1d92da5401489df6dfc2d160b790100c76ad09b9b61293fe217a8b04390ddbb1bcb8cc75ac7bfb317a5691e99d2053dbd5c4a63969abb806b5c0ac496da06603fe0350fb53cc99a04426d196e850719e109a30f2fb8a0df541833fecf25ab163b35d330e576b8dd39aa2618e9534d35ead9c70b02545ebe247578e6808153eb9845824ee3d0ba8a0a608563595d4d5afcff576f5b4569d3bafcc0557f5b9feae9eaddb307aafb88d02a50d37146ba4ee2f9da49ee77a1755eddbf2641901bec422b8850504d55abd543bae601c4aeea9808c545569b8df1ffb2b2fafad8aced13bb68e23bc278269d926b3b1e33bc4beda260fc746a627b3f6d43941ce66d845c26ba5a1b309a7dec18d6cc6c933d2d8b12b1c62b348ce29048329eca51c17055f3e3e084563734871403b106cec941575a373b4b2d529d14eb0e68956c518f43e3246636ee1dbd0ed01ca20e313c7bd45c2ad5a3c40a3bb193c4e9f93eb3828f726f7a77bcabdb7964d8d6b971662f33c766a9efc8003947c2959283eb3df6374f141468b98ce94e886327e04cb9c2d6450a25578e41bd3044a1255e5ed1de0d35e41ed79b0cf8be45cba05c55df5dca0ef6f9ef9dd34993b2477f2b1735b3563afa6520739602be0523f5b8eb5af40f7d2c533ec0137ebddf76a61251ae03dacfdce03dc2df437e956588d7e0da7aa9482f8d9f2a9eb92986b0da644ac59110ee590eb4e46e9e41afa0b112e39d6689f3f99cf9f307b7ccce02f58788ccd18e8924f74475e0adcd2c98f32d3447305459726467dfe9706b699e2d986304e140ff94a0a4556d2403347a198233a53041b1945a1ae8b315bc2423b6f8597bc4ffcb9cdeff07b67b12f5da47f3480f9e565f02ce87d1b8e5f2fdfbdfcb0e41fbea5713a9c71ceb01b1807cee4576638f2e8e470e8bf4a6dd1c21401dd17f464d8bce5c894658026a9041812040fd0ceffa65cc5f8d10401f98ec69f3f45422a8e8b101a80183fdf96d8bce32a14968bc52effdc362deadfa78765ae3b9a2a0812df3c79cbc9cf598af249113c704dcd1e6c0d036189c222b08827ff8f165f2b5abcceafe26bc48b5a21fb988c797716ce5b3a82a60bcd0b7677e83f0fcff6d84596a5c3b1aa7626e417aca061f6572821da22843381ac4e44029536d9a21a340c659698df981a3a9bc6c21c439d3399432cd23648a02ec4c68e074bbf96e95661e94ffefde9106c3ae4fb28223955435ac070c659f77fab76b955503bf35386274c465eb5791b7998f03174e37f1a42dcffe6c97f00ff13e272, 0x789c2d90316ec3300c45f700b903bba4536cb8430a14083ab4e8d4740950646564a6266c592a45bb3d527d0e5fac9265081087ffc1ff3e5f08944d4b0a08f3a4f30416e57b88d3386b29fdbe5b8462bb49efc30d010209bb3e80cafc17a0a14168f8859a40c8d0e85860742a043872340f025d8c1164254bbd2663d673f4bab951f5e1a92c2df6f8455204b678132e22423932fdac66dff867e5fa7838548fd5c3ce1cdfdad3eba5a5cbee46545fd1b4c72a2ffc7421b7e815592892b8189e99d97a278abd06f02e02f6a956bcc2323d8925d505f51eed3c75ec84922941c7f2231b5aa94f2486f38edcc9b8aec3ab13d478a2bb6cdaefb79b7782f3e0532a9c73b3a4fc03da5f876a, 250, 'INBOX', '<0102016b1bdea861-62a0ac6e-859e-4470-807d-114580b22c5b-000000@eu-west-1.amazonses.com>', 'html', 1, 0, 0, 0, 0, 0, 'EDIT'), (89, 1, NULL, '2019-06-05 06:41:03', NULL, 'Cloudflare <no-reply@notify.cloudflare.com>', 'dev <dev@specificom.mg>', 'dev@specificom.mg', '[Cloudflare]: Reminder - please change the name servers for specificom.mg', NULL, NULL, 0x789ced3d6b73e34672df5395ff30e6961ddf4543e2453ca88723cbdab3aad6eb2d4b3e5fcab5710d3003121108d0c050944eb91f94bf915f966e0c4002204851bb92bc3e73555ce2318f9e7e77a3313cfa8ca781bc9b093291d3f8e45fffe508bfc9ed344ef2e3de44cad96830582c16fd85d94fb3f140f73c6f708b6d7aaad1e8e6b837cf92511e4cc494e5741a05599aa7a1a4413a1dddacdaa5dbdaa5611805a2fcea156008c64f081c4c85642498b02c1712869021757bab1b082115bfce2300e36ff4c7537a964e674c467e2c7a2448132912e875717e2cf858a87e9f51fa731492b114649aa7c47b7f7274ab969e8ebe2f00f8260de653e87829a48c9271aeee9dc671ba78f7f62f0375fa2eba1571fe4e6417493039f1eca341fb1a341b6c1b7280d31e7df6b3487814bea7b482eeaf2c8b182c20c74bddffa0a18c642c4e8e06ea1bafc451724d26990815e172a05c0818c8fbe3341dc782cda2bc0fc81e0479fe55c8a6517c77fcfd4c24ff7ec9803ca6a61dc0273ab0e0c0c2031b0e6c3c70e0c0c103170ee013f54826e2e35e2eef00c889105221b63887852910077f26676f2ecedf5ed1cb77e76717af2fcec8e5d57fbe39bf247f1e546da2e9f89e4e731a019db2591a03e1d2844e532e46c48f82397c0eff416a23be4eb340908b732253924fd3544ee23b0026e12283af3cfabbe030281b8bbc5f9be6553a97719a5e13763f639c03fe475ad7b8df97cd0c4d73084b3899cf70a25996de445c10467a3791589028217e962e7291f5c854e4394c579f4d22edee81b5687144e37cc680b7b5993c5c5dcc56171b80fc20a6e98d207817c024be900b211235668e3377c0589fbcff03c8cd77f9f8eb94dfdd2f222e27235dd33eaf4dd23fbf0564272c3e8b599e77b7696304d90631c1a37c16b33b02121cc539619284f33826c51875286607841d90383a20921f103f4e83eb5fe7a954580136157422a2f144d26c1e8b91b865818cefb65104e62ea98cbd89ea0d00e4444ec4ddbf6582a459348e6055c00fa028eac0b09f5126feebb82745dc7b7fb03acfa779effd7d90c669368a9289c8227918ccb31c4eb908d93c9687448a5b49b908d2ace0cd519226a20bd069ea47b1205cdc80b0e7086f39225c0a6296015f16e2a964660bae806e078adc0dc4a19414b0208f53c6ff7b9e4b4535ba10fe752437dc6d80fa2e1337a083c84f51c2817f69c13f3fa9ee3ecb01c67219406419a6d9342761069407ed9b8c911d976bc1c9084ed6584a93b50e5ae7b8d2d6155c71eb128f6ed6ae8134246b1751b5ddd778a95cefae2cdce0a304d68aacb32ec67e9a01d7818d8a6336cbc5a83ac089aa9685c5bcafce08d9481152704fd5b036c2ab310ad4772907713858625311e3fb24bebbafc02ef88f7c164d67692659020c5a5bf0b7a8a45e8340d29f5020c9052a429226e41b915fcb74866b5b0a0570dd6802aa26bb272bc8952c9057e1d035f4b03ecfaa4d974474b5ac2dafefcfa5043860d2b54b9b80781516ff1a6bfd3820423017a040ea4054973602e186f8f77440b09f6f299bcdc000702619749622906996bfaff34f49854a81ec4405b2697252084ac1860f0c59b4537ec12e2d174aeab6b7accbe7b6963514fdc754f08801dba2260f32b47ea8a6be9cb25baa8c953dd466b77faa21ec156acdab425ec9ca9e758b09fa4eab6374405667a4eccde6a0283ad743c80a8cf61cf556e592370f5483a75f689a4bc982eb5dc02f5a97e2537422f7005406fa99828c8f880ec8d9d897b73a96ee50d9d35eefd99e57e9a442b3282553816cb80d88d700561daf806d9bfdec8dfd6a18ca0be4d411dc04bcb5e4ae86594190e1468a55edfc14f033dd6dcc5884db86540bf4367149932e257ed2d93bc65b7431b651b48edcb2739d1bbafad610cb9565806e073571aa59a306d23719a16eb60e047af56b22564257e06ebba015edb247085239a3b2dc5bc7ea9a6909d1d6d1eb46a254c32c8ec6c9a89cfc4120931489b4899777e6e41d1a96acbc2b236f6cd784fe12bc8c4d2bd819b4c74cf875e182dd13e58ab57bd51b4fb2ed547f80d51e60c93a545dae59e1ad6f02adec8196d3b0ee6b36d9b036ada73c381aa8b8ba3b755185dd04733818e2dc4a8cef318582ce35b8dcf3f880a43146180479b76ee54fb388c19d1ce27f0ad16cd476740002d51bbd1385a41141fc571fc36e93b08aafc91a71e328872523ac7496e691f25aa22447a7b5d11066555aad8cda81d9ced2783e4d0008a5524debf3ce594b521b9faf0fc8abd15ec72993f7758a5b00eae1560efe07266baaec463b61335866aad00b21feb870df8e7baf421bff7a2ae43beef960c2c6593a4ff8a8bc7558a2543b5c65253040ae6061b16ca21b0155a9960241244b71e0592672d03d851fd85346e7b8871e44af1499e39ed6238188e332abb03c2f272aceb740b92348b87cc48fccd439af58167311a470cf4a946d863ee20042e5cc2d17030edfa3d65228e4e39ed2c8cba5ada9f975abd05b877f3bac986164e0e3c22c0146a5300bd8d3b3d5d56de4a883dc5e52458e4de16709697d5665b0155cc893307d8b106fd271fa20093e12e22960b49653da9472557856d0ed024e170bec004d2d6050286b09af625aa27059f599445250959f4bd245c66687642516b4119e56bccf2b42149e6a9b7c68d80b7f324fe38857e1f5617322cc401cd65d016358d34beb9aaab4ee8d568a958b660f818cec006336d8a15cc32a1ee96d2389e53e8e414aa9c495f4d690df89c6c770ea43b3af007d68ee526d9c1cb156321d1f8304713ae72126c18a54fa577339fd0503d6f9f4b8488a7e8117f2749e05e2586660585980c032752360d319432c048cce679c01f913b0d547e023933c0b960f5ca2244cdb5365f9c0d14dfab7cb33eae9ee4065b9073188f42f98842d68fc8baedbee2d7cfab3648c1897c7bdb3e530bd322c3dee2d7167d86bbaa6382b535500da80e13306a5420625ae062bec0d0af2948785286f6f046c37a8f15d7be44e4551766f4ed16188374f58eabdc6741bf4275985444a9516f299a99b43c713aeef6a74685a26b534dfa48c6b3ed54c5dd8a1aeb943e8d552ba9745ff07d5ee5ed33e52d3d6e954f1b531ec70645ae334725285f6ac39e343e5ce7c91f839c0f242ecb9e2905d187465e07121cc325ddd0b6091be63532b7043ea9a9a41dd61a00f1dc7f386866873e4153e3124988ad93b03cfef0c907ae4b784a59e428df17f911d968399c5bfc35a6a014d6697b7d0c8d8e2a35c828f720fc8b722be11320ad801590bf10e6bb1a765a0a3509707b3b8b2ee7490c77b183f16f68dbc6553a0607623b2fcc5f47d93c17717aa190009512a3ea6af297d8be1a26c41752bf0a865fb8c82540da92774df367dc3f72cbd2d62ef9623911df5ff5ed23e48d23a347f87a0fc8e8c4127e7eccec23e4b20eebc988e43c70bb9657b9419ae4f2dcfb1a8ef047024b8013702cf656e9b6bbf2e3aabe7867b867d1e86edce4d6ce907dd1ae10146226316c722bbeb63c4114ca2e9ac8810b8ab718b3b9661db81166896e56b7ec09d8055c182c7846eda0ce6087c9d423b97baa1a353c7e5d043d7fc50b354e4506273e8aec4aa91e63c6c2059c51999407d7f1a04b00c49be18cb4372ca79f3c2a5884520c9bb9825eac2973fbefbe6f4ea9cbc3dfdeefcf2fc87bf9eff70f9a7b22950769e8fa0bf8c6e4a1fa615623c8f04b6a5e063ed070b5dcfd5429f0e354d808ba66bd4d32c4e5d4d0c4dee00f2cd706f3ff6f6e393b01f984a40c74900877a010b28a804875a9cbbd4f342f08138138ecb18688ba0cdb4587ab20f2b5e3ac7f8e251836ec1421b7caf3d45d040ba42a262e9e4db08cbfc3271408efcec043f170929e884155d6321493e134114466005fb602bb3799260b95a9a9055f6eb80dca5739208ac5e4b89cabee1a58c24cb10857cf916cc4f866535bc28e29ba51108121cacc6e993ab499493208b10573109b1ea10882166aa6645b26b91134642b120c0a87329f2fe4b99ae86047e74b6cbb00cc3b54d9d06960077c1b20cca18b80b1eb343871b011f6ae63edbb5cf763d7fb62b9ffbdf96092f1f4c91a7bb82b2214633dad0a0be2904158e67b97ec86dc75e63ca7dc2eb37b14c75856e6bdacbe7b774b79ddfc26a8b27ca6f911f3b4d48fe6271cae3b35cdbb5bdc3b9ef724e59a00dc1e3b342eadbcca79eaf0bc7760cdfb4bdbdb6df6bfb17d0f680fe589cb1187c2e69facc614326a8273c0c445c07a2671da211cd3434c7737447f31b6cb9d7ed6b3cb9554b3f8932ec2c27e85a744789418907cf7efa72821a3015afb5ea97b75638e8c6f3553854550678f5a9f27b2eb3424d377daab1d00359d10cea711e82ff6e9acc7704b8477a23bf67691bd27beba5516bd553b54a7862b58b32c11016d15169e0a711e7b1385cabccaa749ba575e6f7bad54a073d9765e55bc9e95a1f44ce02099be9d912a3b22c0795eda712996f0cac8f7299a5c9f8e4085fb0eaf2da88abb528db3b7993021f60485c383e991847300acb8e0638c84951ae5a0c8ae3fb0a4bed429a7c3ec3f1da152e936020123acf070c9927068636b4a1ee0d1dcda597105f53939ee19b6882e2d494a7201e0945d78b96be1795295d45ea4f519cf30a037bb307517d36c6f78f7ff163965c2b3bb5949dce97710e576f5399ae666880bad751c2b1e45566f362627c892d5378ac12187584b2939d4462c7f29c7ae5cdb62e1fe7077480f421cea8cfed70c8854bc1de336af9be4b5dd316947b7e0027be0b3a70ef8cee9dd14fd019d599abb360a853d3b5436a0930c26ce87b9485ae0b4d44c05ae5027b8775efb0fe411d56cf775d5d372c2a745da316b375ea07ba494333303dcdb25dcd749fcc61ddfbabff2cfe6a3df316ccb30c1f76d61ee254cf6f16919ce0832302de189c09326137820019604dea2950e3b1d1a8edbaea7d502cd37e92b71cd5f2b6d1277f17f3bcfbfe1fd36dd36dd776869c51df1e0ec16d3375ca6ccda1c2f36dc7e302bc79b677dbf66edbf3bb6d551d03b30c97b95608de18b7d01b0b29b39845f5a13ed402d37134b156b1bfaf63d8d7313c471d4365bef0b5612541609c7241e4a25e5fd07896944fd279cc892f08be3e0b468bc956dea5bfb25aa7c0b629164a348698ce73890364c5ce52bc5fcbcb945f65ff4b19c1004581c444c4b3afdae6f034c9173820d8cd3013bfce81efe23b30a7d7d001ce7295d1603ec449ab1d83ea90042c414042441af93d27851e9df8c1e215cce7f4714f22c292bb924e88e7839d5151203d97f920118b478390cffd69240923e528084eb1b10a038bce415a90bbca898940e2090070812c810536c8ee65d2afc54157e060d5b8f74ab02e07e8f750efe25a0e44f03ac4ebde104ba67508dab9e150537385673ba6a3eb6b859a7befe5e5bc175d7ba4f7f23bf55dbacb884327f038a694eca108a8a5bb3e652e0fa8afe981af05bea7db7e9b3bf765c4fb32e2dfa48c78030b7b8c0d1d1d74abaf736ad92ca09ee30bea04221c062e63ae61ed59f88558f8b58d7f1fcfc2e538ff742cacf6062cafb423c4e2de9e133f8013b707811d1cd7119075c4638fda2b62f7c53f9414574cd2ac78ac4252157caea2d17a145ab9e76a7fc97a544a7413c3cb5afc4b54f619967896ceee8a3593fffb5f6268bad7286fbf48827ee197eb9a4eaed24502cbe7e4526642c8038c8dc96b086f82280fd20372764a3c4bd79caaa0fec536bb6886fb2b0c74c731bd9375388ac845a992ffa9344a1b7a68369d2791bcfb24d6705641b30be80fc4c1bfc9022e154c9d9b816c7cb250ec3f6816c2d97a8ef294c1527c27965b3b6d7bfad30d438764d79e3475bfabd9d43e64fd8df9e2d286fd6342d06c7eb91df16025bd831e29f6713feebd2e1bb47785c91fb52d4c9e06a07c6814a4090d7d5a300ad5357776db789c66daabe80a8f8b17399710b49fb4a9fda80f9bfbea91aa186c85eff252d77e32b8253fa6ad2240abcce6686a1160a03feeac0e0a94c5b968ed3af3ac34918b48c2402d722ca971a56e3f1d31caf91e47910a8a3f0241504870a774d07089fab502fc4187e46eb042358d92802e49f4a6687c913c1d8daae91f47a4251c9f08953eeed1e38b65f0969ef44b049776e86922d42caa1b9e070d3d9fba8611523e3402dd747537d4d7cacaf601e83e007dc60074a34ce208cb8d24573f0e53a4bcebfbfb6309e95f5051d57e24a3cc9e62594b0e3c802fc2aac2938a681df5465b8a9f26112f45afb633f4f3f0796d17d10fc9c8ad3193de5ac4dadc8ab353044fde8db47a28a6b59e0f96716661666ae31716e755c7d0448d8d7547b5113638d9d5f6c6e5d943bf8ad3dbacc51f62aa27e1a07286628262f48ed9d57ce71084367780851b44ed428e8d97bdca1fa0fa7f5478759b, 0x789c95535d6fda40107c47e23f6c9fda4aa9a15554125e2a82e88794401448ab3c1ee735be70beb5ee038bfcfaee9d511c482bb542087cb73b9e999dfd852029e8dcbcf520f21c7c89d0e0da298fe06a94aa5092aaacda8027d853b0202437180f6b9422386c0f8da8d0a1dda175f06ebe7c0fc22218f2b0470f3529e3958910fdde5453c80bcdf7194c4b6136f1e21586175b74f0181cb382021ba894091e5d063f8a580d3945c65b430d94fc6572328261fc7702d6ef09dfbec1e246396f853d638d0c01a5d8f1afb228bd22e3a0209b1ca8c845da75609e5d9703e1c7507a5fbbf160e0425d93f599ec04b15383520ed07c086ee00ea0834fc3e1e5f9c5e7f351bfd77e560b987e9fccbfcde061717f07f3c9cd6c39bbfb39bb5b8ee3f57235bb854906d7c4de3cdbfecc223b545c65705fe7c21f262083b5c86379e962a37c99f49061375972d22b9c531b83f9013a8387d8dfcde508829f13a95a5499712762fbbd270cee4fe7fdde7cb19a8d6131bf7e880c3827bea1bfbd440ac37102cd0299d6ab696530d11a88618e4352c578709fc58a76dc48472a1ac54d31820dd96d16292d8cc464474e95606b4be1c0b147b28ccd0c191de910cea0d6285cc4df298e60cb89e5556872ee60b2751b19c16f924c862afccf9008eb95d41843f2f1e272341a0e9377c8f025eafa0bdcb61424192fa487f04ff02964bc0e5baede44a591e4236f615a4236e0854d514f30caefdfc49ea3ab158a34ca038782b4e655630a6492194b924a68b8c15c89b47e0675b7439aa3c9f3798117525c9993c9c16093a4f47b5f85c435d1b653d5344d561c4e939e4e1e73e48179b45db56f0f5e155e69da74556b7e3ab5e9373792bea3, 252, 'INBOX', '<10559331.20190605064103.5cf763ff16d7d7.26546477@notify.cloudflare.com>', 'html', 1, 0, 0, 0, 0, 0, 'EDIT'), (90, 1, NULL, '2019-06-07 09:26:13', NULL, 'Nantenaina Fahendrena <fahernatt@gmail.com>', 'dev@specificom.mg', 'dev@specificom.mg', 'Re: Test for prod email', NULL, NULL, 0x789c6d50cb4ec33010bc23f51f9620552095362d48904723041227c4893b72e24dbac5b183ed44eddfe4dadf687f0ca74d0b080ebbde97c63313736a80939e7bc26a2f79436341ef36b531741ea73a89dd3e3916900966ccdc2b4a46e2fdb35616bdc3e284f0fb84d90ef405b76d83720c77b0ac49c2cc9f06b06bb7ad1f84d36004af4c5a948c248367b640c9b5eb60286c14335868cce75e876655c8b1793015669453a6ca715978c99f513c61c9b0b01130d86d324d76db867b01938314a1b28f3df5ffd480b16b81dd7fba2019fad50a4e31bec755942acd515f0bcc6d387553a30471d0457a39f36f477d5c4515e39c64d1dfe1cad9543b0675ef67953c2ab954b51e75cc06674f8e3f74d6576e06d655a8c11088e1c54d10a16cd41a8123744c215732b3a4a44448c9d9da433862c40496286d8f7ac8db369e545db7d7dfbddf161c4df99107675ff69db5c9, 0x789c358ec10a82401086ef82eff077ea22a25d420989824ed1a917d874ac1177567657a1b7e9ea73f862ad41f01fbef999f9e7bf93f3b0cb3c3ac79b388aa32b612249b14737b26097e505960fb2a2cc8b0437259e44b1285cd48ba4b161c2a1a1e9e806aab9e5dae8543f2ba8385ae6dab247b9c6563819e9cc689395cf6115ebe72138f081c8c231fa2dc964de8486a015f7688dd49e8d08e1c1a1d6efd8d886554f9ac4af697f7d015f5640ac, 253, 'INBOX', '<CANt0zheJFOgpqLYiStmHqsh_CYHWvTZq9oLMHdEtU98MLCnQtw@mail.gmail.com>', 'html', 1, 0, 0, 0, 0, 0, 'EDIT'), (91, 1, NULL, '2019-09-06 17:29:27', NULL, 'Nantenaina Fahendrena <fahernatt@gmail.com>', 'dev@specificom.mg', 'dev@specificom.mg', 'Re: Test d\'envoye', NULL, NULL, 0x789c6d50bb4ec43010ec91f887558a1348475e423c12c7a2a242543454c8176f72168e1d6c270a7f93f67e23f931925c3884a0585b3b3b5ecf0ce1a2052e4ce649673cfa82d681190f8db58204d38c929da16426e592599b7965c5847cfb68b443ef3838bdfe4d616e5ef88443dfa2f2e1062cd6ce87388cee61ec873eba4de2780bcf4c39544c28068f6c8f8a9ba9838d742961b0375864debccee98463fb606bcc4521725df955e9d13f100918dd942e0506e32137c20d7db23858bd489dbf2fdaffb303d67d4a9cff33a550495877702aff0ebb74a70d477325b1704934a1564bc1c194bb8b38bcdeae7599d68c73a1ca9587dd945333296896b828a9974ccfcf8ee7abf64950cfed2271be7f54d26ff00bdc4d9023, 0x789c0b492d2e51283abcb2b4b83893978b97cb2755a12c354f4fc14ca138b5a0444fc1c8c0d052e1f0020543732b23231d05bfc4bc92d4bcc4ccbc4405b7c48cd4bc9422204fc12625b5cca1b8203539332d33393f572f37dd4e219197ebf0cae4a2cc12052b90b97610a41099af0766010029782408, 255, 'INBOX', '<CANt0zhfA_rfJTz6=xbYg2LU7PtjXGWpoNkjk8n3GaV0wh5WYrg@mail.gmail.com>', 'html', 1, 0, 0, 0, 0, 0, 'EDIT'), (92, 1, NULL, '2019-09-06 17:32:39', NULL, 'Nantenaina Fahendrena <fahernatt@gmail.com>', 'dev@specificom.mg', 'dev@specificom.mg', 'Re: Test d\'envoye', NULL, NULL, 0x789ccd90b14ec33010867724dee1e4a10209d236424013c7eac4849858982a27bea4a6ae136c272a6f9391be46fb623869550454482c88e16cddddafffee3e2a6403429a842867087b44eb8037984125b76f19c27329b5433af4324653c368a7cf14b73621c5924b357ba94b8764d738187d9670d779dfe3a66d5007700d162b1740381a4f60db6edaf14d144e2ee081fb519a4bcde18ecf510be333182817530e738379423a3b5746b96f1bed6da7fd80202b97841d29d2216783c2c5c061bbce8c749b36eaafd8dfa3ca6cd1ef7fec24b0ee556137d3145247a36a0587086e7115a7a511682e15e62e1afbaa2d9514608af42c1c5d5dece33caeb81052177b1daebeb2da4137db756dadfc03d2e16f480b6ca6b6c24ce6d2f30c960501e779a04bc82c555c2f08fb26f9afd46bbf41dde363b4ea199f9eecdea732a0c3aa4bfb15bbff634bf663f11dc1931fb7, 0x789c7dcd310ac2301406e03d903bfc0790603b282d523a39895317c790bed6884d4b127b1e477b8e5ccc4444271d1efcffe3f1be869c879c4961d2e1a10897511b4f9c717620cc640436703479817c9d15087764db322f5638ca7867a436127b7926d3dad8b0eb62b6467a5ff783d457a1c6a182e42c2cca6a8f327daed024d686e5e69c8e3dadfe71f94faea5b9761329dde92889a17f6115be5c7afe199c46f1ce9c3d0152ca4d32, 256, 'INBOX', '<CANt0zhezz_VS8f4DCAk6ap7n4895z_EQpoQVrmSpo8kYaUO81A@mail.gmail.com>', 'html', 1, 0, 0, 0, 0, 0, 'EDIT'), (93, 1, NULL, '2019-09-12 08:36:07', NULL, '=?UTF-8?Q?Thierry_Cl=C3=A9o_ANDRIANANTENAINA?= <andrianthic@gmail.com>', 'Nantenaina Fahendrena <fahernatt@gmail.com>', 'dev@specificom.mg', 'Fwd: Maquette', 'dev@specificom.mg', NULL, 0x789ccd57db6e1b37107d0f907f186c502346255997ca96d7b260c5765a07b052b87e695f8cd12e25d1e2920a49a95d3ff537fae6c7ba9f61fd49bfa433bbbada71e0046a90057629f1329ccbe19c6133961388a53d0c94b741abd9b5f9cbdd9142e70e837e82525d7d181b2f827c60317f7d0a7a16515c3cf0d6d8dfd1c622864438877d018b31dee444dcdf86d074de1add5f17e5848e85d5988820df0dc7de04ad0b934cef0cb4756c256a93087d8d1a0768d3e64e2ea645f246a857176d297fd0441858d13b0c58ba37a1a5b5e6a88f4ed29b96229304adc77dcd1d6c6df569f50ecbcc1c73825e84a0c6ba040da0cd2725a8962b0d98dededf96f7c36a9927fd32ee5e8bc887708e1fc6c27bc19d972684cb8114d6a670ac32333a271767ed4ebb7379da699f75daf0314d31b7d50f647494f92657f6a3dd0b7d39823b14a9f578ae8599fc2d907da4541ed57c8ef3a9128741cf685f74f24684956aa931fae320ebe86122551a22edac0a03a126c2cb080b0eb52b3a61652f68bd31fada8c2de4912accb4d884e415a33621eecca750a247e89ed4a05388e20826069519a04e4b1bde491b1859732d3c50ac860892c3472f05db00eaad57b5fd03a930054f428da62efa9dc891f016693a6904671e951424c90b2db41cf23a34a5fbdb4daaca2a905848ba46d157f287b7993b6868106eb0046fc9049fce3537cae85907bb8fad252531b77593ae3c27c8c729c462221de0248523d6ad67bc93a4e00d12c41194800c82c9f49f84fc85ac3b2623e91d4d458b3d4a189e5a9d16c0d26f989063e3e91dcfcb25b31454a287c3cc709ca08e0454ebdf6dd6db17d9e6d2670ece3dd715e008048ed4cb7c3d30e4cb0c18f226cdf4a270c4a419c149927542c3488d1d8f6ed2cf1b3e6be7928c4a66b9d0c150283e11c53e0d9208415ebebff5473032ce17a5a79029647c9317729bf53c187c32371a82530d7d6b5c01d8c54e7a01219c8ead298e88addc02597340dbe95d6f7a6705c161a9c737ebf6ab2bb8e2e7dbd530e7ea55296b8b96530f1e6eb1649a369f082ccc39faa15acf17f809db9e2fe4fd9048c466f0a574787c724c4d09de094a3294587a28ade00435cb3394a904210bd4bf7ffe25f4846a039e154fff76408705a22cbb0ae779a18770fb49ec7f652b372224af119fc6e7d7b669158b11519a0d6dbffbbad628d4cb85faeef6ea921a2ff8d985d0e1cc36a060124f2f789c02cfb9db322359c1794cea7e9a67901b2293580c2425fa8111c4b0de108df9e9ad661a60b6f146d89924fa774eb990cb514a4e302f02504b4d1c7cc25c47696b8b4bf383339fb744750cbe443aaa8631a6994c2a9a2923a7155e32d7d8a127c780c79e8c73134c36aecc90199dea9391c0f14ccb129c65950009c701b11620910efc8633cb32e9056a8ce736a2cab40089e1323e233563659fb4515932453abb1a6767763d9312261ede4092abda7e65b75cdfabd6766b8d4a7d776f6fbf31bb28c8be463fb68fae26ad6363893b94a04b822f6405eefcf69097ddefcf4f3befa8fafea97df1eb123cadcbe99d0ae1fbea6e056a35e06fb90ad5fdb55c9f7d5fbe586f3f5e532f90b96ad613f7a7a52d1053855274095acf238f273c2ae817e05feffbe2bf0c76ca3a119d85fcecc03283c33a233cc50241ebd3d79de64e77e61f5eb972803f2933d72c3b9f87c1ab5adca847bbc1b334fd91d04ca08413c17e1476b16f7735793cf4e96a56e86234a47261ace3e2324154ebf5c2ecddfe1cc75d0ac2d96b06da76ed07a854a05cae43b9b2d02aa7b315a7fc6f9a9c32b8e8223edbf95917503ac2b62ffc6170d555a8879fb3dd1357d77cf30c0ff8c0fc2ffabe7cf11fd51be519, 0x789c7d54cb8edb4610bc13e03f340c041b3b2b41d2c6812d18c12aab7522039283cd5e92cba2576c8ab322a795e14801f794dfc8cdc728bfa13fc997a49aa48c1c8250e273666aaaab6a6630381ff45ec36f1c32c9a892bae68dd0e7b634990b4de94eabd35169e6b3e0d86b25fe893d171c1a7a17f0aad71bae1dce66b8d6ea5b8ce228532af77e486f087d0f439a8cc66fe8f489466fa793519afcb47f7c92759cd2927fdd4b8c9226f73aa5fbc24900ec4dd94eb89adf2d66abd9eafe76355bac66f48e3b0ab170ebeb4dc5aeec27ec7edfa97fd27de8f95edaa7456c6888437cee3cf986d6d99a0ecaa516ec9b61d7c12bed823e4924406e999ccd8293a950627fe14a6e28aac71faf78aedc4e62607405082d22970e05788de2c5bbad0d6235701b8867aa1eb5c4d5d9c5dace4cb6caf4cc437a8f49a375bdd0527dff621c8d1b50394d5a6ac05ca2feaca14c0eae263e34746d78b9c6da01f49929734ca550ab4475faab1202209ab8dab9586b9ae41c38877d1177df5c52c0331d5043763a5ac70eda60b8949cb72d5b3eb05f0b4d5e7f010e77ed0817db523a9e8f423544aa81d956552898b7c2b9e7a60543e119e020b50327f1b42bf7759aa079684e2d1dc6577d1a6ada4a69c60c36c1e5b97a010b8ad7b4d33a0e5c4449259bd0b585d0d07dcf354d3a5f6f3d6d82d69764146a172dc7b7fba0831d125e7fd6ab9797c2e9989f8e415063cbe6e1811eecf877ac665601b7b1fab8458842cb004eddcc6f701bd207818c902e6717c43ce89584198269a8fcfbf73fc41f9070eb959dfeac09e5a6c9fa42ea68a3224d5f7651ee96664fe0c77a4a2b93a7001e72d76612f39acec13c0f624a38bf69ba6a9ee15626858329850a7217f5d0a4493c7df2e699f91955e0fe059e9690d2d62e54a2739ad93b8f58ce2d4ad0efc522be407e9cc95bb95afd86337430d3bd59dad96e3dcf0c6b8e58a8143977594759dbf652b76a69c6e2da09ef7b6a435ab48b42118002b1224628e817eecb69e12f71d368f73556ff25559a49f0500fcc35b80df894ad9d0cb76c0ae89726371a908e52b067453877dec9ba8de5e3f276f501fbcb0fb3bb9fb1ff9c8ee594be9a7c33a6ab2bb2eb684293b7673f00f6eaffb7a757e8f13dea023d9a0b36442f01dfee05b05f1aeecbabaf693ca6d1e8358dc688a86d6053facf3d2d4dfe01b3a8dd71, 257, 'INBOX', '<CAA7sfMqqg9ZstjgtTBxYvza46OzFOuyVtBKDVP0n66ZBvJA9fQ@mail.gmail.com>', 'html', 1, 0, 0, 0, 0, 0, 'EDIT'), (94, 1, NULL, '2019-10-11 05:38:01', NULL, '=?UTF-8?Q?Thierry=20Cl=C3=A9o=20ANDRIANANTENAINA?= <thierry@specificom.mg>', 'tsoharasarobidy@yahoo.fr', 'dev@specificom.mg', 'Site miaro-consulting.mg', 'dev@specificom.mg', NULL, 0x789c95565173da46107eef4cffc3569930c91474606cd780a025d8d33a63534f4ca7ed53e690167199d39d7277029c5fdf3d09098c9d873e787c82ddef76bfefdb15d14fd77fce16ff3edcc0da65121efefa70773b83a0c3d8dffd1963d78b6bf8e78fc5fd1df4c22e2c0c575638a115978cddcc0308d6cee543c6b6db6db8ed87daa46cf189ed3c56cf27ef8f1d779419262e09265179df2e93ca8e5f41e90d06832ad987224f2651868e838fece0d7426cc6c14c2b87ca75164f390610574fe3c0e1ce319f398278cd8d45372edcaa7315009b444e38899347e11032c18dee509a2da4132a0db33462d5f711abae5ceae46912e5930f5a7dd185817b038f94b414c9533b5a1a02fcf187faff63e1415b3c357c8323d868671012ccb84a909e442ca050605ac8e3c2e1c816597da42890ad37fdc1a8fe64a365e1c9a26f2c10771b5eece8dc524b9b8f243fa070292caf220bb0be802d2e3ddebd6f0e6687e6ea326708c41e70a8215c7da8d0575cb8611ddc01ba2c13160115e492c75856b4150657866774a4ab9ca66c0b92fe729ea23d4a46fa84e25a5891429da458577a14f6ac775710263a9f9ce006a5ce73cc48d8f2e69556b16f976c249ac22dd8bc3ec76225be1614f96e2975da6e0448ca3b845a69939584d9368461f8feb40aa11a58aa79afc1e13b34ab9284f299c7718142c2bb0d16424afc06b1f4971bb0e4150a93c2d3e68d43349205cc1022b23091d7589eead3a1cdd1d71deb8c3cc85ef1250b26ff2f3e627cf2fed4a17be90dda63a392e0068f14bffb3e0f7b81812b853bcff1c3c1cea45019d606dce5681c998628b6683622f6a74a0e3fa43c7647b4df1d0ce6b529a57f6685867ec2356888d2f8c83bbf53337571cb22a59ad0182c8c7d7e45feb250580972d111d49dbf2b975aecedb61f282a4c8a54e1299b917546ab7472a32035da82d2051951677e2a1a722fba6f3d50bcc64ca83062fb9c53ac8f7e4350ba509b9325228c1f84d248b1e8509796c24a4bed0527b77d6f77ec1bf09a930e7b9e1bec72a1d18224c3c2f9d53aa4fe2d8166be796f09db0058ede9a0055e6e039fe02a5e1e3e86a79ddca3a145479a957494def23b60838a3ad9104d8606d294134a00069daf82c2695a322ee40bbc1b6a926a68efc7c8e3663e3ed114ae9006aa98d44abcbad06bc65931a9161c19e6250ee815cd934079d89d4738702babdc9246efa5589878e480fb73c5a7a5ed4e54610577e8a84aa493ad24a63e36b429925aae2f8d20f47ef3af8ce70279ca62ad4d423baf4e41fb82a619450872b317af1db1dc1bbad369a244960297f46e0cc09ab8593e52c75caeb5758c27e44fe6eb6589de2aa979f2993b1ad57509c906e7ac7f3ef875958f3f5f86b94adf9e772f12deed5df407f1c5d9d565cb8cd73ac3d6e7f225db4c48ce1558f724711cd0e6761d2bbee1b0d7cd774123da622d68629f6026ebf6344ce7d79f6ea7f3e97c71339fdecea72fe7e61839d6529be19bd5aadbedf783c9d4ef1e2762b8e78ab695a1640a6e527f3ebbecf5cfe0f20c7eb9eac3d52574a0fce81c7a3de8762fa0db6bbce7f91882ab2afcedd9d6ad5159f513a1fcbd4129ff01a3b31987, 0x789c7554db8e1339107d8f947f2869450462d27383d9d9c90bd959b41a341321e0071ca7d23172db8d2fcdc0d7ef29f7250c2c0f91dc4e5d4e9d73ca7f7bf7d9e7400f813eaae0b766f7ed643e9bcf3e66939816aa0eaae315753e05a61d37caed185f461bca8ec28295ce89573137e31151f3995dfc71f9d76abceabccdc97887bf22255454f911e785dbc67665d5b18cb226aa3e325314045f793b9fa1e583013abaf52e669b8cababf9ec96e94b36a468cc4ee3a12fbc5726ddcc674b4287c6442676d45aa5b9c0f86a02ef836a7044f9e49117c9e2d7aa9a6349639c11b1e09e0400af790456029e0c9932ea7092b41d776c7ddb72c32e956e7befb4cce530e104135d623b7e68b3375f32429f6fadaf4f26ae77a589717b1f9a424d3ca1aaaa5e1c0118375504d081e7e37f1cf665e6f2adb4ce6c2c3def381b6bf9fb7ca6adf40d14e102c45923348925401b840ea0f090527b737a0a48be8a2d0b54ed9baaa94f1b9165a98fb2e0ee85f867102770fcd146902470d1e4fef7d007094839c78f42c8fba3cdc067098347f9b1e590a02b08891c3aa3e5d493074049e95448ba3faa2f1c168d9e683691858a8103e6d745de7f817d44b4cd358070089c431ccbb6bfe2a2bd81c425fd5e2ab7d69bc10583a101c39adab190f4d6511d7c24e773a4e81b31e3c4d5ebb36792a40fdc185749f83bd93c441ad7fdb49c2688ed8a74da2c013822ac883848c3e1f73b390013b9c0e3c0d654bcbc0efaa0e0117a757da830177cab052c66869c71aa10bdcca95c2c1b2719a91ff8fdbb82ff81039e0dd05de62d5e900debd8017f071e023c1fca1220297092d608872b1b656cd55316e5653a192c2ab51a89d9798438bea1ff7164ff1c40cd633cde943e81fc1e66366c697a647ec8a53bdb271762446f6d825e255272ee19021b197522f7f58e78fb4c9c622f1b1077fc1d8b3828f079e2b8015101989e922e8c68efc30ecfc698c3b1b0708b5b039f89065885e57229b79f0e060efd46b7760cf7b4defcf3e16ebd596f3ebdddacef36ebf96c2d4b938ca607e5b06730c6cb8babf3cb0bbabaa03faf2fe9fa8a9654ae5ed1f9399d9dbda6b373102f23dd50ea7bbc79f20c48f3ff00221f1b98, 258, 'INBOX', '<5da01539c8023@specificom.mg>', 'html', 1, 0, 0, 0, 0, 0, 'EDIT'); INSERT INTO `mail` (`id`, `mail_classement_id`, `old_mail_classement_id`, `created_at`, `date_sent`, `sender_email`, `dest_email`, `email_owner`, `object`, `cc`, `cci`, `text_html`, `text_plain`, `remote_id`, `remote_mail_box_name`, `uniq_id`, `type`, `is_read`, `is_answerd`, `is_deleted`, `is_draft`, `is_favorite`, `is_needing_accused`, `mailing_stat`) VALUES (95, 1, NULL, '2019-10-29 13:39:50', NULL, 'NOREPLY <noreply@specificom.mg>', 'dev@specificom.mg', 'dev@specificom.mg', 'Nouvelle commentaire sur l\'article Le divorce', NULL, NULL, 0x789ca555db6ed430107d2e52ff6130427dca7a170aa5691204db4a209552c122e0d14926bb164e9cdaceee968a0fe23bf8316c27bb24b0e5229ee2cbcc999933679ce8eee9ebe9ece3e5192c4c29e0f2ddf3f397532001a5ef1f4e293d9d9dc28717b357e730198d61a658a5b9e1b26282d2b30b0264614c1d52ba5aad46ab8723a9e674f686ae1dd6c43977cbc0f43c47b9c94912f978eb52543ade8132393e3e6e9d9d29b23c894a340c9c6580570d5fc6642a2b83950966d73512c8da5d4c0cae0d759e27902d98d268e2c614c1130234890c3702930bd92c5108b44e65699d185708ba51200e98323cb337e708395f4a9561445ba7489b6b7b616cb42e48a63549600f4625e355e012b05f54700329cb3ecd956caadc1e0ba942b8878827f0c559ffc1b0288a13a8599ef36a1ec2645cafb7db2095c6c83284c347eed4a339723c944b296082cfab10325b14aace226dac53b552acae6f8b391e1f152c1dd8c3cd2ec0c2e61e68fe196d66872e077f50b0928beb10b4ed72a051f1a2bb58219f2f4c08a91479afa8313c785cafbbcf493f28839b1e0f9e0a9f468e9954cc0928844a56e89c22ea3b9244b415482af36bdb6196bac60aa6adb0868d21360f65c98ac9d8eac50aa04b68bbd735cb367b8f1d9315cfcd229c8cc7f749b27f676fff0e44c607f22bd57ef2f6e3237bc262d212f64f11bb9c3b219364106baf0bb66717392c3caf31397ce4ccda63daa6e1166a985d1fb9236250dde1032b27d2ab6167ed3b0bdf40bb9b1ec26de6c9dbc669f0595e72d7eb6efcbe7d85a534760437c3c72b3b728db0e7519af427314d4630456386935b1da036565d1ab0b23241a89b54f0ab06018d8d92a296365c8e9b2875ad64eac534dab0b683b48e841d53d0a76a537f7fc6c81f443068fa5014b7b0ebd1c94f6d87c8be870a8bf6fdd4f6011532636221b5a125674a3ae5eb46188b3d2ae73415724e3b8aa9c0a063f5a98a17b244929c3b2eb72f60445947cc9020faa3c1bf5e6d3bfe1bab5faa2ba4742cb542fe2fd0e1701cfd6e38fe0e766bf5c3c88ad0bf33fe1763f7df01363f4863, 0x789c4d8ebb0dc33010437b03de819d3bef10a4759709f4617180ac53a49377ca1c592c32600301bb07f091af5e58f188bb643804dd7766fb7e70a855c255939008c926d6d3e01b11e5d01ab8e24933ced35572320a79613314d7c01c7480d27d92772768c3efd9740c45defe52aa7a67a2799da7ff603b7569b91e9ce8071afa39a7, 259, 'INBOX', '<5db84126befc4@specificom.mg>', 'html', 1, 0, 0, 0, 0, 0, 'EDIT'), (96, 1, NULL, '2019-10-29 13:40:00', NULL, 'NOREPLY <noreply@specificom.mg>', 'dev@specificom.mg', 'dev@specificom.mg', 'Nouvelle commentaire sur l\'article Le divorce', NULL, NULL, 0x789ca555db6ed430107d2e52ff6130427dca7a170aa5691204db4a209552c122e0d14926bb164e9cdaceee968a0fe23bf8316c27bb24b0e5229ee2cbcc999933679ce8eee9ebe9ece3e5192c4c29e0f2ddf3f397532001a5ef1f4e293d9d9dc28717b357e730198d61a658a5b9e1b26282d2b30b0264614c1d52ba5aad46ab8723a9e674f686ae1dd6c43977cbc0f43c47b9c94912f978eb52543ade8132393e3e6e9d9d29b23c894a340c9c6580570d5fc6642a2b83950966d73512c8da5d4c0cae0d759e27902d98d268e2c614c1130234890c3702930bd92c5108b44e65699d185708ba51200e98323cb337e708395f4a9561445ba7489b6b7b616cb42e48a63549600f4625e355e012b05f54700329cb3ecd956caadc1e0ba942b8878827f0c559ffc1b0288a13a8599ef36a1ec2645cafb7db2095c6c83284c347eed4a339723c944b296082cfab10325b14aace226dac53b552acae6f8b391e1f152c1dd8c3cd2ec0c2e61e68fe196d66872e077f50b0928beb10b4ed72a051f1a2bb58219f2f4c08a91479afa8313c785cafbbcf493f28839b1e0f9e0a9f468e9954cc0928844a56e89c22ea3b9244b415482af36bdb6196bac60aa6adb0868d21360f65c98ac9d8eac50aa04b68bbd735cb367b8f1d9315cfcd229c8cc7f749b27f676fff0e44c607f22bd57ef2f6e3237bc262d212f64f11bb9c3b219364106baf0bb66717392c3caf31397ce4ccda63daa6e1166a985d1fb9236250dde1032b27d2ab6167ed3b0bdf40bb9b1ec26de6c9dbc669f0595e72d7eb6efcbe7d85a534760437c3c72b3b728db0e7519af427314d4630456386935b1da036565d1ab0b23241a89b54f0ab06018d8d92a296365c8e9b2875ad64eac534dab0b683b48e841d53d0a76a537f7fc6c81f443068fa5014b7b0ebd1c94f6d87c8be870a8bf6fdd4f6011532636221b5a125674a3ae5eb46188b3d2ae73415724e3b8aa9c0a063f5a98a17b244929c3b2eb72f60445947cc9020faa3c1bf5e6d3bfe1bab5faa2ba4742cb542fe2fd0e1701cfd6e38fe0e766bf5c3c88ad0bf33fe1763f7df01363f4863, 0x789c4d8ebb0dc33010437b03de819d3bef10a4759709f4617180ac53a49377ca1c592c32600301bb07f091af5e58f188bb643804dd7766fb7e70a855c255939008c926d6d3e01b11e5d01ab8e24933ced35572320a79613314d7c01c7480d27d92772768c3efd9740c45defe52aa7a67a2799da7ff603b7569b91e9ce8071afa39a7, 260, 'INBOX', '<5db841307b9d4@specificom.mg>', 'html', 1, 0, 0, 0, 0, 0, 'EDIT'), (97, 1, NULL, '2019-10-31 07:06:10', NULL, 'NOREPLY <noreply@specificom.mg>', 'dev@specificom.mg', 'dev@specificom.mg', 'Nouvelle commentaire sur l\'article Le divorce - Une affaire déliquat mais nous pouvons toujour y recourir au cas où l\'on a fa', NULL, NULL, 0x789cbd55c98edc36103d8f01ff438586e193446966bc8c46ad837b0cd8c07881d1ce72a424aa9b8944ca24d58b07f9207f42cef3632e52eab614f7d80902e4242e55afaa5ebda2d29faedece17bfbd7b012bdbd4f0eec3f3eb57732001a5bf9ccd29bd5a5cc1af2f17afaf210e235868268db042495653fae20d01b2b2b64d28dd6c36e1e62c547a4917efe9d661c5ce79580676e41996b62459eae36d9b5a9ad91194f8e2e2a27776a69c9559da70cbc05906fc6327d6333257d2726983c5aee5048a7e3723966f2d759e9750ac9836dcce3a5b05cf08d02cb5c2d63c7ba3ba35af6b8e4e4d834e4c680ea6d3503f62da8a026fae399462ad74c121800f9203ab2a6f56de7eaec5c78e59689830205567a0453c250d58d5fdae1066079a17b8101a58070533a06eff4270258101c258c0080debd60ea15829b14d699f596aec0eef2c96345452184332388110c3c9c055895faee1067256fcb1d4aa93251ed74a27f080737e097f3aeb1f18565575092d2b4b219709c451bb3d6c835c59ab9a04ce1fbb538fe63ae0a15c4a01abc552265020735c0f1679874e72a359dbde15338a9e562c9fd8c3cd31c00a730f8cf8c431b37397833fa85823ea5d0206a51418ae45355c6cb858ae6c02b9aacb5151119c3e69b7c3e7721c94c1cd88074f854fa3c4a669e6549a605f25774e29f51dc952daab3057e50e65c472a79e9a1954efb43104f3d048d68c44284a54d990d0616f5a56ecf71e7b4636a2b4ab248ea28724bb7fefe4fe3d48ad0fe457baff94fdc747f684cd484fd8bf8a38e43c4c0bc926b14e866027b82861e5799d91f3c7ceac3fa67d1a6ea1a7d98d91072226d59d9fa29cc8a886a3b51f2d7c0fed6e46087799673f0b09ef77cc357a18f0dbcfb05616a7773fde42e2bc75359ea779f6bfcf7a9e8530e7d64e1f20f9881b8bfa35c0250a9143dbe52e3c076e112be746616125df97d2b65ae55eaee1be2f47da32d07c64cec6cdd8333c9e62f203994d643595dd1dfdf3e8e46fc282149f75cdabc36f20be380de327cfc2f8f42c8c23da08a6959b2fd3d516f1c36649f35a2de9d04b5af360681fc9ae1d9187573ca56c6065ca0efdaa9f6faf0e82fa8ed537a5554a398afa39f94fa0d3d97bfabdd9fb67b007abaf46a840ff8cf9df24eebf00de498e89, 0x789c4d8f316a03410c457b83eff0bbade24ba47515487aedac4c6466a5c98c66b18fe423a4de8b45030e1835e223bdffff97283eeea420245b5756df1fd8cc2b83aa4bca0c5117ef39f4336391cd6a62bce153e3e47221a97c3c2cfb23cb4f27c74ad2a0d61b8af5cdb4c1ad5fad57dc5139c52215d491a8c1f65fe4c98679701c39482bf56d20d2b7c9ed847776e7ff68c30b3a71739478674d1642e9f3f066b00768e666d16909d4b34629d56672313d1d0faf83f3e0e5e95974487f5ba35e1b, 261, 'INBOX', '<5dba87e23a43a@specificom.mg>', 'html', 1, 0, 0, 0, 0, 0, 'EDIT'), (98, 1, NULL, '2019-10-31 07:06:10', NULL, 'NOREPLY <noreply@specificom.mg>', 'dev@specificom.mg', 'dev@specificom.mg', 'Nouvelle commentaire sur l\'article Le divorce - Une affaire déliquat mais nous pouvons toujour y recourir au cas où l\'on a fa', NULL, NULL, 0x789cbd55c98edc36103d8f01ff438586e193446966bc8c46ad837b0cd8c07881d1ce72a424aa9b8944ca24d58b07f9207f42cef3632e52eab614f7d80902e4242e55afaa5ebda2d29faedece17bfbd7b012bdbd4f0eec3f3eb57732001a5bf9ccd29bd5a5cc1af2f17afaf210e235868268db042495653fae20d01b2b2b64d28dd6c36e1e62c547a4917efe9d661c5ce79580676e41996b62459eae36d9b5a9ad91194f8e2e2a27776a69c9559da70cbc05906fc6327d6333257d2726983c5aee5048a7e3723966f2d759e9750ac9836dcce3a5b05cf08d02cb5c2d63c7ba3ba35af6b8e4e4d834e4c680ea6d3503f62da8a026fae399462ad74c121800f9203ab2a6f56de7eaec5c78e59689830205567a0453c250d58d5fdae1066079a17b8101a58070533a06eff4270258101c258c0080debd60ea15829b14d699f596aec0eef2c96345452184332388110c3c9c055895faee1067256fcb1d4aa93251ed74a27f080737e097f3aeb1f18565575092d2b4b219709c451bb3d6c835c59ab9a04ce1fbb538fe63ae0a15c4a01abc552265020735c0f1679874e72a359dbde15338a9e562c9fd8c3cd31c00a730f8cf8c431b37397833fa85823ea5d0206a51418ae45355c6cb858ae6c02b9aacb5151119c3e69b7c3e7721c94c1cd88074f854fa3c4a669e6549a605f25774e29f51dc952daab3057e50e65c472a79e9a1954efb43104f3d048d68c44284a54d990d0616f5a56ecf71e7b4636a2b4ab248ea28724bb7fefe4fe3d48ad0fe457baff94fdc747f684cd484fd8bf8a38e43c4c0bc926b14e866027b82861e5799d91f3c7ceac3fa67d1a6ea1a7d98d91072226d59d9fa29cc8a886a3b51f2d7c0fed6e46087799673f0b09ef77cc357a18f0dbcfb05616a7773fde42e2bc75359ea779f6bfcf7a9e8530e7d64e1f20f9881b8bfa35c0250a9143dbe52e3c076e112be746616125df97d2b65ae55eaee1be2f47da32d07c64cec6cdd8333c9e62f203994d643595dd1dfdf3e8e46fc282149f75cdabc36f20be380de327cfc2f8f42c8c23da08a6959b2fd3d516f1c36649f35a2de9d04b5af360681fc9ae1d9187573ca56c6065ca0efdaa9f6faf0e82fa8ed537a5554a398afa39f94fa0d3d97bfabdd9fb67b007abaf46a840ff8cf9df24eebf00de498e89, 0x789c4d8f316a03410c457b83eff0bbade24ba47515487aedac4c6466a5c98c66b18fe423a4de8b45030e1835e223bdffff97283eeea420245b5756df1fd8cc2b83aa4bca0c5117ef39f4336391cd6a62bce153e3e47221a97c3c2cfb23cb4f27c74ad2a0d61b8af5cdb4c1ad5fad57dc5139c52215d491a8c1f65fe4c98679701c39482bf56d20d2b7c9ed847776e7ff68c30b3a71739478674d1642e9f3f066b00768e666d16909d4b34629d56672313d1d0faf83f3e0e5e95974487f5ba35e1b, 262, 'INBOX', '<5dba87e23a441@specificom.mg>', 'html', 0, 0, 0, 0, 0, 0, 'EDIT'), (99, 1, NULL, '2019-10-31 07:06:10', NULL, 'NOREPLY <noreply@specificom.mg>', 'dev@specificom.mg', 'dev@specificom.mg', 'Nouvelle commentaire sur l\'article Le divorce - Une affaire déliquat mais nous pouvons toujour y recourir au cas où l\'on a fa', NULL, NULL, 0x789cbd55c98edc36103d8f01ff438586e193446966bc8c46ad837b0cd8c07881d1ce72a424aa9b8944ca24d58b07f9207f42cef3632e52eab614f7d80902e4242e55afaa5ebda2d29faedece17bfbd7b012bdbd4f0eec3f3eb57732001a5bf9ccd29bd5a5cc1af2f17afaf210e235868268db042495653fae20d01b2b2b64d28dd6c36e1e62c547a4917efe9d661c5ce79580676e41996b62459eae36d9b5a9ad91194f8e2e2a27776a69c9559da70cbc05906fc6327d6333257d2726983c5aee5048a7e3723966f2d759e9750ac9836dcce3a5b05cf08d02cb5c2d63c7ba3ba35af6b8e4e4d834e4c680ea6d3503f62da8a026fae399462ad74c121800f9203ab2a6f56de7eaec5c78e59689830205567a0453c250d58d5fdae1066079a17b8101a58070533a06eff4270258101c258c0080debd60ea15829b14d699f596aec0eef2c96345452184332388110c3c9c055895faee1067256fcb1d4aa93251ed74a27f080737e097f3aeb1f18565575092d2b4b219709c451bb3d6c835c59ab9a04ce1fbb538fe63ae0a15c4a01abc552265020735c0f1679874e72a359dbde15338a9e562c9fd8c3cd31c00a730f8cf8c431b37397833fa85823ea5d0206a51418ae45355c6cb858ae6c02b9aacb5151119c3e69b7c3e7721c94c1cd88074f854fa3c4a669e6549a605f25774e29f51dc952daab3057e50e65c472a79e9a1954efb43104f3d048d68c44284a54d990d0616f5a56ecf71e7b4636a2b4ab248ea28724bb7fefe4fe3d48ad0fe457baff94fdc747f684cd484fd8bf8a38e43c4c0bc926b14e866027b82861e5799d91f3c7ceac3fa67d1a6ea1a7d98d91072226d59d9fa29cc8a886a3b51f2d7c0fed6e46087799673f0b09ef77cc357a18f0dbcfb05616a7773fde42e2bc75359ea779f6bfcf7a9e8530e7d64e1f20f9881b8bfa35c0250a9143dbe52e3c076e112be746616125df97d2b65ae55eaee1be2f47da32d07c64cec6cdd8333c9e62f203994d643595dd1dfdf3e8e46fc282149f75cdabc36f20be380de327cfc2f8f42c8c23da08a6959b2fd3d516f1c36649f35a2de9d04b5af360681fc9ae1d9187573ca56c6065ca0efdaa9f6faf0e82fa8ed537a5554a398afa39f94fa0d3d97bfabdd9fb67b007abaf46a840ff8cf9df24eebf00de498e89, 0x789c4d8f316a03410c457b83eff0bbade24ba47515487aedac4c6466a5c98c66b18fe423a4de8b45030e1835e223bdffff97283eeea420245b5756df1fd8cc2b83aa4bca0c5117ef39f4336391cd6a62bce153e3e47221a97c3c2cfb23cb4f27c74ad2a0d61b8af5cdb4c1ad5fad57dc5139c52215d491a8c1f65fe4c98679701c39482bf56d20d2b7c9ed847776e7ff68c30b3a71739478674d1642e9f3f066b00768e666d16909d4b34629d56672313d1d0faf83f3e0e5e95974487f5ba35e1b, 263, 'INBOX', '<5dba87e23a480@specificom.mg>', 'html', 0, 0, 0, 0, 0, 0, 'EDIT'), (100, 8, 1, '2019-10-31 07:06:16', NULL, '', '', 'dev@specificom.mg', '', '', NULL, '', '', 71, 'INBOX.Trash', '<5dba87e807495@specificom.mg>', 'html', 0, 0, 0, 0, 0, 0, 'EDIT'), (101, 1, 1, '2019-10-31 07:06:17', NULL, 'NOREPLY <noreply@specificom.mg>', 'dev@specificom.mg', 'dev@specificom.mg', 'Nouvelle commentaire sur l\'article Le divorce - Une affaire déliquat mais nous pouvons toujour y recourir au cas où l\'on a fa', NULL, NULL, 0x789cbd55c98edc36103d8f01ff438586e193446966bc8c46ad837b0cd8c07881d1ce72a424aa9b8944ca24d58b07f9207f42cef3632e52eab614f7d80902e4242e55afaa5ebda2d29faedece17bfbd7b012bdbd4f0eec3f3eb57732001a5bf9ccd29bd5a5cc1af2f17afaf210e235868268db042495653fae20d01b2b2b64d28dd6c36e1e62c547a4917efe9d661c5ce79580676e41996b62459eae36d9b5a9ad91194f8e2e2a27776a69c9559da70cbc05906fc6327d6333257d2726983c5aee5048a7e3723966f2d759e9750ac9836dcce3a5b05cf08d02cb5c2d63c7ba3ba35af6b8e4e4d834e4c680ea6d3503f62da8a026fae399462ad74c121800f9203ab2a6f56de7eaec5c78e59689830205567a0453c250d58d5fdae1066079a17b8101a58070533a06eff4270258101c258c0080debd60ea15829b14d699f596aec0eef2c96345452184332388110c3c9c055895faee1067256fcb1d4aa93251ed74a27f080737e097f3aeb1f18565575092d2b4b219709c451bb3d6c835c59ab9a04ce1fbb538fe63ae0a15c4a01abc552265020735c0f1679874e72a359dbde15338a9e562c9fd8c3cd31c00a730f8cf8c431b37397833fa85823ea5d0206a51418ae45355c6cb858ae6c02b9aacb5151119c3e69b7c3e7721c94c1cd88074f854fa3c4a669e6549a605f25774e29f51dc952daab3057e50e65c472a79e9a1954efb43104f3d048d68c44284a54d990d0616f5a56ecf71e7b4636a2b4ab248ea28724bb7fefe4fe3d48ad0fe457baff94fdc747f684cd484fd8bf8a38e43c4c0bc926b14e866027b82861e5799d91f3c7ceac3fa67d1a6ea1a7d98d91072226d59d9fa29cc8a886a3b51f2d7c0fed6e46087799673f0b09ef77cc357a18f0dbcfb05616a7773fde42e2bc75359ea779f6bfcf7a9e8530e7d64e1f20f9881b8bfa35c0250a9143dbe52e3c076e112be746616125df97d2b65ae55eaee1be2f47da32d07c64cec6cdd8333c9e62f203994d643595dd1dfdf3e8e46fc282149f75cdabc36f20be380de327cfc2f8f42c8c23da08a6959b2fd3d516f1c36649f35a2de9d04b5af360681fc9ae1d9187573ca56c6065ca0efdaa9f6faf0e82fa8ed537a5554a398afa39f94fa0d3d97bfabdd9fb67b007abaf46a840ff8cf9df24eebf00de498e89, 0x789c4d8f316a03410c457b83eff0bbade24ba47515487aedac4c6466a5c98c66b18fe423a4de8b45030e1835e223bdffff97283eeea420245b5756df1fd8cc2b83aa4bca0c5117ef39f4336391cd6a62bce153e3e47221a97c3c2cfb23cb4f27c74ad2a0d61b8af5cdb4c1ad5fad57dc5139c52215d491a8c1f65fe4c98679701c39482bf56d20d2b7c9ed847776e7ff68c30b3a71739478674d1642e9f3f066b00768e666d16909d4b34629d56672313d1d0faf83f3e0e5e95974487f5ba35e1b, 282, 'INBOX', '<5dba87e90908c@specificom.mg>', 'html', 0, 0, 0, 0, 0, 0, 'EDIT'), (102, 1, NULL, '2019-10-31 07:06:10', NULL, 'NOREPLY <noreply@specificom.mg>', 'dev@specificom.mg', 'dev@specificom.mg', 'Nouvelle commentaire sur l\'article Le divorce - Une affaire déliquat mais nous pouvons toujour y recourir au cas où l\'on a fa', NULL, NULL, 0x789cbd55c98edc36103d8f01ff438586e193446966bc8c46ad837b0cd8c07881d1ce72a424aa9b8944ca24d58b07f9207f42cef3632e52eab614f7d80902e4242e55afaa5ebda2d29faedece17bfbd7b012bdbd4f0eec3f3eb57732001a5bf9ccd29bd5a5cc1af2f17afaf210e235868268db042495653fae20d01b2b2b64d28dd6c36e1e62c547a4917efe9d661c5ce79580676e41996b62459eae36d9b5a9ad91194f8e2e2a27776a69c9559da70cbc05906fc6327d6333257d2726983c5aee5048a7e3723966f2d759e9750ac9836dcce3a5b05cf08d02cb5c2d63c7ba3ba35af6b8e4e4d834e4c680ea6d3503f62da8a026fae399462ad74c121800f9203ab2a6f56de7eaec5c78e59689830205567a0453c250d58d5fdae1066079a17b8101a58070533a06eff4270258101c258c0080debd60ea15829b14d699f596aec0eef2c96345452184332388110c3c9c055895faee1067256fcb1d4aa93251ed74a27f080737e097f3aeb1f18565575092d2b4b219709c451bb3d6c835c59ab9a04ce1fbb538fe63ae0a15c4a01abc552265020735c0f1679874e72a359dbde15338a9e562c9fd8c3cd31c00a730f8cf8c431b37397833fa85823ea5d0206a51418ae45355c6cb858ae6c02b9aacb5151119c3e69b7c3e7721c94c1cd88074f854fa3c4a669e6549a605f25774e29f51dc952daab3057e50e65c472a79e9a1954efb43104f3d048d68c44284a54d990d0616f5a56ecf71e7b4636a2b4ab248ea28724bb7fefe4fe3d48ad0fe457baff94fdc747f684cd484fd8bf8a38e43c4c0bc926b14e866027b82861e5799d91f3c7ceac3fa67d1a6ea1a7d98d91072226d59d9fa29cc8a886a3b51f2d7c0fed6e46087799673f0b09ef77cc357a18f0dbcfb05616a7773fde42e2bc75359ea779f6bfcf7a9e8530e7d64e1f20f9881b8bfa35c0250a9143dbe52e3c076e112be746616125df97d2b65ae55eaee1be2f47da32d07c64cec6cdd8333c9e62f203994d643595dd1dfdf3e8e46fc282149f75cdabc36f20be380de327cfc2f8f42c8c23da08a6959b2fd3d516f1c36649f35a2de9d04b5af360681fc9ae1d9187573ca56c6065ca0efdaa9f6faf0e82fa8ed537a5554a398afa39f94fa0d3d97bfabdd9fb67b007abaf46a840ff8cf9df24eebf00de498e89, 0x789c4d8f316a03410c457b83eff0bbade24ba47515487aedac4c6466a5c98c66b18fe423a4de8b45030e1835e223bdffff97283eeea420245b5756df1fd8cc2b83aa4bca0c5117ef39f4336391cd6a62bce153e3e47221a97c3c2cfb23cb4f27c74ad2a0d61b8af5cdb4c1ad5fad57dc5139c52215d491a8c1f65fe4c98679701c39482bf56d20d2b7c9ed847776e7ff68c30b3a71739478674d1642e9f3f066b00768e666d16909d4b34629d56672313d1d0faf83f3e0e5e95974487f5ba35e1b, 266, 'INBOX', '<5dba87e23a4a5@specificom.mg>', 'html', 0, 0, 0, 0, 0, 0, 'EDIT'), (103, 1, 1, '2019-10-31 08:16:39', NULL, 'NOREPLY <noreply@specificom.mg>', 'dev@specificom.mg', 'dev@specificom.mg', 'Nouvelle commentaire sur l\'article Le divorce - Une affaire déliquat mais nous pouvons toujour y recourir au cas où l\'on a fa', NULL, NULL, 0x789cbd55c98edc36103d8f01ff438586e193446966bc8c46ad837b0cd8c07881d1ce72a424aa9b8944ca24d58b07f9207f42cef3632e52eab614f7d80902e4242e55afaa5ebda2d29faedece17bfbd7b012bdbd4f0eec3f3eb57732001a5bf9ccd29bd5a5cc1af2f17afaf210e235868268db042495653fae20d01b2b2b64d28dd6c36e1e62c547a4917efe9d661c5ce79580676e41996b62459eae36d9b5a9ad91194f8e2e2a27776a69c9559da70cbc05906fc6327d6333257d2726983c5aee5048a7e3723966f2d759e9750ac9836dcce3a5b05cf08d02cb5c2d63c7ba3ba35af6b8e4e4d834e4c680ea6d3503f62da8a026fae399462ad74c121800f9203ab2a6f56de7eaec5c78e59689830205567a0453c250d58d5fdae1066079a17b8101a58070533a06eff4270258101c258c0080debd60ea15829b14d699f596aec0eef2c96345452184332388110c3c9c055895faee1067256fcb1d4aa93251ed74a27f080737e097f3aeb1f18565575092d2b4b219709c451bb3d6c835c59ab9a04ce1fbb538fe63ae0a15c4a01abc552265020735c0f1679874e72a359dbde15338a9e562c9fd8c3cd31c00a730f8cf8c431b37397833fa85823ea5d0206a51418ae45355c6cb858ae6c02b9aacb5151119c3e69b7c3e7721c94c1cd88074f854fa3c4a669e6549a605f25774e29f51dc952daab3057e50e65c472a79e9a1954efb43104f3d048d68c44284a54d990d0616f5a56ecf71e7b4636a2b4ab248ea28724bb7fefe4fe3d48ad0fe457baff94fdc747f684cd484fd8bf8a38e43c4c0bc926b14e866027b82861e5799d91f3c7ceac3fa67d1a6ea1a7d98d91072226d59d9fa29cc8a886a3b51f2d7c0fed6e46087799673f0b09ef77cc357a18f0dbcfb05616a7773fde42e2bc75359ea779f6bfcf7a9e8530e7d64e1f20f9881b8bfa35c0250a9143dbe52e3c076e112be746616125df97d2b65ae55eaee1be2f47da32d07c64cec6cdd8333c9e62f203994d643595dd1dfdf3e8e46fc282149f75cdabc36f20be380de327cfc2f8f42c8c23da08a6959b2fd3d516f1c36649f35a2de9d04b5af360681fc9ae1d9187573ca56c6065ca0efdaa9f6faf0e82fa8ed537a5554a398afa39f94fa0d3d97bfabdd9fb67b007abaf46a840ff8cf9df24eebf00de498e89, 0x789c4d8f316a03410c457b83eff0bbade24ba47515487aedac4c6466a5c98c66b18fe423a4de8b45030e1835e223bdffff97283eeea420245b5756df1fd8cc2b83aa4bca0c5117ef39f4336391cd6a62bce153e3e47221a97c3c2cfb23cb4f27c74ad2a0d61b8af5cdb4c1ad5fad57dc5139c52215d491a8c1f65fe4c98679701c39482bf56d20d2b7c9ed847776e7ff68c30b3a71739478674d1642e9f3f066b00768e666d16909d4b34629d56672313d1d0faf83f3e0e5e95974487f5ba35e1b, 283, 'INBOX', '<5dba9867b42a8@specificom.mg>', 'html', 0, 0, 0, 0, 0, 0, 'EDIT'), (104, 1, NULL, '2019-10-31 19:11:29', NULL, '=?UTF-8?Q?Thierry_Cl=C3=A9o_ANDRIANANTENAINA?= <andrianthic@gmail.com>', 'TSOHARA Sarobidy <tsoharasarobidy@yahoo.fr>', 'dev@specificom.mg', 'Situation site web Miaro Consulting', 'Irina Rafanomezantsoa <peacefulirina@gmail.com>, Nantenaina Fahendrena <fahernatt@gmail.com>, thierry@specificom.mg, dev@specificom.mg', NULL, 0x789cb554db6e1b37107d2fd07f186c80c04675f1250e524516aa3a419000118ad6c86bc0e58e243abbe49ae42e6c7f4dde5afd46f6c77a862b2b8e5d14498a3e6821722ee7cc99e14c0bd35261fc6956469fcd7e75f6c2359ede7afa4379979be27a3085cb6c9afbd9749cfec9e70d93650aca04aa55a060a8754d20d5f20d79eefe6c28cad9ba4095326520ad3c4ed123887dcb80907bb28f1f1dfffc9c43ecd34495974c05d70d125f365ce24795abd8c601d565130c22031c52665d1a188230114c675a1c53a284cb21a81587119ded404a451e9c9da55aaa2c956000f182b7fc0db16ddd75b721dc2686284983822555786464aad92381e572943479a04b04a940ddc73ea3b14be72bf6520d68258d1cec917d65ace028d2ce6aaea3014864bdb6467c8b06aa464602b85a8e52f45b839ed019e29b321abb1ad1dcd860067713afbb4dce7ed5579032140ad78da5204e8543555634a650b3364ba35d35a277628326d23fc4e91e02b419718d691584d54c22f884a68ad69e97a7d93ac63a4cc6e33b99aad5b8f6ee82e3b812b243fd992c4cd9ec9b43a66335bb15fa9d33da088fcbc6a0e501c541e7a5329e27621f82785597dd4698efb9268d0cd5bedb6813ba8d8c113dbe6c5c7c6e7b2dd0464c01a35d9bb2b7877e323ee7e9fdf793d78db3f87efa08abf8761b9c92ba62fced4d4fa1ed365e2a53a9a1052c2828b26d426f47c7e0b1c5553e1a2d7fa4e56960d0a5b542db6e30b7dc5cdd9f9b3ebadb8823aab968b62244236fabe827fd8ac19e77f3b948e1111c0a49d1e27178ae9447ea405029342bbc13a1bbad3e299af815983dd3fde55315deb3eebd383d33bc6481c6048bc4018a6c6bee4777877fe67c6154c9e919e3020f9715368e2acb6c766fbb0c87940e5fac250400ed345bc98b7c1fcccaaad878ce207e54c38052a2581e3adccbb3057b78f7ddc7a53461a934a31a8f1a07b4e6b26534550db01e6d184224b384678eed765dc24f4286c1dcf0e4f068f4acbeca66e76bc3de5fd31926ced17cf1e2f7d7f3c57c71fe72317fbd984fc7f9561f89bcbb6cfe2d67cf4cbbd281eba3e3e2d9897e9a7d15d3575ed56ba3e9058b8eec77b8f91dec079a865ad95b36b9d21f56de35b618260213bfcaf78e4e4e06dbdffeb70877cee584f67e3a7a7ab87ffc840e0fe9e0e0840e0e77ac04f80b51fe37262f65b8b0fdb6c85fdffadb7529f1d14d942de06f2344fe250dec08fb24a3a8fc8ae369f63e2f95fd90cdfec94d9661754be0fbd2f6a3a4ee29f71fbe3ffef0372823f4b7, 0x789c7553cb4e1b4110bcafb4ffd0e2022160435e07144571004520614509e23ecc36765bbb33cb3c2ce06b724bf63bf6c7523db6048a920316d38faaeaeade2fdead7c0e7415e88709fe569ac783baaaab4b26c7148d44ea4da428b4f6399259f313051e7f654afa763e5267a48d644dc02b053471583320355e576e9763da602473db3235dc67a0de676ef1479defd8a503eadb1c056d110505d6b6820428b8ae94d1cb1aef8254583946b3e038a1d3c2d01a0a50eb1df53a4f6b9400742bde2a1762b7f68fe3505708ab389dc6428023d304c031f51c80e0b89d6c3d48d01069fcb9c11077e743c741c54344f1c3239f3874e2c6414558ef2cf749809ad82e9d686d93eb2a4a6220a0d671d221af0486d32900729bc42d26341317e5e025f2721c6e392c141ac62a42635cacabec286a55e33188535329f66ce54eacef2674a339f8a0db42a3dd704038a32fcbdac048cba40e9fd4d532a53e9e4ca72f10bac5b40f7ec569daa9ca43fbac122935e7c68b1505b9cf828b8890069bee8c0406e42138bbbe1d0725ddf3b9ac97fa300e56e238e8ca69c76d2680dfd817c3e6a1dda4e26687cf103baf7469919ebcc3af26b46c1cf0503f4af7b74ba55d8f43d0194cd9408338a42776396a16fe22bfa5332189d57f744365bfb0746960f2138e8af3c3df6bde748f8316ba5457abbc9d3a89de7db3cb0f0cc55c8e675efa12a81bed5de3640377260033120c897981eb5595db698b754558831391f1374cad2beb4360bb29e372fdf8bc9413a7a67646f8b09d35970329e4a73e34625a2e9f96060e0fa9aef6af97c2213cd2295cf5349b9f7dbf98cd67f3ebf3f9ec623edb47c5d760faa5583ae3280bec05b16b6e4f68eff59b0fc7afdebea3e3633a3a7a4f47c77575aedfd00919d704c141a1edf3424313ebe9e3bfa2dda7aeaefe93a9ab3fd9e0a43f, 268, 'INBOX', '<CAA7sfMoi1VmjPttMXa0ccvZP6yxr6ASeZU3Ejy75-ZNyOd_-7g@mail.gmail.com>', 'html', 1, 0, 0, 0, 0, 0, 'EDIT'), (105, 4, 1, '2019-11-04 11:22:02', NULL, 'Nantenaina Fahendrena <dev@specificom.mg>', 'fahernatt@gmail.com', 'dev@specificom.mg', 'Modif', 'dev@specificom.mg', NULL, 0x789c6d8d414f83401085ef26fe87e91ebc2d23e945ecb28742134d5a6dcc1aed11ca5630b0bbc220f4dfdb2d36f1e069e6bdbcef3d314b9f13b5dbaea0a4a686edeb72fd9800e3886ff304315529bc3fa8cd1ac2e016549b99aea2ca9aac465c3d31602591bb471c862118e6816d3f50bde0e8bb420fffbe9cfe9041410593e2bc3736b5e9e27f5ac2288a26d847755648d168cac027b9feeaabef9825d69036c4d5d16906fb49c58cf448e8c905eccbaced34c53d1df81d0394822aaab5dcd8a23a089c84c0a93fb7c5510a2797d67cdabe15797b02aeaf2ef7c6e49d5b0874dec3297c9e39e91f214869a2, 0x789c73cacfcbca2f2de2e5e2e552cb4b2a2eb006b10045340550, 269, 'INBOX', '<5dc009dab91c1@specificom.mg>', 'html', 1, 0, 0, 0, 0, 0, 'EDIT'), (106, 4, 1, '2019-11-04 11:32:03', NULL, 'Nantenaina Fahendrena <dev@specificom.mg>', 'fahernatt@gmail.com', 'dev@specificom.mg', 'Test d\'envoye', 'dev@specificom.mg, noreply@specificom.mg', NULL, 0x789c6d8d414f83401085ef26fe87710f7a8291f42276d943a18926559b668d7a84320a0676118602ffde6ed1c483a799f7f2bef7e445f214ebb7ed1a0aae2bd83eaf36f731080ff1651123263a81d73bfdb081c0bf06dda6a62bb9b426ad10d78f0244c1dcdc220ec3e00f0bdfb61fa87738baaec0c13fafc77f483fe75c2879da1bebca74d13f2d41188633eca294e64ad6c429b8a4475f7d7988446c0d93614f4f0d09d8cf2a124c23a32397b02fd2b6238e7a7ef76e04a0925c72454a53c7905f9139d88924cea6c47927b3f9a464a356d67cdabe95597b04cfcf7eefa5c9ba6629b1711ecee1d3dc517f03a3a46c94, 0x789c73cacfcbca2f2de2e5e2e552cb4b2a2eb006b10045340550, 5, 'INBOX.spam', '<5dc00c337e261@specificom.mg>', 'html', 1, 0, 0, 0, 0, 0, 'EDIT'), (107, 4, NULL, '2019-05-29 14:16:55', NULL, 'Cloudflare <no-reply@notify.cloudflare.com>', '\"dev@specificom.mg\" <dev@specificom.mg>', 'dev@specificom.mg', '*****SPAM***** [Cloudflare]: Welcome to Cloudflare, in partnership with CloudNS', NULL, NULL, 0x789c030000000001, 0x789c85554d6fe33610bd07c87f604fbd38b6e4d5a781a2c57a51602fc10249b1e871440e25d612a99294b5f9f71d52569c780b04300ccb9a79f338f3def068746bc14f3d7865b4fb85fd6d26d6c119999b3847e7e4d4f72f8c5b048f82013bf66612b2078b0c383793f6cc77d64c6dc7cc64d908d66bb44bd8e3d3967da7388ac51f5c05006f16f4172a038ef0f8e4bc19d06eefefeeeffe3436bcb1cc223756b8cdf2f4a6e6e4d06a189029776002cf7fb811b9928a9b613bb401e3d8831a7eca1bc1b9992019f8c3fd5de7fde80ebb9d00d76df96bd49650766be4834587fe776e04fe56378d44019ff2ba2850ee31af9a2c49caea212b1301a5480a5e6590635380cc8b5c20afb84c506095265996425e3749234b21eb84e75c2449daf04ca445c313a84ae050ef21adb25a247993943c4f8bbac9aa42c2a7a46e725196293148a86c9e7f2a64d1240492f22caf9274df88acd94be069b1af3115495d216021881fd4a2c8cabaceea9a80885351667921b10e6d7a34731c0207cd4084c9ced8389a5118d16df7d649d37806d0d0e212813f94f34ab74c9801947e15c235fdf18929edd1123f8c137e529a5fa64fb81ae750ee5a69c33ab461b8cc9930e46134d60355565a1a3b449132b9a824e27defc0bf65fac5a03b0411bc554cd0d9f1cbe343af4e18902c386f27ee271b4f3bc0e972a078fede806092424894ecb98b2cac39e38091071be938814b38c880a0dd927b56946dac63b3ea7be63cbc10926ec90ba045f40607de856e0dc83bd0ca0d6bec6a88e3b7bf6270435fb312be231f38ca241f6e17695ff56c8d47ee2fb5d7d1352f943162df8732276d669aadf7c04f48bc22726ff829bca40ce64618b6d1f0410424f6f7600ef96495a763e019fbe85cd5761ba22fd4346c82187a33df12739d99232b36188befe6461fa0e37a6aa9b720c9b48c0c17d8ac920b75b7ec6b54a48a39f4666d6c5c06ac45bf480a17e951a37d50217701df2158de31d4add2485b0be67e3d3a89937698fbbf92f4606ecff18c96e663247b427b561c49549f2f7b30a677a4d18b2d1662f480e35b2dfeea985f41dc0212d7e16417ff040a16cf2a7820b4e426363ae11058addb6a9ee7db6515937621e85b8fe09000211c15e34f8a20d1d2b31a89aca460f68f513af0bfd23cb015df4d63b0db6d8d8eef503f4c6e47ab5df11edd6e9fa4555d9649121db82c784eb747706a1f2418b8842ac1df923a464673a46a471740f02fa26848944c5a332cce20a29326adc506a1a6b65ab876e9843806e77933d170e3067f5ab87e48fefeee79569e4ebe445ebae897ff62c43581ee1f5a538d31a72b2c19a6fd19f333fdfb51ccdbce90642608f7285d2cd17ed405da3a8b90f0dda6a571ad9bf37297ba4e8dacc148987d95b129f10e05fdc2fe9d820fa8f71bb64c9b144ec67453dbbebe9891cd61870607933f96b62f0bf448dc807b5a92d4d68f7a192df24cabebe436e1c73be2cf08c3fddd7fb584e5e9, 1, 'INBOX.spam', '<0af48420d835d751ec980a1453daaa8e@swift.generated>', 'text', 1, 0, 0, 0, 0, 0, 'EDIT'), (108, 4, NULL, '2019-05-29 14:16:57', NULL, 'Cloudflare <noreply@cloudflare.com>', 'dev@specificom.mg', 'dev@specificom.mg', '*****SPAM***** [Cloudflare]: Get Started with Cloudflare! You\'re ready to add a website', NULL, NULL, 0x789ced3ddb6edb4a92ef03cc3ff451706667662d897791f265c7f12576603b8eedf87670f6a0d9dd9468f3a2435296156380fcc60233c062dff637e653f2255bdd242552a2647b93384e2225b6c5665faaebd655d5c5e6ca4f9b6f364e2e0eb75037f1bdb515fe1bddfa5e10afd63e7ef84737497aed6673301834066a238c3a4dd9b2ace62daff6f1c33f6b69d5f68da8dc8f82764cbaccc771dd774914c6a193d449e8b76f4ab5c37b6a878ee31296fd11ede264e8b1d55a7dc0ec6b37a927ec36a9c7ee7b56c7f4aa1f276d1484015bae01f80cd3b53ffe61c56709461cf83afbbdef02781b6190b020a99f0c7bac86487ab55ae33d35f9649611e9e22866c9eabb93edba596baea1bc9bfc46ad9f38e53bc501ceebefd6eb1ba1dfc3896b7bc53176b75619edb0ace14ff5fa2fae833a09437e1c22ebd7b515c00a87396cbf1133de0c49df8796c72c49dca013a7f7d63d2f1c1c1ebc6aa69787ee2df3e24316ed06a4bb66192bcdc932a8d69cd765930fbbf2d32f2ca0aef36bbd9e43778a2317c30c625e54fd818a899b786c6da599fee5259e1b5ca36ec49cd51ac74b0c6ce3000ae246270c3b1ec33d376e00759b248effc3c1beeb0d57dff458f0efc738887f56d75549fa59d980df2efcd1c485965e18e2c2482f5ae2a2955e98e2027ebb3514316fb526f824ee329664d8160530db14eee65fd1c6deeed6c149fdf8706b63777b77031d9f5cec6d1da3bf36f33aaedfb9abfb71dd05ea45bdd003728641dd0f296b23db257df859fe3b2af4b81d4684a1dd2d948428f6c330e97a438026a02c823f9c4b29748a3b2c6e14867911f6132f0caf11beeb614a81286da9aadf37593545925a080714f57b7ca05e14deb894218c6a372e1b20374076140e6216d590cfe218862b8e967082de01bfd5c5b7ba17f7304898d44b96c785d1b8b004c811f3c31b86f85d0013d92c193016a47dc67ce40a188b83378e4028f7e3cecb900eef062e4dba6d19085718a4b1750bc80eb0b7e1e138aeae338911ce4b1c13d48d7b1e1e22d023ae17239c20a7ef7948f45184a2b784f012f2dc2594d025647b21b9febd1f262956807759bdcbdc4e37a9477d8fb5d92d2689379c4711183ba3326f8dd2d600408c922e1bfe5bc45018b91d176605fc00faa3080cfe850bca7f72fde3d57e5d1a5fc77e5cfbf58e845e18b5dda0cb22375926fd28864bca1cdcf7926524b41f65248c046fb685eeab00d40f6dd76388b21bd000318737eb118a888723e04b21b3a9d0ccc115d06d29257709715c4aa634b1a0da4c3d3d4dd3c388dd806242676e40817feb827fced2e6368e01c66c1a40e4c409233f464e049407a51c74383b8ee6c207437cb0d254caacb53471cd673a51c2673c5144dd9ba932908660aa90ebbbbb022f65f37d280b97f82880b972d69916633b8c80eb60a5f43cdc8b593bffc207ca6b8a65fc2ebf42e89e9533af58e8e145870bd47e48411c9646d84c89f126f0867739d882ffd04faedf0ba30407c0a08509ef7025b50d02593fe3028976b92244618036597c9d843d3eb7915000d7b5bba06aa23b34863c9505f4c2d14d45768ae38ceb54494455cdc2f41a763f49000e1874aa6816102f1cf129cdf5d3807060b900055204222f9a0984e9f07f9f0f08fccb6d1df77ab000509c60689c30928451fc6b917f322ae40ae4415440b306474250041bded3a5a8971a0b0fa93948a56e7ecda27cceab5940d1df7c465d0c6ccb353989f8eac7d5d49f7d7c5b4f172b43977ab77f2920ec05d79a27425ed1783dab16136e508dbf7303647c85b2d6b80f8aa2723e088dc1981ca3582b9bf2ec8e0af03484a6394e30b97e08f8a276263ea211ba03a022d0cf7590f13692013933dbd28986993994b534a65b4e8e9bea24a15952259383ac982588a7004e1b9e00db96db1933db1530140be414115c067c62ca55152341107d26c5f27a7608f8f11fd6a7c79c795da613b4667149992e197ec2de21a6137451e651b488dcac71911baada16104bd395019a2d15c4a9b01a95903e6b11aa666bc2b8553f256219740277f3054dd48b1e2148d988e9ca3db7afaa914610cdedbdb848646a187b6e27686783df0b64107222cde2e50773f2032a66acfc50469e59af0cfd315819b366f060d01e33e04b6182dda1d4149b6c55acdc8de653fd1e56bb87258b50559966c25aaf062dfbb2d24c5de4ead044ee41a364d86359b404fcf71adce0763258cf7d6f09851e77161067c3e282bd1eb918eec4e0dfd7c13175276d1680206dcd0d8d74be6dc45199ff28c624357257194dd1c97363b02838acf55e18bba901e20631b73f4b1561d45441650e38f0cd46e8f5fd008048b5a3aafd5c396a4635e5e7e90e69dedbb617e2e4ae483c0d405d9ecb8c7fe7c1983c50311990698a8816ffc60d0a64778425b65a7be118fcdf283466c36ad489c27e40eb238b59d458e6b4ace700602f29e39843872a3d39249c97399e437a7f44b86534a60e0fc581d7940397b363ea6c087b2537c0c4f8dcd275bc70d0465d975216a430c377d60617083a3b016fef9afb571178789d80fb7d3cc67011f63f7ef8af8887411c3680d1580f1cf001b852c247bc0a5d5115fc71b4e1857dea704f11052c1984d175036dbb519ca061d8e7bd02d3433d30ec284d8b00e2208b668061ccd2c200fb0c7819e08dd3eac311089e27bcfc95264c5c104cb0198a428e815e04cd824418c6b574155ead7104d6321db25a936a8830cfcbc22ca3eb0ca9e2fa73d07a2a088478c0074d8581d2e24fe18c493f158d1cd5da341fa718e33cce852089d26b9a4fb9324883f228cda78059cb551f0f4f2161b167a2379b7e2e0522e4f6fd889ce0033c8a9a628d5eada58bf488b845dd81c4d25f5e34f2b2e740c61c758711e36a0a4c0d1e66c740a728c7614e51a8d5acaef635c83d9fb424870e68c6e33a000f58a41be3d279f25ba4f02407e4f23b13a34f47d6dada883a5f45daf6c24e78af9c7d229e7d109a7449cfd7aae72434d3a616d0419061ed2148a9d2360fc049215c91f2c084bd91b284f8168dda746175ac67a809c241847b30c38a45487ccada5d7c6a397f65e2247ce7497100572335e0da280e3d978e90c86f94a380a55b230af3d56d02541e429d072afa729c3eb686141dd65e6106cec20c9707d0f72579c850350ec4d4e67183663e4e42b2b587af32b5a2d43f0fe92832e15cd6f97aeb444935dd87ed0261be255c4f5a265f10d92bb8b075dc6e36c56e5e838c8c76b173cc9aa4c986af3dfb6cbb676f5bbdcb8d5d63d77bbd77b2e5bda4d2f6cbb7a7f4fdd166e73d393b0df199de7beb7535a25c622cd3bdcbf792b5eb0e5cbcf3dabb74a19ddf95e8cecbf76f5cf386aa54ddf30f625b3dbdbef46fbbc47fd7bf50ac64efbd25d357b2639f9d5ee3f3d3e4f0ec34b938f3e2f39d7783fdcd5d859e1f25e7eac10d3d7f7d7579224bc4dfee1365fb8abef26e6c7fbb5c4f39e8dae72fbbf88cf60fcf0eba7b67dbd7971bf27b7c7ee4ed1fefc6bbfe6dcff613079fbd75df5cbd95f7af76d537271d756fe3f5c0560f7aa24f807b7f476aca8aa6e82da6aa2dc36c99041353d62553b1b1a6b6544ba58e2e69b2e458b2e6e8c4b198a563ac115da7d46aa9a6ce9e80a273b66deedf27007670fd0e8a2332e2073770c2497688e2664b56ebe7c71b754b369be91e7bd303c3e237be052c20f84d960df3167e1abda0c3d55eb25a1bbb82b52c28be5a1b09b4628c85f4be34803cfc93659f34d7569a98a744a4fe7a3393a7e658c29a42b6b3af0fa9c5ade6c2ca00974782504fbe5008dfe39bd65e85b02812b319f3a82a3ecbe5dd269e9b82786eca12da61de0d4b5c8297d0544c6bb9b897256bdc06296d302923a7fb0ba9ce32851ec95b236e9a6a5369a066adb321b2da1531abd9bc9c59fda5e1525bb3e069a5617e34de0818d98f4fe79f1c73068eeef550164ec977e39414d86db42c28fadca05be64494055ee7025f500a69c197d4001533fbd77f3f95488f05655aa89f5e6c4f783a22e25bba8be0c20f2ac7650fb19417e2f13f2c9a5ef98bc601f7896704123ed94050a60d0455e145a54dc8345830b18399157e9558c644bca09a023c23ae84f574ca9a2298619d52740c285d69f27a9566ca97d14f658df01c74d4218b6237e6b9e1e88156c642557d67aaaac2be786ce4f287363a2a45a842b69f7c0f1107018bd22cd78554ff68525dbda1fb9556ec6a284b7135fe884e077b1e8b860d1e6f255dd7ef89d01a3525aad196a618069188a469b66413da22388fb29196a633c936ebccb0595dd32cab6e525bad33535764555609558c34e496115437c7aa6e940e22d293d279ce8bb39538210de1458ca764ac1302784dd09f3ac0d07f5edfdc44c7bb275b7f49af8f99c748820e791a87287897e6711c145238d28ac07bfdb80dbd25ee4dfe985641317d393536a92e9e81065b18273fbc1a5b1827dfa771c21fc35984467e4891ae0c8d7cad20c8cc5d92cf1104a98ef77cddd008cf53455d7cc3106f8888305ec05c0c10ce0c98819b740b29aa0dfe9c609a701af17d520ae81557fd983f6de833e4c6fcb9cebfc53d465cc70593ade1771a224b384aed17fe7787f1bc54f889439f3f58e8f59cbe279ef9144f837698487e45491750d9e9023060ff60fe7c783a58065c7bb2db2fab3b9e8daaa8da5abcc9889d84bdc24c1f196cfc26b719d73e7ef89fd11a3689891f60fa5f3541e542b9bda16747befd6a7b7879ac5fd98a7473716cbdbf3c3f92c9e6574f52d1a69254cea5a6ad6a2a360c43d19982654c0d559174621accb6b06132e2e82665a425abd8960d43322dd53419b554225b2636545a43098e3afcd88ddf6c70e1aecb1bf9f3d247e6e59e7c4916e109c26ed067e211857e8f9fd140581c5726852c54ca42a57c559542d4d30179650de906a89357967cf9ea32be387fededf90737f6b1155e0c2dcf7665990cad2e098e7aa0823c323487fb9b5beafed5faedc1d5dbe49d7ae4910d69b8f7ee607879b62d5d1ecb5df85ecca30355747005d77dba21776dff2d5c1f5def9d6d2554397589e24997275f5d7de953ea2b909aaa6a32cbd10cdd300d59d7150b2e2c49b34dd3d054420c6c6850c194559bb4708b12d5d69966116a1153815bfab7a7be4ef9393271bfc70703ab11c4c6630be5b5505edf9ef21a5e9e6fcb97e7071228affee539f92d550eb277f9ca93ed133983e756dedf5c1f1e04a7927d6abd072535bc50de5974e775d70e0eba17ea51cf56f4ee44bdab8b3379000a2ab0afe4ab0b507897afde26a922db724191c4308fe85cf1ae77af42e9e0647778f0fe5adfdf18b8002f5744d0a706cae7c06a2a4e4b93882111db64065699a6db8a43e5167c14c36e81f9445543a2cc06a5a3da2ad3996d3818940ec31aa626fef634cc71dff6dd64a46322f67b9fc5c923926673ef93f96b6f02221ec9448e1bb871573ce3993bb06190db5e4bc80d88d7e74e27f2c39b916b5b788c13aa804b1ef63d0af8bc66d9f95a2d0575a162fac829ef5b9c37c4f8ad8f1ffe51de31f8f8e19fbcdc067f98397ccf811ff815947c68f1a82a2848cfe30e3d8346dcfb1732c39b923070dcc84783ec89521e01e22370373f7dfa94365640c4d6265df133e611eedb431fe3e8c1527ef7a4fcdceb09c37e952f3f2371434e43551cd967006e0f78a6033790eb08bc67f300ac7501ca742a306b164561d440871ec331d4ed04218c0c18ce5a5197067f7aa15acb09f239b6396a333e486758c80fe1f03dd54e4c2936fae8ecd4a78ee42e9253bf93c8edb6f89422b769d1a727a7665d3fa3ad98d1cc9e4972ea626b7521cd4f2ccd9fb0b5ba90e767bcb5ba10edef5db40dfeafccfea2e8b38876daf97312ed7c6e0bd1de16e7712ee4f9db95e7f959109542fae04c84677200c1b7bacf3ea26251b63332a507e19683a97998340d888e23a4c5c868ae552dc56a59763952aa4c454a6593174da7be3c55c6c8dac9387c32c031e214e6e11c1e2cb119c1fd380d73f13d45264e7fe711a962aa888893fceb7f9122c956e9c6bae7a1a3f430e9a334da451b88bfc9a11ca56d0058323a0907018c4dd171d2e00168b41de180b8310997d0c67a03599a2cb52674fba4369e3a21f449d098a55bcfd7448f12106f383e87ab703ee7d4999c338ff07abeb2959f0230f3f8b1092d57f1709af25d6f2da467815c762f9453d756ac28db52d82c6d330ca7f61279985f7ab3b92f4fee251eec484d53279429b2a650cd64d8506d5dd789c65a862e1bb22349b2896d4d3635d992b165d82d5b613ad16dc7b20c4976f8791de22d1babb56de01a3b0c9fe2fc9bcf7a8047fca8133ce2908076afbb240cea8e5d17e4afcb1228ead21305aa310e85f1efe2c180290c4d3e6b507996def4917b8f3cfa8347f0e324c22edf018cfa40313117d041fced1cb078612f66c5034216d2f83069dca13dba73e411374d7a7a5b4a849a94c27df5e064f776ff6af7764a0acfa5a62ad99a4334436f99a6ed1045a10ed654c9512d553654aa59b4655996841dbd4508b61caada543655c5c4b262eb863d92c293819b3ccdb948cf44089374c28f93c4492c2d04f19b1644b12c0a61e3bbe8fd6c5904a1e4bbe1babea794d37ea0efabbde9949b7c9954a60434909a804e0af2c928919c96e328b2e468c4d6248318ba6d5b8aad1045b7655db71c85eab2661155952d55550dc951243216d03d37b8667437f87124d4133306d17994884ee1e9f9ca68e671344716edac78d33d35bee00ef2284ef40c82568b78f47714bf5ac4a39f6d3c3a6b3e6a5b055b73f24cecfc51bce21bb17850e7559e0e94bd562edbf3473c4b89e734c1fff41d0f39ff3c9f53b3b3901d3fb13f3d42bbf0ba96ef53b7a0d23b0dcaabfa58b8ff5fb2fdf02774e509cc4f232cd53e28e4584d86e22d0d051196a6c2a15f3ea82d4c9ec20484f5f3620eec536f8ba8b4ab1e6d85342ba475ca78a816e8cf22bdd363a5bd6f0514955f45703f98fcfd497ffcc3d4a1a9333c84f0d33c84405a1d516b14459f78014e916655f772719eb855592c2cc14ccd8a7714f3b9fe1f58ccdadd, 0x789cad54cd6ed43010be57ea3bcc098ab449ba5545d54a05565b2a2a2140dd05c40979ed4962ead8c13f1b95531f0424c48dd7e051fa248c9374932e072e3d244ac6f3f3cde76f66ae4c10b96216610f4aef6b7792654dd3a47c7390725365cf83af3e572864a84eb162523d8a066782e578ea2dd38e712f8d66dd016755cd64a14f394b981089931ea7f064776777e7cfcff89e09010b320e96b945e611669c9ba03d3c83bdd9d9192c2e962f9fd0cf0215720fef14d3f4f7be16d1f70dabd0a15da375d1c5331fdc0965f0723d4afcc90428d91ae14b701e785b4600e5617da946fa12e643bf706e2c5c536b60911b2bdca4fb0b544b5349900e04ae5fb81ab9cc25d19356451a4bbd42e23172e90cb995a8ea3c2850525f39f0060af43113f8d29a509410295b332f75d115e8019dc454b737bf8813a3e934503ee232d4505bc3d1b9d1556d5d13cb1cfa503fdc6db5303e486cc085ba36d6537b5e72856310fdd1b6664a9ea14e82cbee42b283fde9113d4f0f9385c73a3948ba4b4f5832d09ff42c244c8b160d4b1a5c45480fdcd522ac2ae9377d59fc1a9004f2dfb67a4797696c1e0ed25bcdb115472eb57425690437fa30faeee6272035574144c95466bd518e1e26815c48e52628019e5d21906c487a47075092a3839cb41d73f392e902e3d1edcdf7fba3737bf323da57489ce471ec685ca4be27d114e2543552a93823484171a05a066228373a97b682a6c43eceb515e2e4847676453b2f1f51f1382914320860124f96047130c11259d50500ab8d3285fc466398b784f500a8dd92d27718082e5a6b6c4a1b039923df421bca43d4f451420afdd84315298a7cf4b79a0e7b63fc5e0ea91be6c021ad0d021d13ad9033da0ced771c53024294479a472b85f2fc0652fef1bd3d3323fa2e65517a0797ddf58914fe5dbe294cf7a7b0348da6bab43689fd05b17d4ef2e2d2713381f92c85e3c3e9fe51c47ace38ae8cb9da5ae8796f6e353ca0c8a2fc96b4023dda5184ef2c5bced1f7356d3314177a2bbd6acd52b711f4d44c5f8fb65342ba4d3aa5ff0568df426a, 2, 'INBOX.spam', '<RKLIAwAAAWsD83qehiniBXxsfZkWKg.1559139416@cloudflare.com>', 'html', 0, 0, 0, 0, 0, 0, 'EDIT'), (109, 4, NULL, '2019-05-29 14:17:40', NULL, 'Cloudflare <no-reply@notify.cloudflare.com>', '\"dev@specificom.mg\" <dev@specificom.mg>', 'dev@specificom.mg', '*****SPAM***** [Cloudflare]: specificom.mg was added to Cloudflare through CloudNS!', NULL, NULL, 0x789c030000000001, 0x789c7d544d8fdb3610bd2fb0ff617ada43fcb5493629f6d42640da0645b2c81a087aa4a991c44a22550e6541ff3e6f28afd7f6a23918b6c919be376fdeccc7e0ab68d2d09ae482975f487ab6ae743674abaea2d10899a2e08252a0290c913eb66128cad64426636d187c5a5d5f5d5f9d1c3ba49070dc3bcb946a93a8330dcb9c3ef24e5c622a8d248e0b1253ea97f105496722ce56f43592f31452cd880fb190c529aa0c3d475b9b58e1cdc373b2a2ef4cb5d903904d07ba434fa34bf59cf8e551e987125020047e4776815c12b283a4d071945ccaa71067ae91ada2dfebe13f17b50f78c20309d5de53c1fbdfce74d38c6fc8ee3af62ade63e25e7291df58f092657df5a165230c1853d0cd36f4b47588fabd8408f43938ef7c750279a36c2b4ea880a90b92280cf894671d49f754a7d4cbfd7abd6b43b5b2c7bb15d8ac9fff2e13b096f199e35294e3d228fad2d8e4f64782b666dbcc9248824f24398b6a32cfd76fa9c6859c411746ea4be88359d6ddb43cfc3cc84ad67832ad84038eaa84f6fa8a73a5c2294108a1f2a92dd93ff006e7c6fc0c33ecb5cf3cae5f34076e51bd2c2c9f8c4fed842e68b12ab9e7914ac64c44186c07010a0a3e37fc062c988b9db14d361c7b14120d988298b6a761eed5bb290cb6cef41e87be0ff1441b990f2ea95e5f6de157283a4722701cc7559acf2e7a078b1acbbb109ab3e0f270f822fa039cf0735f5c5ffd1142d5f2abe3837d3bc8aaca8739e276b379777bfb7eb37973b7b9bb7bfbebe6cdbbbbcdc5e06f3976a28e7c9cc70b027c98747da8aae638faffbf491659c77c5045664d43f0c90808c6fb80f134c263ed6c9d73300eadf3e8d60b6fa83a1715e777d679dc9d376d3b2dc895193e6f11439df343e20500db16cd07ce94afff0d19e399547602dc316f16e7e1d32e2f53e55e06ec16d26a93eb72e9ec05c68218b41b5c5b648fef18d3fc5490fa5c13d470f3423ae93172f73c75c1373ce53a64fde9fd9f0f9fb77f6be01663d3c8427f309d35c6747abfa4bf4e6ac4f0b3dbeb6a57e2dc19d7aa7739c6808dec922ef2d6358ce1c85bdcf879252b31940105919b3b39e7a2d198188ccc04f130560da439e015aef03778d0bbe44c9a073bf27f03ea0652e543e45316ba028a408a070f40831f6d82544f, 3, 'INBOX.spam', '<1733080ce217affe33eb35b16fb59ef9@swift.generated>', 'text', 1, 0, 0, 0, 0, 0, 'EDIT'), (110, 7, NULL, '2019-05-21 11:51:10', NULL, 'Nantenaina Fahendrena <fahernatt@gmail.com>', 'dev@specificom.mg', 'dev@specificom.mg', 'Test debugging', NULL, NULL, 0x789cb349c92c5348c92cb255ca292952b22bc9c82c56c84dcccc5100d269f9450a29a949a5e9e99979e90a2589c5d97a0519053649457636fa406d76bc5c00ab4b1534, 0x789c2bc9c82c56c84dcccc5100d269f9450a29a949a5e9e99979e90a2589c5d97a051905bc5c00015f0d0b, 59, 'INBOX.Trash', '<CANt0zhe=oT-otAx4xRxvdepKxO6a+EF0g8do3AZJ9z1A3HnKdw@mail.gmail.com>', 'html', 1, 0, 0, 0, 0, 0, 'EDIT'), (111, 5, NULL, '2019-06-04 08:52:01', NULL, 'Nantenaina Fahendrena <dev@specificom.mg>', 'fahernatt@gmail.com', 'dev@specificom.mg', 'Test', 'dev@specificom.mg', NULL, 0x789c6d8dc14ec3301044ef48fcc3e2033767897a21d4f1a14925900a54c80838268d2141891dec0d49ff9ebaa112074e3bb37a33232ef2c74cbd6dd75053d7c2f679b5b9cb8071c497458698ab1c5e6fd5fd06e2e80a942b8c6fa8b1a66811d70f0c584dd4df208ee3188d8bc8ba0f544f3885ae38847f25a73fc9a8a28a4971dc9bbad6f8f49f96384992391c505d5452749a0a0824d75f43f39db2cc1ad286b8daf79ac16e7629233d1186e4127675e1bca674a0777ecd00a5a0865a2d95f62470d602e7fad2567b297ab9b2e6d30e4e94eec09f9f9deea5297dbf14d8871fcef071e5e07f00b7086953, 0x789c73cacfcbca2f2de2e5e2e552cb4b2a2eb006b10045340550, 273, 'INBOX', '<5cf6313173332@specificom.mg>', 'html', 1, 0, 0, 0, 0, 0, 'EDIT'), (112, 2, NULL, '2019-04-11 13:59:14', NULL, 'Nantenaina Fahendrena <dev@specificom.mg>', 'thierry@specificom.mg', 'dev@specificom.mg', 'Contenu textuelle de notre site web', NULL, NULL, 0x789cad555b6fdb36147e5e80fc07560386ad082dc9b19358b1846e9eb3ee21d996b8db43d1075a3a8ad9f12290941d6fd87fdf39b29d4b6ba479280c4be021cff77d3c378d2fa7b31fd9dbd9ec773efde3ddaf7fe6d1c49a0026f0d9ba81884d7ebb9a4daf667914e02ec48ba0d5392b17c27908b9f4969f9d0d473c8d8ac383316db23bad8ccf9679d43a93f972015a78ae65e9acb775e0a5d5d952ab687bce3e77ced6b52c61fbda79ac5ee0b1b2aeda9dd779b408a1c9e278ebd2bb77e9a14bbc7189fb493288d37e6cf5bdb87bc7d56ad55b1df7acbb8d67d7f1f574c2e9a683242ac60b105531d61004334243fe0b18702258c7ca4d14f3e87247c7fe42592c1db2ef6ba90238a898864ab6fa0704f261ada018bfe2fcf0207ecd2ed09bfd0cb53432486b3c7b1d1f1ebca9d1ca6b51c2e1c137ff6e175aaa75164d849e3b29d8a5088be81cb71b61ac079e667d366043768cff013bc137aecfff7b0e6b229444ac4f4050f6107de937784041a53724fc33a94defd2db2bebb450474cc9c7ab4a2e1f9644ae85bb95264b4a4d9c9b159fdb1030a1bd2449d226d046a7d1cb7f204bd35ef2c8f610834e7874e485f1dc8393750788455a0b07c207ae84b96dc52d64d32bfeee866e203225cddf47cce35d49d65b2c7a47a64e19ba7689e18d93d6c9b0ce4623c22cadb22efb36199e1c4f52325073f00a4a8bc9c72064ada93a18d8702ca59701aa3d34175629bb82ea2574a3e1e0e2b4ff45ba8e63aa85545d6ed2d3a7d801a93364f7d608455dd3608e5f1acc8d929534955d9108e2a3fb4c160d96806855d84306778d75815ba3d65f27696f1a5c76ed740325052025d6ae364ed23e15073b1df57745b2adafd3a47736a49dfd6fc2a5d2fc1495a8b2c7463ac879318e1f5af6bdacd96d0086aad9e84331c6f141f3d0667e211aa83681f16c8991c081803d1f22ac04596971974769d23f89584c0e31398e5fbd0753c9fa03917c115c89b56dc313e8cd2ea1374f292b1104f2edc89e20147bc8e3cd749bdb6acd2809f9c535a39acda36de5476cb95d6f4a13e7188690954a789f3f8e59316eb6d6fbce2f7eb2e6a36ddd116a6d0a5243cf66dfc9eec47766ee9bf367cf4d24ff68250e4e1c4838d41712766358a0b135c09658f6a88755ed76a36554c52d2874a980191b1c30ea55b68279ef2b4ac36048a140e327e1b31bc718347c529c29e8f86d29fe07013c7ed7, 0x789c458d410ec2400c03ef2bed1ffc00e011f425a56b44aa2591d2a4e5f91454a9171f3cf2f86e3a5bfaa5965af08b41aeb389063af194e925744ca6411df7329558e98b98a2e50112c14f24fb3e69845a386b5924888d8fdba9366f3276bea9f13ffc02e054272f, 1, 'INBOX.Sent', '<003001d4f055$acdf51b0$069df510$@specificom.mg>', 'html', 1, 0, 0, 0, 0, 0, 'EDIT'), (113, 2, NULL, '2019-04-16 12:56:59', NULL, 'Nantenaina Fahendrena <dev@specificom.mg>', '=?iso-8859-1?Q?\'Thierry_Cl=E9o_ANDRIANANTENAINA\'?= <thierry@specificom.mg>', 'dev@specificom.mg', 'RE: DOSSIER', NULL, NULL, 0x789ccd57eb6e23b715fedd05f61dce8e513b59ec5c75b134d2a8ab95e4c440ac2c6427fd91060635436998cc0ca72425590d02e46d8a7d0ebf580f6746b2b42bafb5ad5b148225933c97ef7c3c3c3cecc62a4de02e4d32e92f036321325f86314d893453160a2ef94c99214ffd659a18951cff9c1c9fcd5848ab9f8dc6ea088d1517d1463e0d8c58a9dcb7ed4ac5daaa58a862972ab6e73875dbf56c9e6ec16d1557ab95b5aa595ccced9b893d190d4c1d69dd317add9892a8d74da922a0854dfaf7055b06039e299a29f3669d5308cb4160287aa76cadd981302642521530c9cd56abd1365da3b292919406dfd08c0aa2b87850beda8086bf6270e036e0ab194b1415348294466c917e8d265e99e64f6c06af52c97fee75a55a27b4b7fc9bff1a7e9bd2982c1917fe42245f9d44744616893af9f1eabbaf3bbfbf7cc18f90591d2163c99860c84f4875ed1259f7d54f348bd8ec67d3dc80d511bc7c61bf860b0c1c8674c632a618cf24bcb65fbe783bc359734642faf2c59f7eab06294bd6feb7345952c542d2c1959c645c52d3f53d705d68421dbceda7ae013c6ec71890742a18812ba262e323637568400dffea68b3f6b4ad014918dafa1851032d54581eac60c4d79a804f42cead2bc9c75ca424790309db1d456cf930d4ce5322e62cf39d30d53ecb9139e54ae1c9b01cc77173a5170a8c92fd83faae6b393b730f1c14c08d379264d29454b05961109375460425529909c9e60b32a7fe686cfe70ad23207ec2b25fdf80c45835ac6f31f7859e2a90a16ab1c1662e302d985afbedb6b619f204b3e4c469346b03574fe843624634e498ff4882bfc8a2c20c2d7d2c99648a4607dc5cf024e12b1a1de3aedda85f9c7b4fbacb2d349415f43a05f9bb43cdfec378dfab3ec4fe7671c35db5218ae72649944f168aefec9360f3586df7ee41bcdcbf431a099d6d1576f6d43bb8a7372ca512c67405139e920cf7b6d8568cb260729412961419e8b6f6635148b08f1c63346528c7a44ac9f38a65115f698a0ff9697fc68f29689eacbfccdb897b516f9f0f8b3284893188f36159770ef8a1773917cae4d98e93923da7604f9feb1cd3bb28b6d734d4b9e16a3b8550b3e418cedb5baeaba377ee58ad865e39fcabedeabcf9d8aa76e5ef4e6a415d14ed87aaa8ebfa5c51c048a08dc51dafa81e9652ee1725b72ab11296181b5e17782328030f098b52721718aee3350db0b582ad15f72aef93c613b2e60bb567ba5cd5d6f37d97115104fd6d9ced59e81d706e9737e894476bd04525b898803ece815115050396d5b83cb578cb2185102644ca6097b35e37af66b745116f154c3a28480ccef6d2e4acf78ed10c04bdffe7c2c250f29e06abbfb50afee45f6aaf30729a4d65def9d414422e7157ba53044e859f71ac34e5ffba2ef892272c829391ab3f5056e79c4411cbe67eadc8393cef9bbfb38308a7fb200f16ed8bc9596f484bacfe16e6b19a7013332ac41a06c9fd070efdf17072d91ff7c737a371ff72dc87d344755429f256e63464d860f1d44ae7a773d581ee546890a36cc9d7f71fb618a63dc0331431709b40968225e0396e1b9cb65f772b95fb3f76a523badcb75e490dc25da93d89b7735d7d74d757c97e3ffd85aa5df1e1f7d7d797a3c923f96017bb587e1f60fed3fd3f9843ef78f60b5f081813ddda119691377bfe0e27de91c6dfd3c59da916908bfb0f396e9e8004cb7ec4a5c4fd901032bceca4e40b8924a37f5c05af09fd827079865f5804f28430653d1f2613dec75cf190e78cc2e072fcb46513065428bd6f44e1460306235944b3901ea5fbe3315293cb77c7888d17e9fd07c1613026efaf9f8f93019e7946129a6273ff8cdb7fdc01364df3dfab788f5aecb2740e2b16a938f09a0ec454373341cbd928164bbe679d3bad1acb3ae5ba6fb56a351c9e018b02e3324563b7778ee339b758f4a508b7efaf84872489b95436895296d9fa14dbd859640927d12d518ae8971d3269bb6ecdae35ceff32cb03a6eda1352bcfe67fae63f33bac5fd41b356b38f05adebb73e75404314fe9e9ad01d85b05c6f5e537e3fecd0f93d1ed55fff23ba3773c431fd5cdbd8e65fb2ed9eb59365def507f3a8fb3fae88d327d124c719716cdf91eaedd26e708a08f42fbfc157088bbff0c72fb58c415b5a3a1db6ab88fe3ef637991a88cefbc0ce7c497217e3eb8cf73460f65e033e1b8a1c9137dc2737a03a7e641d32b3d9eb76ad06ac2e949cb73dd0e2ee1bbdbdd5dfabf20a878d1fc2f29ea1288059d058676acb87fb0d5327a07a7bb36f982c2f6df0ae1fa577c83559401c922c1b0158959f8dc97d2e71af263efd8aae7d3ef13fd5851f87ef917642a01e0, 0x789c7d524b6ec23010dd47ca1d66d74d8308a0b4205411028b2c6a10a0eedd640aa6891dd90e2abb9ea257a8b84673b14e1a4020b595257fde1b8fdfbcf158a0048dd567d9729d664c1006b0da08d47a0f51561d14846cb2884316b2d59485310b61681b7e640a4cc48b4854decad70fae33953bb5af0e9421e73a15e007c0775a64d069fb7d68f7073ddf75aa77e253dc5ddf769d2821fc0a1bad732eb2161d5c67f6bc454b0193d972194f1727b96325b7aad4c0b8b428b990fcf644cdb17cf36c0985ae0e05d7a8214303a93286c41b488497a231aa34a4916e130b9d00c21fbde686268b50645cd8b3371ecc37caaa441502218a598345a86d2d995baa0ae831235294091ed9a7665dc4e366c3cabc3a680511e3f3e52973a4c82e9e618ed29e0bf03cefb4adc7ff4da923421262ac48e0914bbe467d9164851999d7ee7620e8c0dd7d17ee03f8fa20a007817f04eab869ed3845feda6118d6ac5583bffaef3acbd77d51ff202e532dc8d58d482e6bf806c9aab52d, 2, 'INBOX.Sent', '<000e01d4f43a$c6ccad50$546607f0$@specificom.mg>', 'html', 1, 0, 0, 0, 0, 0, 'EDIT'), (114, 2, NULL, '2019-11-04 05:51:37', NULL, 'dev@specificom.mg', 'fahernatt@gmail.com', 'dev@specificom.mg', 'Test d\'accusé', NULL, NULL, 0x789c030000000001, 0x789c73cacfcbca2f2dd2e1e5e2e5724e2d29495548cd4dcccc5128000a2a94a41697a41629e4a827262797161f5ea99092aa50949a9c5a5092999fa707d6925f94929998939a9b9a57a20300e7e31a53, 3, 'INBOX.Sent', '<416d99ea9eec556901bfaea8ee824442@specificom.mg>', 'text', 1, 0, 0, 0, 0, 0, 'EDIT'), (115, 2, NULL, '2019-11-05 17:05:14', NULL, 'Super Admin<superadmin@specificom.mg>', 'fahernatt@gmail.com', 'contact@specificom.mg', 'Premier test', NULL, NULL, 0x789c73cacfcbca2f2dd2b1492a52d0b7e3e582d1cef94529998939a9b9a979253a00d6a50b77, 0x789c73cacfcbca2f2dd2e1e5e2e572ce2f4ac94ccc49cd4dcd2bd101006811083d, 0, '', '5dc1819a5bc54', 'html', 1, 0, 0, 0, 0, 0, 'EDIT'); INSERT INTO `mail` (`id`, `mail_classement_id`, `old_mail_classement_id`, `created_at`, `date_sent`, `sender_email`, `dest_email`, `email_owner`, `object`, `cc`, `cci`, `text_html`, `text_plain`, `remote_id`, `remote_mail_box_name`, `uniq_id`, `type`, `is_read`, `is_answerd`, `is_deleted`, `is_draft`, `is_favorite`, `is_needing_accused`, `mailing_stat`) VALUES (116, 2, NULL, '2019-11-05 17:17:13', NULL, 'Contact<contact@specificom.mg>', 'fahernatt@gmail.com', 'contact@specificom.mg', 'Deuxieme test', 'dev@specificom.mg;contact@specificom.mg', NULL, 0x789c73cacfcbca2f2dd2b1492a52d0b7e3e582d1cef94529998939a9b9a979253a00d6a50b77, 0x789c73cacfcbca2f2dd2e1e5e2e572ce2f4ac94ccc49cd4dcd2bd101006811083d, 0, '', '5dc184694c497', 'html', 1, 0, 0, 0, 0, 0, 'EDIT'), (117, 1, NULL, '2019-11-05 14:18:40', NULL, 'Contact <contact@specificom.mg>', 'fahernatt@gmail.com', 'contact@specificom.mg', 'Deuxieme test', 'dev@specificom.mg, contact@specificom.mg', NULL, 0x789c6d8d4f4f834010c5ef267e8771cf8591f422ba702834d1a46a63b6518fdb32ca1ad8adcb20f4dbcb1f4d3c789a9937eff79ebcc81f33f5ba5d43c97505dbdd6a73978108109f971962ae7278b955f71b88c24b505edbc6b071565788eb0701a2643e5e23765d1776cbd0f977544fd88f59d108ffac01ff21c3820b91caa9afaf2bdb24ffa444711ccff068255da4b226d6303a03fa6ccd57223267992c07ea74240187f94a0453cf3892377028b56f889396df822b01984a365c519a53db1baa09981a96388b12e79ebd2b4ee9cad90fd7fa85dcfb013b3ffb9d99f385d1d5c05a5e489cbc726a1b9edf5f916dca, 0x789c73cacfcbca2f2dd2e1e5e2e572ce2f4ac94ccc49cd4dcd2b010b0000897b086b, 9, 'INBOX', '<5dc184c04df90@specificom.mg>', 'html', 0, 0, 0, 0, 0, 0, 'EDIT'), (118, 1, NULL, '2019-11-05 14:18:40', NULL, 'Contact <contact@specificom.mg>', 'fahernatt@gmail.com', 'dev@specificom.mg', 'Deuxieme test', 'dev@specificom.mg, contact@specificom.mg', NULL, 0x789c6d8d4f4f834010c5ef267e8771cf8591f422ba702834d1a46a63b6518fdb32ca1ad8adcb20f4dbcb1f4d3c789a9937eff79ebcc81f33f5ba5d43c97505dbdd6a73978108109f971962ae7278b955f71b88c24b505edbc6b071565788eb0701a2643e5e23765d1776cbd0f977544fd88f59d108ffac01ff21c3820b91caa9afaf2bdb24ffa444711ccff068255da4b226d6303a03fa6ccd57223267992c07ea74240187f94a0453cf3892377028b56f889396df822b01984a365c519a53db1baa09981a96388b12e79ebd2b4ee9cad90fd7fa85dcfb013b3ffb9d99f385d1d5c05a5e489cbc726a1b9edf5f916dca, 0x789c73cacfcbca2f2dd2e1e5e2e572ce2f4ac94ccc49cd4dcd2b010b0000897b086b, 271, 'INBOX', '<5dc184c04df90@specificom.mg>', 'html', 1, 0, 0, 0, 0, 0, 'EDIT'), (119, 3, NULL, '2019-11-07 08:49:18', NULL, 'Nantenaina Fahendrena<dev@specificom.mg>', NULL, 'dev@specificom.mg', '', '', '', 0x789cb329b0b3492ad2b753009336fa0576cef94529998939a9b9a979253a4051057d3b5e2e5d62014c43496a8e82958281b18982b985829199a18281254c2a37311324979698915a94975852e2900e1201003d8b22bd, 0x789ce3e552e0e572ce2f4ac94ccc49cd4dcd2bd1e1e5e2e5d22516801497a4e628582918189b28985b281899192a1858828473133341e2698919a945798925250ee920110027bd195c, 0, '', '5dc3b05ee738a', 'html', 0, 0, 0, 0, 0, 0, 'EDIT'), (120, 2, NULL, '2019-11-07 08:50:09', NULL, 'Contact<contact@specificom.mg>', 'dev@specificom.mg', 'contact@specificom.mg', 'Test de spam', NULL, NULL, 0x789cb329b073cacfcbca2f2dd2b1492a52d0b7e3e582d1cea9c9990a29a965458999250a6a404e51b2754951aa42699e427141622e86f2fca294ccc49cd4dcd4bc1298985a5e527181b58d7e01900d00c8601fbe, 0x789c73cacfcbca2f2dd2e1e5e2e5724e4dce5448492d2b4acc2c515003728a92ad4b8a52154af3148a0b1273c14af28b52321373527353f34a78b9d4f2928a0bac79b900048515aa, 0, '', '5dc3b091ac984', 'html', 1, 0, 0, 0, 0, 0, 'EDIT'), (121, 4, NULL, '2019-11-07 07:06:00', NULL, 'Contact <contact@specificom.mg>', 'dev@specificom.mg', 'dev@specificom.mg', 'Test de spam', NULL, NULL, 0x789c6d8e414f83401085ef26fe87710f3d0923e9c5da8543a18926551bb3463d6e61b46b601797a1b4ff5e283631c6d3cc9bbcefbd9117d963aaded64bd87255c2fa79b1ba4b4104882fd314315319bcdeaafb1544e11528af6d63d838ab4bc4e58300b165ae6f10bbae0bbb69e8fc07aa27dc0f59d100ffac01ff22c3820b91c863dfbe2a6d13ff9312cd66b3111eaca48b4456c41a0667405fadd9c5227596c972a00e3509c847150ba63de340ce21df6adf10c72dbf07d70230916cb8a44451c3501034b5ae248e378963cdc6158744d6c9c2d94fd7fa4bb9f13d787e769a29e5a667775e1b86492f7c3e674fd0da31eeafddf9c2e892aafeb7d36d62374d3d97580f3e1c0b8f1ff7fa1b0b298155, 0x789c73cacfcbca2f2dd2e1e5e2e5724e4dce5448492d2b4acc2c515003728a92ad4b8a52154af3148a0b1273c14af28b52321373527353f34a78b9d4f2928a0bac41e2002ffd15c1, 4, 'INBOX.spam', '<5dc3c25835024@specificom.mg>', 'html', 0, 0, 0, 0, 0, 0, 'EDIT'), (122, 3, NULL, '2019-11-08 10:29:13', NULL, 'Nantenaina Fahendrena<dev@specificom.mg>', '', 'dev@specificom.mg', '', NULL, NULL, 0x789ced5dfd72db3612ffdb9de93ba0cc5dd5ce581fa42cdb9163f59cd8ee652e497bf9e84daf93f1402464b12609861f76dc4e67ee35eebf7b967b947b925b80a4c40f9022254a966d6ad25a12c005b0bbd8fd6101ac9eb9dead4190776b9363c9239fbdaeeabad2e8996b630bf1b26369422dafedeabf91a1a2d89f8fa0b4cb8a479d31d56ed1ef5f7e8110b2b1a6e9d665dba3f610f5d057ba6953c7c3967794281e53cfa366518da50998d8b9d4ad61b6e046d7bce910c9bdde9f3365ed1b32bed2bd361b391f621b6bbffaae9757dd744b570d2907cc3329f5a6d0ff21820a3a3674ec122df5cc1ff05fc7c36383bc806788e521ddbc0cd93ba68e461cd1b035ddb50d7c3b446383aa579962ea7b866e9121b2a845040d624e5fa50675864ffa87cab9721616c1ffed5d3495732b4c15284a17cc7505293228cb975f4472890a6f887e39f58616754c6c445f4eb0a91bb7c3ef0985ca7817b9c4d1275008cde0e256e4bd742b6cbced69d00ada1bf0e2458d7cf9853d6fe6e9fec1f383fd5433fb85cdf089b1b819d4195f3e8749c3793ac6ead5a5437d4b1ba2279aac29da5e2415f8f71793683a46d4326e91ab3a8458a03a1afac6c49fdb8146ef1df6eccfdf7229c303bf476fb806fda21ad8758fa5d758b79836c11fe2481f7791a745452a310ce9236b2ad4b1c28982c29162dfa3f142fe3c74794ed7b5893a864119a402f58941b13734c8c41394cda420f7edcfd9f2b820e403518d688e88a748dab6c803110d3eed61e25e5a4315e62671d255fe40622e2822363cdd7a26f44434a24aac8fc381600851058777245b8329371271a92fe2d2a1a8897bc6255924e9526c4219859aea5a6a5245dd1558f78808626e24a232c6163704711ad1ab708246afc8e0a5edc0acc14c6372616bc28950bab1b82e316e5f0063d3cd25a5219cdb6981886a45dc0cec38fc596ca0077bcc4023e65d1aebdc58e7c63a6f1f971aebfca0ac3337ceb03a65ebd611bce3d61671bbc04c2a330c52b8963a967a12625636243efb0c4b5b75f639641507ed28be3693a2c571c029261658177fd506fdc540bddd86e6779e796c85ccdec15b87ff85375af446d8b94bbe0839969e9cf3d732dd4dba956447f77b3029a4a007f1feedc4ba18f432a266d2ebd8b8e774e77535fd5a5c79d676b87c85a68f120bfde00beaea9e4eada1430cece9d724463ae0511e0b64010f046289a8a5c69b1a7238ea5c792867bde7bdc1ac816be278ba8a8dd0ebc068a404a91853d4801b679a3ed320ce421416bc07e71515962532eb47dc68c6441b3c6f47b532fe3115e249985e51f8275cd4fe441c0d5b78f77b62916bbceb62cb6df3f5ad34fa392766242bac57d447d821c8212ad1af4156c89bea2e2226d60d34262af65d826ea1920b5d241af26df0160ea2be835815f680a1bb5e073dc368ea90c9b1f4cbbbbffef08fb3d7272f5f7d9cf1225cbf8ff9eb281e6d1853433b9260063b97c43b962ec606b6aea411fac126d6b32e1ec5bba35bac270e1a3bf406c6d609a35de93f7682d35d10d5822fa2891f7d8ca91e7c4a68267c66428e7d0ea86d70ca65f4be821d5a750ea69d6ac19c0b3cd5b1a4f4a4d1d7d6d8b58f528c9e1bdc5226a5e2684403ca8e291c5630bfc06c0df2fa9ad68b5c5a996f6a1e54ceb884ddc90a2d82d665e476d8cbb45ccd7abe34f125119acf85b4c0d0b1102b364028d059473d96a69e670fbb5dc097d89852d7ebb2f1e8135da566c7bcec62cdd4adaece9aec6a043a62b85d45f9ce399e5273aea7a121dde3732d64310b204aa83bca188648ee395f6764bd93f0530c374915792f22b822508a8cce2ca4d90e6db1427ae3dee008899cc8dc7b445c520ed32eac5819f3f431c9230e1b671ab72f52b88a3a778e5532a6f4aa40ed8a29d6a4797b399ad71fcc358fbd2f50bc9d5cdddbc953bf22eeee0d56e7eefb1bdd0305bc6be60eb68eb9f2411ddccd439b25591b01b02733be848621586fcb87c09d68f273e87014dbe8787276f2e2ece4e488e3518da8d4c11c87b0157216b025030647813d6a3b58d37d77d867d6f57ffffa77dba4bfb50545d1069ca0a8609b268b117fd2012b71240a04e12d6178b14e79675d7ef4b5d8e6a5c161710322ea62d262ba4b4394e5e08ea06b827e09305eada071ebd1f9e6b0f8622eeef77a6557ad15c0dbfaedfb7e8e7d57f8662e8ac74b4416fedeaff0727448598312cd57934fcf95f315f465a950893824126ce5078147ceb2f00b270aa51c657715529191d0cd4df80bca88397acfe2081e316de03a4113823ddf212ea2de1406e15bfa279f4463018fa33211b91df40ed4104df135415c47dddde00117b1b048f814eb0c8ba160a8ff72c283251a3108b4e281c69388da2e2fb98126d018103d93b44791436c876abeca2a13b3837e863a2a1f886e188800a77801c22e7fdc36a019d279d685113d9680c73699d4c26846d908e4dd073af68a97a12bc64052cbd574859a207159c3b253c9b6e49fb0e385e781ddd0d06b62f9e825d813573c0d77c48053fcddaa40ae7ff8c0e356657163011f04542b44c3e40361346c0d5cca67541eaf764493ae529469a7dec05e31b99a40e2410e4894957870ef200f24ce7b5ad7b2709dc2a9290a58ac763b459a5730be5a86b85377aca49860fe33362045e246788fef8d712d42e35bc4752b6be8e70fe7ead2e2c29c9053bebaed2c94c86c9d9f0b5a6a69e6a108be0246f853bfa30cb647117223523b0541a982c6d61bf85ad6b9cb078d775f3cc98ac7b4730f3dfd61e3e91b4fbf164f9f8ed6e86e3258a362ebeb27fda7471eba241ed23d7e33647bcc7ee3ff1bff1f9534feff51f9ff07e7e49f364ebe71f26b71f2be651037d83d619b36de94a0af3ff9d43b7ace8f91a21f1d72ad53df453f11c705d71f14a2896f71240003f56eb7c7d4373ebff1f951c923f0f9c501fd0d1ca159fed8cbdd9d72b96ffba6c98f351d780d0e978517ce14fb3372a9a16be889ca5f47d125a9fee11c5e0cf6fbe943ae2b6dad864d1c30a21b3867b501859b7dd3ecfaaf557b6bdde9af6b3b9f9f684f17dfc166fe54199d8ca9cf0fc620154f265f13acfa1e81114251dac26f6a0f3e5f47966374794c7527072a46a794436ab6be437c7d870d44aee119f73bf41ebb1ebb19e602f066e7a8be431f0068f3f5200a8f3bb14ac615c25c90ec56974b8cc96e70bfeb1a1b3e3b6ae54ed9ee1b064e50e7165107deaa3e7c30613c1e81264c6ab1666f746f1a3cc9ba8d55cfedacf534c6569be8e4c81ea4c19ed936b914afb6eaf0ecdd9dfdaa80beab18863aa23ffd5e4ef46790b8a85510fc112c0f96da35eb676fbdad7ff47289d1f70fab8f7e9b259e77356f05892f6da7ab9c8f2d3e447d7e78ae9c3d9716dfb05882e896989155d0f24e0630efd465588b09d5a4b479b7fa94fd5e7c1559a8b5a567ef6a8cae07b4aca2fb837248e671e97e0513bc5d277097bbbd5c5f90b75a78b75260f79717af5e9ebd79ffaef3e287d73f9ebcf9f9e2cdc9ebb38fcfc60ecce10ce559e593d3d3b767efde7d0c561aabf56020ef7506fb079dc3a7724f1861aef96e7a8487cacbd7d43596996cb6efb8bfb7ed1ba68be7ea81b2fade690d37a2a36bbba143f2028a1df0435df356a59309a9cb7de5ddab3b885dab63ef03e755ef5d5a31202d6335372dd22d4921d0cf3be02e96d6e3bdf5fc20c092526ea1b07d619f92a1ee7524049b73f3ececece0f4b4d4499fb48fd9583ab079fec5e4a35570c229bb3c3aa12c0d02bb3b6ae8d6150f82873e83a7399d84e60b8171b1d0c4a16606c9b047826c789d0c7a7966cf3dd22fe73fbcfdc7c9dbd3791eaf449a47414a8673eadc6047639dc3d0b64e2c8d27f19a93fcf0e6dd87e7ef5ebc7df9fc2c8f6c22e519e344b69d0f96eb8f5dd5d1c761d287bbb8029b2515a3932092a0307b20aa3daf3aafc7121622c2c449a9c7b316b26f4ec904fb8687fe492dc2f3c0f35742fb787c9c954b48c31e6e07bf1fc05d0bd3bb7992c802d3304aa6930c677a388360799b99e689548729c897b90b8a5092b893f98e7d3b8bf2b6f694d6e8bfff09b996aad6153c9d4b51f06d8a7955a30f59720b48e63fc41f64b081e3852eb66d034c18bf85de7d0d80e0e225e31f9bdcddfe45bf6b52cd3788dbfde0122756a4528774affbf2858a4d1b03e3dd0055b85d8bdcb0cbe4d40180c195a8cbeec25f408b1772c7b62e4375090b8f25988f2a99524363569d17cdd227830eecf50a861f4e8ff22565653b9f1e7934939f2a4c1076873f777eb492f3a32554af35ce91a00191560725a5e64a0e4fcb500fbad7629e49347601932b3a5231c55566d25419051e6ec8322a3808d41fbde0a247ef8213fee166712e855c2d5e545a37f723d92abd46b6fc411b8dce0931005f109e42032612fb4f0f4e6b0617373914e28939a25c1eaca689af8203a0b33c2018012c31822a884ed0cd34d8d6e61bcf8c04540eb69f79f20e6c71e0c537a63be86f84d82c29292cde584d1c6c6487c94add29f50d8da5fa9860dd61a9e8a7d4f1d03718d029eba0a79b846d9c03450734956d97632b4a74ea2279c07a4e2dcdfd967704078751813b9d42e68cf3841dbc987410406383332ee0cc2e727d75ca328cb0d14a6fa137e83538123061c4a037bb0133d02574d30316dcb24789a5c250d9386c42ed2095c935cfc7c55900288d8fc8861a21c6ccedf1c6269ac87d64db58da8570bd7bbf821f49f990c12a3e0495844541496907b22664c64e7c7033044bb5160a5705ad287b1de279c5790ebb1ee2d701c4962acee94a502ecff015106c65193c7b6a86e242e8e552dfeefc6a5f468bd09622f75b3326ca4fe55615eca5c87b528643877306f572b8531b3013482cdd9d404c059da922aab843594652f9825a1124348ee80139a2591ca615cb2dc6432f47b39f162bc84ed9625193304ad10aa214ad743aced9fc60e6ece95a92712a3526e36c8db8004c10c03cc62264dd7d5cf031fd2b8e8a34deba94b74ee9768f59fdbabc7463fa1bd37f47a69f2d881bcbbf19cbbfd8aaf01540882965dec33b5f006c1dfeef85bc5937fe5fc94f570cc9565a4ea7bd689d31d9bbf6d0952a5774e791561e0c5ac94998f890135b8cb31828d4cae2458c0eba9f3615dc4ae44e02fe54cd106421d5e207391c412bc6ab399906951430e79ea192e05538a2c2c8e9e2c86abe99c9dd4ac889a0cea8151a18b9d7125729f16cc63889bbded8a352541b7bd4d8a347618f16d2590b72fde4a8545bfab84d58b7086f2d3a561db379c9c365ec605f70a4aab271db18505ddc95791b22b82a250e040f328ba5c2e854a281ec0ef5dfb96423338af28c75f1067601fd723be009221b3d33f4c9b9600c080e0cc5581c1d630d7e06ab44af17988ab2b50a5430ac50a824a99fc99a6d5b29455324463c2bc0b87bde0af5685c700173b6d00557106cb35f55fac7e34a4734534cde8499aa8c6eb2edd5b427766962bb412d77895a6a842ab92bc8ef41cad51cc93d042a4c952fc867a86824d10afba5ce8270fbf698055e61c3e865e5439da5a857d0997ae21031820d1c2a60ce16c2a1b29e3a14ee4248f40071cfa3c43615508d4b596eb2edc035abe217b0c78c34b883bd0dc193a84129bbebbc0a3ad9ba7532f334fc2742e11f06a336f674cf20a59dcbddce265e5842b2e166cabe22dee84d44cef61581c0179ced4ab4b75a168562e20b1ad85654caaee45e44091ee2a894258d8d27904d1dfae0539f7f17d8b8974007a4e5f891a5b3289b50c7d2041b6e59f66d12c4ce0ebeec9739559078fa1ea054062aa9017007f92e022c185dc76668cf03cce3dbecadc630234f55a952d014eb9681599703b4e04788756b421d932b6069dc7317522c6b3e6a95ad282b4731f5052d6cb58d882ef137464278c478c1ed9204e1fb613f5ee9b0ba0cac47a4e9cc665cb15522980f6e36c2f52facb97c9b1993b8edd07417a4ce93ed6e97edd8861540688f575c02e49c39ddf81a60db63980d7e6cf063855ad583a08fc01d3c6838b93d1b5e11cc7a18c1a1c63134ab86c7b76a786cae416a960af9edadbc5460b9e79a3c500ba8cbad59eec5d613322187a4d71aad371b4b252142d77cd395af1569544d7af1e1aef3ee5896e9e99f6e0c8557e88de74f2f9c98e9df168afbe5120620c18d16cba1d9422bf02399eda59c014af2a8250f5a157894e454396b1bcb570c9654cd0380a257c906a20953ce00571864226b586546e51faacfe9ff0abd2e6e6b656b1e180265594350ab11587c79296c73596350610350d91fc0c4abb21123b2001b3300ab4efe322672e9095f6a422d9a282527f86a93bbccc4cebd8b17efc45c8ff24f21c45f55b4b251ca0c7b1aa52ceeeb82560a961bebf73dfd7bee7be6078e4a4bb5821f920fe4c60f89f8d34cf93bf4438d56e6f0a7d1ca462b1bad4c54da22ad5cb29777048fd891f9ebf419b1fa42f0257e91a515bf2ff8ca57750da3ef1d6c696417b9d872dbc1d5c1f865801e2ac8e621fef5b37b1ceebd87a9e19bb4ff25a9df43d96ecbd5adfb95ce5ef45d7c5365beb522f88d21746669f0f5ff01e6e70dfe, 0x789ced1a6b6fdb36f07303e43fdcda2dd880c4889c380f05439736e95060698b252d5014414149278b0b25aa2415c72bfadf7794adc496e957e226d966c116c9bbe31d79bc0749bb11c8a80b5f575700206751c4b3f68691b90f9bf0034f73a90ccbccc1103a90c6c87412c5ad19a44cb579e68f223a3c32890fdee6e64f23b88d0e0617dc6c18bc321b9aff8d1b2cfaabd0661c79aa6726ed738e6546e4a99426a1f1fb40049c09ce3446b53edfe8db302c10f892fa606680a7edbe7a03a92254ae69475ce782757d08840c2f46d0b2308267e843263374086425ff500aa9fc675b7bcd57cde33e8adef93a24de5882a449a83aa2375dd28e0f4d2fbf2248b52e15b283bc9d183f932a65a202c62ce5a2ebff8e9288d93a68543c2624896193a578db752976be1b494f0a6cb74af43421ab2bf98d98fd9ddd17bb3b35313b13c5349b33898146d07e414e53ea3460e1455bc9228b7c7816795133daae56853ebfa518710632135dd0a142ccc87422f83965571b3d8bdededbccaf7e2957993a7cad2aa5057d0a05d3fad7a7278c67d69aa840f5f47c1d4c54a14214e2e9b915d5b7b1898e02fd99b2c2c84164d99f867cc357e7180634298173708f8564c617181b07ee7a15bcadfc6a143fb810deae8ba2f211b78bd4638bd772f128dd9e1cb79df921f926aa3ac937706ba1e952c3fea357c2a68b474564c7e8b71c53a808543990510a6bdce0d2d2964b4b7b2e11ff322d79ae959e494d306250098f6a4e550dd711dd2b2660d348c52560591908067954cf4407ad9e2ae0d5e3c0b5c01161de44694e479859d8a02d596d7f26c5d6c50daf86d3b7eb0be2a2aab4d98be3544c0fd0ad6d1ba0c1669765745e46e765747e7c5a5a46e7ff5474eeefe557579ed0a7fc0ebcfaefaa185bde54066ad3ab1f65014c21280c915fd270814e7c1a30655c4080212b344297883445293afc15393984a2039a024b623b08ae4d03e06d4eb964a033cf6c3f0581921d3a4c34e618d5c89c6ecaf9a6bf96053a3f982a79a83edc186531917a52abde1c693f14c0017181fe77b00f5c73539a7a0703aae21d98cda0f4a98089e634a1757beb9eea39f5fe0bf3dcdb55ef4ffc990d740653ca94062146660a851aa44968175764fc4b8110f62fc4348686cb4c37e054a60809bb444a69ac8d7abdd741838db2fd5e765368433223fad771197b231448524c2289accf6dbdc47448048569b0fb73a084a63057322a424b8c69036c780f5906da702180b6fea64400d365f75c90185c86e6e1d6abde6a4670825901af6995f52d593d92bce290e5a47bcc9961c1237103c74017033e4b50578e5feeb9bc5dbbd50fbae035a9f21d45cf35d731c6323fa385807fdc6a345bf7ad9a07cef34b7f1d853d80e9d5932f25fca1dc4b7975edd9d6fe8181361aa0cc6a7f1a597ab1eb597af13c1d975ebc40709109d4bdddaedd64d3ee17d6be14d21cbc28ef25e09dc24b2e0b0d1f681f4ebedd43425c64a5ab33c14d77e9d4ae67e9d4e3c8869b135a838d81babb7a87b3f61347affb38822d624ea3b37bd839cdbebab5d661208bf2f84d3b87385e431616060f6ec9ed01c67f24cb289a486dc0fe72c09900bcc4cce8e770c6b4b177c19a62adbdea780eef29b60a19124dff46c212890b60a516eccdb04611aff7ee882f9928ec6d884eecb98881365275412aaa8605355254609044a432b3623bdc24bd9ef68e8585463716a0c7efe981f359ad93e84e46fda0adb9943c450b7750d59c4eb3204ddc31443e66258ca4c77afb36804f2fff787dfce6ecb4f1f2edc9bbc3371f3fbf393c393e1f4f767874f4e7f1e9e9f98dcf5d3f2d6fbbd1dad96deced7b9b8b18da74c06cfb8efb818ddf2dde036c06cd4c054c34b647e372778dfd53ab47f68e3f96cade321869ff6f7051ee220c6541fb9f11fbff9d9885184879019c1222c44aa6030c2c71822c2a7f841d80bf92aac354649932eac39118bdcf7411e850f100e718e304650c95bda27c5fbf56574a95fd03dd0cc72a, 0, '', '5dc519490bba3', 'html', 0, 0, 0, 0, 0, 0, 'EDIT'), (123, 9, NULL, '2019-11-14 13:27:12', NULL, '', NULL, '', 'Mailing My Caffè', NULL, NULL, 0x789ced5dfd6ee33612ff3b05fa0eacf60e6e81f843729c649dc4bdec6ed25b5cb7eded470fbd6211d0121dab91445592934d8b02f71af75fffbdd7e8bdc93dc90d29c9d607f565cb899295b16d6c931a9233c3991f87e4f8d8f56e0d82bc5b9b9c481ef9e0f555d79526c7ae8d2dc4cb4ea419b5bcaeabff42c68a627f3882d23e2b9ef4a654bb45bf7efa0942c8c69aa65b975d8fda6334409fe9a64d1d0f5bde51ac784a3d8f9a7935d6266062e752b7c6e9821b5df3e663240f067f4e95756fc8f44af7ba6ce47c885dacfdb470bdaceaa65bba6a40d9679e49a93787fe8f1154d0b1a163976889677e83ff7a1e9e1ae4393c432c0fe9e665c0de297534e28886ade9ae6de0db319a1a54bd4a15d38567e81619238b5a44d020e6f4556a5067fc6478a89c2b674111fcdfde457339b3c25c81a264c14a57902283b27cfa492897b0f086e897736f6c51c7c446f8e50c9bba713bfe8a50a88c77914b1c7d0685d00cce6f45de4bb6c2c6db9dfbada0bd112f2e6ae4d34fec55334ff70f9e1dec279ad9cf6d864f8ce266506f7af90c260de7e914ab57970e5d58da183dd1644dd1f642a9c0bfbf9844d331a296718b5cd521c402d5d1d0e726fed0f5357aef70607ff8824b191ef8357cc335e847d5c0ae7b22bdc2bac5b409fe10477abf8b3c2d2c52896148ef5953818ee54e14148c142f3c1a2de4cf439757745d9ba8531894412a509f19147b6383cc3c41d9520af2d0fe902e8f0a423e10d508e788788a246d8b3c12d1e0d31e26eea53556616e122759e53724e6822262c3d3c6336120a21156627d1c8f0443082b38bc23e91a4cb991884b4311970e454d3c302ec922499762134a29d45cd712932aecaec0ba8744107323219529b6b82188d2085fb913347c85062f6907960da61a93735b134e84d28d45758971fb02189b6c2e2e0de1dc4e0a44542be4a66fc7e14fb1811eed31038d987769ad736b9d5bebdc3c2eb5d6f95159676e9c6175cad6ad1378c7ad2de2768199546618a4602d75220d24c4ac6c407cf91996b6eaf273c02a0eda51746d26858b639f534c2cb02efeac0bfa8b817ab70bcdef1c7b6c85ccdec15b87ff85375af846d8b94bbe0839919e9cf3d73add8dbb957847f707302924bf07d1feed44bae8f732a466d2ebc8b85774577535fd5a5c79d976b07c85a68f620b7dff0beaea9e4eadb1430cece9d72442dae751160b64010f046209a925c69b187230ea4c792867836783d1b2816be278ba8a8dc0ebc068a418a90853549f1b679abed420ce421414bc05e715169625b2ec47d4684644eb3f6f87b552fe3111e289995e51f82758d47e4f1c0d5b78f72b62916bbceb62cbedf2f5ad34f9212366242bac577481b043904354a25f83ac9037d75d444cac1b684a54bc7009ba854a2e749168686183b770105d388855610f18baebf5d031467387cc4ea41fdffcf5db7f9cbd3a7df9f5fb252f82f5fb94bf8ea2d1862935b4230966b07349bc13e9626a60eb4a9aa06f6d627d38eee349b43fbac5bae2a0a9436f6070bd20dc95fc63c758dd0759157c11cefcf06344f7e0534c35e1339372e4b34fed0ee75c4af12b18a24d2761d2abe64c3adf559d48ca409afcf17b82c92b6b5bca9e541c896830e9f10443f22717d8ac91a89f497dc8a493faa6e601658c49d89db4b0424c5d465e878354cbd5cce64b135f12a1dd2ca405168ec556b1010281ce3aea8934f73c7bdcef03b0c4c69cba5e9f8d479fe92a357be6651f6ba66ef575d6645f23d011c3ed2bca97cec99c9a2bfd0c2ce81e9f63018b59e45042fd49ca208472cff83a25eb9d9883628049aac87b11c10d1152686c96b1cc6e60841532980e464748e43d566e23e4927298f45df9ca98a58f711e71bcb8d4b87d91c255d4b973ac9229a557396a974fb126cddbcbd0bce168a579ec7d8ee2ed64eade4e96fae571776fb43977dfdee81e28e07d3377d438e6ca077570370b6696646d88bc9e2cf91218067fa12d1f0277c2c9cf21c3516487e3c9d9e9f3b3d3d3230e4435a2520773fcc196c669a4168f141cf9f6a8eb604d5fb8e321b3aefffbd7bfbb26fda52b280a77de044539fb336970f8bd0e1889435020086f09c38975ca3bedf2c3afc5362f090af31b1051179316d35d1ba254873a826e09fa24c076b501c5c6a3f1bbc3dec51cdc1f0cca2e532b80b6eddbf5fd0cbbaef0dd5b140d90882cfb835fd165e890b205255aad1e9f9e2be71be8cb5ab111710cc4dfbbf7238d9c65c1174e183b394a6f23244221817b9bf117941173f296c50d3c62dac0758266047b0b87b8887a7318c4c2d27f5e90702ce069542622b787de801aa239be2688eba8bbeb3fe0221607099e629d6141130cf55fce787444230681563cd0781252dbe52537d0049a02926792f6287288ed506da1b2cac4eca11fa08eca07a21b0622c0295e80b0cb1fb70d6886f48efb30a28f25c0d124939a19bd281b6ebcffc0c65efed27383984762799aac5013042e6b50762ad994eca374bcf0dcb7171a7a45ac057a0976c4154fbf1d31c0147fb729701b1e3ee21855599c98c10301c50a512ff94018f5da0287b29994c5a71dd164ab144ddaa93780974fae26507890010a65251ac43bc80285ab9ed6b5fcdba6706a8af6e5abdd4e9ee6e58caf9621eed41d13c92798fd8c0dc890b821bee39b5f5c8bd0f41671dd4a1bf8d5c399ba545c98115aca56b79d42892cd7f34290524b138f45e81570c19f863d65d41c25c88c3aede4049e721adb6e706b5da72e1fb45e3d7f82e58f69e7017af8c3d6c3b71e7e2b1e3e1995d1dd785046c556c74397c443bac7af7b34c7dcb73ebf1ac1d6e79768acf5f94df6f98fceb13f6d1d7bebd8b7e2d81796415c7f67846dc8787382a467fc3428face21d73a5db8e87be2b8e0e925345b58dce7c3f0bcdbe618f7d6c35723d87af8128d35d3c36787eaefe010ccfa8757eee7acca43dafd8c7face9a8aa7f2c2cb823a6d81f904b0d5d434f54fe3a0aef350d0f572062b43f4c1e4fdd68833468e28011ddf209a92d2bd9f29b76bf7e6b1a5beb1e7d1d1bf1fcec79b2f81eb6e1e7cae4744a17fc280b52f16cf6dfff1cf7e1cba40dbfab7d73b156acc7def268e95e0e404c5e500e8fd95a0df1b51a3610b98667dc2fd15bec7aecca960b209a9d77fa12bd03e4ccd776283896c42a19570873f1b1db562e3166bbfebdab6b6c2cd8912877ce76cd3070823ab7883af0565dc00713c6e31168c2a4166bf646f7e6fe93acdb58f5dcde564f4f34d618c747f5284df3d292c9857c6ad4e1d6fb3b9f55014f57310875447086838c08ce2876812a27802300fd6bed760dd3b7d1b63f7ab9c4e88787d547df6489675d99db40e26bdbe72ae757f30f399f1f9e2b67cfa4fc9b0f6b106c880959170fefa420f14e5d06359f504dca9a75cb4ed91f44d786b9da5a7ad6aecfe47a00ca26fa3e2a462d1f8fbe5730b7cd3a19bbde0de2fa42b4d582b395c2b23f3efffae5d9376fdff49e7ffbeabbd36f7eb8f8e6f4d5d9fbe3a903f336457959f9f4c58bd7676fdebcf757139bf56024eff546fb07bdc3a7f240181faef97e78887dcacbd7d43596166cb94fb8bfd7f40dcee2797aa06cbed759c3ade4f0ea6ce0843c9f620f7c4fdfbc55e96c46ea72595977dc0e2257dcd87bdf61d57b9f550c3e8b2ce65d8bb32157f8875907cfc592fa786f1d3f7870a4142f069a17d22919b4de4606ae1527cfcece0e5ebc28751a8737f3c7ef6b066e36cac0b54a79187fb40a3a78c1ae6fce284b40c06e6f1aba75c583da81a7e099456781e14260562c3473a899c22fec113f015d2f85598eed951ffaf1fcdbd7ff387dfd62953a2b965951900ce19c3a37d8d158e730b4ad134be369b35624df7df3e6ddb337cf5fbf7c7696453696658c7122ddce3bcb5d4c5dd5d1a741ba85fbb8849a2615a1132312a3b07c20acbdaabaaac7720422c2c449a9c71305b26f5e90195e181efa27b5084fbdce5f31ede3916f562e210d7bb8eba7ece74e85e9dd2a2f638e7198c4333806733d9843b0904d4df45876c104d04bddca44284edc497dc7be5dc6703b7b4a67651813d5fa82a733290abe4d30af6a9c214dae8064f643fc4106183852e863db36c088f17be0fd5700052e5e32feb1c9dd1f5e0cfb26d5160671fbef5ce2448a54ea90fef550be50b1696360bcebe309b76f911b769d9b3a002db812f5d96df40b68f142eed9d665a02e41e18904f35125736a68ccaef3a265c662d081bd41cef083e951bea4ac6c57d3238b66fc538509c26ed167ce8f4e7c7e7484eab5c539e23720d26abfa4d45cc9e06919ea7ef73acc3389c62e607245472aa6b8c94c9a2b13dfc38d594e030781faa3e75cf4e88d7ff63ed802cea490a9c545a575733f94ad326865cb1fb4d1e49c1003f005e1492c6022b1ff74ff74a57f959243219e1a23cca6c16a9af8ca3fa6b9ccc48111c012c3af82e80cddccfd0d6bbea5cc4840657f6399a7cfc016075e7ccbb987fe4688cdd280c2b28dd5c4fe1675901ed49dd385a1b1641b33ac3b2cfbfb9c3a1efa1c033e651df47493b02d71a0e880a6b28d706c85a9455d248f58cfa9a5b95ff08e60fff02870a797cb9c6996b0fd17930e02706c70c6f99cd945ee429db31c1ffc04eb6be80d7a058e044c1831e8cdaecf0c7409ddf48005b7ec5162a93054360e9b50db4f2672cd33617116004ae323b2a1468031337b7c67134de43ed26daced42b8debdddc08f247cc868131f824ac222bfa4b403d91232636739b81982c55a0705ab824e98370ef154de3c7bdc00f143fb624b15e57425289765f8720876d20c5e3eb5447101f472e9c2eefd645f86cbd08e220f3b4b26ca4fe54e15eca5c87b528a43872b060d32b8531b3013482cd91d5f4c399da922aaa843594752d982da1024b48ee81139a2651ca613c9eec5432f47cb5ff3cac90bd9615193204ad1f1a3149d6422cce5fc60e6ece956d2602a35a6c1ec4cb8004c10c02ac62264dd435cf031fdcb8f8ab4deba94b74ee8f68059fdbabc746bfa5bd37f4fa69f2d885bcb7f3796bfd8aaf01540802965dec37b5f00340eff0f02de6c1bff6fe4a72b86642b2da7935eb4ce98ec7d7be84a952bbaf3502b0f469df8248c7dc8882d46590c146a657111a3fdee274d05b7129993803f55330429a49aff20872368c3783527d3a2921ce63c3054e2bf7247941b392d8eac669b99ccad848c08ea925aae8191071d719512cfa68c93b8ebad3d2a45b5b547ad3dfa28ec51219dad20d79f1d956a6b1fb709eae6e1ada2c3d4119b173f5cc68ef6f947aa2a1bb73b03aac55d59b52182ab52ec28f028b558ca8d4ec51a48ef50ff9d4b3634a328cb58e76f60e7d02fb7031e2372a767867e762e1803fc03431116878758fd1fa02ad1eb025351b6568e0a0615729524f10355cb6d2b256f8a4488a7051875cf8d508fd605e730a7812eb88260dbfdaad23fdb563aa29960f25d98a9cae826dd5e4d7b629726b65bd4729fa8a546a892b982fc0aa45ccd913c40a0c254f9827c808a461cadb0dfc8cc09b737c72cf00a778c5e363ed4598a7a059da9270e1121d8c2a11ce634100e95f5d481700b21d123c43d1f25b6a9806a5ccab28e3503d76c8a5fc01e33d2e00ef6ee089e840d4ae95de74dd049e3d6c9ccd3f01fe9847f188cdad4d33d8394762ef73b9b786109c9069b29fb8a78a3371639db5704022f38db156b6fb3dc09f9c40b1a682a2a6557722fc2b40e5154ca92be4613c0260e7df0a9cfbff36ddc4ba003d27216a1a5b3289b5027d20c1b6e59f6dd25885d1e7cd92f73aa20f6f40340a90c545203e00e5ab808b060781d9ba13d0f30cfc2666f35861979124a9582a658b70cccba1ca0f93f03ac5b33ea985c014be39efb906259f351ab6c45f938f2a917b4d0681b115ee26f8d84f08871c1ed9218e187613fbed66175e95b8f50d399cdb862ab44301fdc6c04eb5f58732d6c664ca2b643d35d903a4fa3db2cdbd1841540608f375c02649c39bdf33540d363982d7e6cf163855ad583a01f813b78d470b2391b5e21cc7a1cc1a1d631b4ab868f6fd5f0b1b906a95d2a64b7b7f15281e59e6bf3401550973bcbec8b9d2764460ec9a033d96e36964a4284ae2d4c57be56a44935e94587bbcdbb6369a667fcd462ae375e3d5d383193bf1a14f5cb250c408c1b1d9645b38336e0473cdb4b390314e751471e752af028cea972d63692a5182ca99a050045af920d8413a69c01ae30c858d6b0ca8cca3e549fd1ff0d7a9ddfd6c6d6dc3704caba86a05623507c792968735d6350610350d91fc1c4abb21123b200776600369dfc654ce4da13bed4842a9a282527f86693bbccc4cebc8b17edc44a8fb24f21445f55b4b255ca147b5aa5ccef6b412b39cb8dedfb9ee103f73dab0347a5a55ac10fc90772eb8744fc69a7fc3dfaa1562b33f8d36a65ab95ad56c62a35482bd7ece53dc1237664fe3a7946acbe107c895f64e944ef0b7ebd50750da3af1c6c696417b9d872bbfed5c1e8658001cac9e621fecdb3071cee7d80a9e1dbb4ff25a93f40d936e5ead6c34a672ffa2ebaa9b2da5a11fcc6103ab334f8faffcef2f3f6, 0x789ced1aed6edb36f07703e41d6ee9866d406c444e9ca41a862e6dd2a1c0d2164b5aa0288282924e16174ad4482a8e57f45df677afb1bdd88eb295d832633b8ef3b1d5822d92f7491eef8e1f763390510f3eadae0040cea288679d8691b90f1bf0154f73a90ccbcc0f23e8401a23d34914730b4899eaf0cc1f47747964121fbc8d8d6fc6708d2e06a7dc340c9e9b86e67f608345bf15da5c459eea99490792639911792aa549a8ff3e10016782338d518de7337d9b8605029f130f660678da199837902a42e51a76c4752e58cf8740c8f0740c2d0b2378863e643243874256ca0fa590ca7fbcb9db7ad13a18a0e89daf43e25d4990b4085547f4874bd6f1a1e5e5e704a9e6a54276917712e36752a54c54c098a55cf4fc9f5112315b078d8ac78424356cb2166fabaec58eb791f4b5c056bb444f53b2ba925faa79b2bdf36c67bba6667ba29a566b2635d00c3acf28684a9b062c3ced285964910f8f232f6a455bd5acd0e7a71423ce4066a2073a548819b94e04dfa5ecbcd1f7e8addd8dfcfcfb729689e15355293de8432898d63fae1d329e596fa202d5dac93a98a8428528c4da895535f0b18981028391b2c2c86164c94f5dbe94ab730c031a94c06b488f8564c617181b07ee6216bccdfc7c1c3f3c11de8e8ba28a117788d4738bd776c928c39e02b793f921c526aa3ac967705ba1e532c393076f840d978c8ac8f6d16f3b865011a8b223e314d6b9c165a54d9795765d2afe6356f25c333d939960cca1121ed582aaeaae23bb5742c02e239594806565221896513d1303b47aaa8457cf03170ac7947913b53903616665c3be64adfd910c5b57373a1bced8ae4f888baab2663f8f53313d41b7b76c8206bbba2cb3f3323b2fb3f3c3b3d2323bffafb2f3602fbfbaf2883ee577e8357857c595e56565a836bdfa5e16c01482c210f9197517e8c4a70153c6050418b24223f488485396a2c35f915340283aa029b0249641706d9a00af73ccce87b979661915044a76e934d1bc46b7c60675595e6ffc7fff3955eb487db431ca3e917252abde1c6bdf17c0017181be38d83baeb9297dbc8b0155f106c26630fa54c044779ad09acfb3a746cc30efc22275beeadda93fb689cd604a4ba34188919942a1066912dab61519ffbd40080737601a43c365a69b70245384849d21ad61ac837abdcfa0c1a6d50197dd05da1ccc88fe655c26db080592169348221b485b2f315d52417919ec861c680553982b1915a125c6b409369f872c036db810407b7d532280e9923d17a406bfdc543cda7ad19fc5080e312be025cdae9e53d40358436a7a9c340f790558704fdcc02ba08b011f27a8ab402f3755de8eddcb073df05a54b945d5d71aabc351ae2f6421e0af379badf65d9be59ed7f2659cce02bc55b7ab2fb2b4b08facb1b47e7e6ba0830668f5b4bf772c23b7fe2c237756a665e42e105c6402757f276b37d0b4b385b567e5f502bc5178c665a1e11d6daf2994d7202eb232a899e0a6b70ce1fab30c6117c96873426bb831547757e73c313f7270dde641eaa6e3181fd1fd8c63f659acb5f60259940766da03c4f13f7fcd29e78e7bbd2fcb8c98486dc05ee9734627ff33cc8c7e0ac74c1b7b49ab296fda2b89a7f09692a59021d10c6e0e2c913805568eddded86a14f17affeef68c89c2de5ae8c49e67186823550fa4a26a58502345050649452a33abb6cb4dd2e7b477212c34bab9001bde567ccdee9f4e821bb9efbdb6ae65dc295698d34cd708920559e00689ef210e7c6c71abb7e7017c78fecbcb8357c747cde7af0fdfecbd7afff1d5dee1c1c9d5647bfbfbbf1e1c1d9d5cc6d6c5d3f6b69aeded9de6ee136f63115d9b0e986dd7703730f73eef0e603358652a60a2a3dd7b882d32af5fd1ad7d7bcb1e4b65ef008cb43ff19f96bb0243eb9bfd9b86fdcb4ccc420ca43c054e4b1dc44aa643022c71822c2a7ff61c82bf90aacb54648532e2e14882de66ba0874a87880533b36933946ca7e51be2f5eab2ba5d1fe0533fcad31, 0, '', '5dcd5630bd45a', 'html', 0, 0, 0, 0, 0, 0, 'EDIT'), (124, 3, NULL, '2019-11-14 17:57:11', NULL, 'Nantenaina Fahendrena<dev@specificom.mg>', 'fahernatt@gmail.com', 'dev@specificom.mg', 'Nouveau mail', 'specific@golf.cloudns.io', NULL, 0x789cb329b073cacfcbca2f2dd2b1492a52d0b7e3e582d161f999c9990aa5790a79f9a565a989a50ab98999397a30d9430b6cf40b80b4737e514a66624e6a6e6a5e09dc085d62014c43496a8e82958281b18982b985829199a18281254c0a642b502e2d3123b5282fb1a4c4211d240200690f3154, 0x789c73cacfcbca2f2dd2e1e5e2e50acbcf4cce5428cd53c8cb2f2d4b4d2c55c84dccccd1e3e53ab48097cb39bf2825333127353735af04a8589758c0cb55929aa360a560606ca2606ea1606466a86060c9cb053219289a9698915a94975852e2900e120100ce7625a3, 0, '', '5dcd6b472e06d', 'html', 0, 0, 0, 0, 0, 0, 'EDIT'), (125, 9, NULL, '2019-11-26 05:38:33', NULL, '', NULL, '', 'Nouvelle mailing', NULL, NULL, 0x789ced5dfd72e3b611ffdb99c93b20bc7694cc581fa42cdb27db4a7d77f6f5a6b924bd8f74d2cc8d0722218b31493024659f93c94c5fa3fff5dfbe46fb267d922e4052e207f8255136eda3e6124b02b8007617bb3f2c80d5b1ebdd1a0479b73639913cf2d1ebabae2b4d8e5d1b5b88979d48336a795d57ff958c15c5fe7804a57d563ce94da9768b7efbfc3384908d354db72ebb1eb5c76880bed04d9b3a1eb6bca358f1947a1e35f36aac4dc0c4cea56e8dd30537bae6cdc7481e0cfe982aebde90e995ee75d9c8f910bb58fb79e17a59d54db774d580b2cf3c93526f0efd1f23a8a06343c72ed112cffc0efff53c3c35c8737886581ed2cdcb80bd53ea68c4110d5bd35ddbc0b7633435a87a952aa60bcfd02d324616b588a041cce9abd4a0cef8c9f0503957ce8222f8bfbd8be6726685b90245c98295ae20450665f9fcb3502e61e10dd12fe7ded8a28e898df0cb193675e376fc9250a88c77914b1c7d0685d00cce6f45de4bb6c2c6db9dfbada0bd112f2e6ae4f3cfec55334ff70f9e1dec279ad9cf6d864f8ce266506f7af90c260de7e914ab57970e5d58da183dd1644dd1f642a9c0bf3f9944d331a296718b5cd521c402d5d1d09726fed8f5357aef70607ffc8a4b191ef82d7cc335e827d5c0ae7b22bdc6bac5b409fe1047fab08b3c2d2c528961481f5853818ee54e14148c142f3c1a2de4cf439757745d9ba8531894412a509f19147b6383cc3c41d9520af2d0fe982e8f0a423e10d508e788788a246d8b3c12d1e0d31e26eea53556616e122759e57724e6822262c3d3c6336120a21156627d1c8f0443082b38bc23e91a4cb991884b4311970e454d3c302ec922499762134a29d45cd712932aecaec0ba8744107323219529b6b82188d2085fb913347c85062f6907960da61a93735b134e84d28d45758971fb02189b6c2e2e0de1dc4e0a44542be4a66fc7e14fb1811eed31038d987769ad736b9d5bebdc3c2eb5d6f95159676e9c6175cad6ad1378c7ad2de2768199546618a4602d75220d24c4ac6c407cf91996b6eaf273c02a0eda51746d26858b639f534c2cb02efea20bfa8b817ab70bcdef1c7b6c85ccdec15b87ff85375af846d8b94bbe0839919e9cf3d73add8dbb957847f707302924bf07d1feed44bae8f732a466d2ebc8b85774577535fd5a5c79d976b07c85a68f620b7dff0beaea9e4eadb1430cece9d72442dae751160b64010f046209a925c69b187230ea4c792867836783d1b2816be278ba8a8dc0ebc068a418a90853549f1b679abed420ce421414bc03e715169625b2ec47d4684644eb3f6f87b552fe3111e289995e51f82758d4fe401c0d5b78f725b1c835de75b1e576f9fa569afc9811339215d62bba40d821c8212ad1af4156c89beb2e2226d60d34252a5eb804dd422517ba4834b4b0c15b38882e1cc4aab0070cddf57ae818a3b9436627d24f6ffffcdddfce5e9fbefae6c39217c1fa7dca5f47d168c3941ada910433d8b924de89743135b075254dd07736b18efb7812ed8e6eb19e3868ead01b185b2f887625ffd8314ef74154055f84133ffc18513df814d34cf8cc841cf9ec53bbc32997d2fb0a7668d3399874aa3973cef7542792329026fff95782c92b635bca9c541c896830e9f10443f2e71698ac91a89f497dc8a493faa6e601658c49d89db4b042485d465e878354cbd5ace62b135f12a1d92ca405068e8556b1010281ce3aea8934f73c7bdcef03aec4c69cba5e9f8d479fe92a357be6651f6ba66ef575d6645f23d011c3ed2bcad7cec99c9a2bfd0c0ce81e9f63018b59e05042fd49ca208472cff83a25eb9d987f627849aac87b11c10d0152686c96a1cc6e60831532980e464748e43c565e23e4927298745df9ca98a58f711e71b8b8d4b87d91c255d4b973ac9229a557396a974fb126cddbcbd0bce168a579ec7d8ee2ed64eade4e96fae571776fb43977dfdde81e28e07d3377d438e6ca077570370b6596646d08bc9e2cf91218067f9d2d1f0277c2c9cf21c3516483e3c9d9e9f3b3d3d3238e4335a2520773fcc156c669a0160f141cf9f6a8eb604d5fb8e321b3aefffbc73fbb26fdb52b280a37de044539db33696cf8830e1889235020086f09c38975ca3bedf2c3afc5362f090af31b1051179316d35d1ba254873a826e09fa24c076b501c5c6a3f1bbc3dec51cdc1f0ccaae522b80b6eddbf5fd0cbbaef0cd5b148d8f882cfb835fd165e890b205255aad1e9f9e2be71be8cb5aa1117108c4dfbaf7038d9c65c1174e183a394aef22242221817b9bf117941173f28ec50d3c62dac0758266047b0b87b8887a7318c4c2d27f5990702ce069542622b787de821aa239be2688eba8bbeb3fe0221606099e629d6131130cf55fcd787044230681563cd0781252dbe52537d0049a02926792f6287288ed506da1b2cac4eca11fa18eca07a21b0622c0295e80b0cb1fb70d6886f48efb30a24f25c0d124939a19bd281b6dbcffc0c65efed27383984762799aac5013042e6b50762ad994ec9374bcf0dcb7171a7a4dac057a0576c4154fbf1d31c0147fb729701b1e3ee21855599c98c10301c50a512ff94018f5da0287b29994c5a71dd164ab144ddaa93780974fae26507890010a65251ac43bc80285ab9ed6b5fcdba6706a8af6e5abdd4e9ee6e58caf9621eed41d13c92798fd8c0dc890b821bee37b5f5c8bd0f41671dd4a1bf8d5c399ba545c98115aca56b79d42892cd7f34290524b138f45e81570c11f863d65d41c25c88c3aede4049e721adb6e706b5da72e1fb45e3d7f82e58f69e7017af8c3d6c3b71e7e2b1e3e1995d1dd785046c556c74397c443bac76f7b34c7dcb73ebf1ac1d6e79768acf5f94df6f98fceb13f6d1d7bebd8b7e2d81796415c7f67846dc8787382a467fc3428fade21d73a5db8e807e2b8e0e925345b58dce7c3f0bcdbe618f7d6c35723d87af8128d35d3c36787eaefe010ccfa8757eee7acca43dafd8c7face9a8aa7f2c2cb822a6d81f914b0d5d434f54fe3a0aaf350d0f572062b43f4c1e4fdd68833468e28011ddf209a92d2bd9f29b76bf7e6b1a5beb1e7d1d1bf1fcec79b2f81eb6e1e7cae4744a17fc280b52f16cf6df7f1ff7e1cba40dbfab7d73b156acc7def268e95e0e404c5e500e8fd95a0df1b51a3610b98667dcafd13bec7aecc6960b209a9d77fa1abd07e4ccd776283896c42a19570873f1b1db562e3166bbfebdab6b6c2cd8912877ce76cd3070823ab7883af0565dc00713c6e31168c2a4166bf646f7e6fe93acdb58f5dcde564f4f34d618c747f5284df3d292c9857c6ad4e1d6fb3b9f55014f57310875447086838c08ce2876812a27802300fd6bed760dd3b7d1b63f7ab9c4e88787d547df6489675d99db40e26bdbe72ae757f30f399f1f9e2b67cfa4fc9b0f6b106c880959170fefa420f14e5d06359f504dca9a75cb4ed91f44d786b9da5a7ad6aecfe47a00ca26fa3e2a462d9f8ebe5730b7cd3a19bbde0de2fa42b4d582b395c2b23f3dffe6d5d9b7efdef69e7ff7fafbd36f7fbcf8f6f4f5d987e3a903f336457959f9f4c58b37676fdf7ef057139bf56024eff546fb07bdc3a7f240181faef97e78887dcacbd7d43596156cb94fb8bfd7f40dcee2797aa06cbed759c3ade4f0ea6ce0843c9f620f7c4fdfbc55e96c46ea72595977dc0e2257dcd87bdf61d57b9f550c3e8b2ce65d8bb32157f8875907cfc592fa746f1d3f7870a4142f069a17d22919b4de4602ae1527cfcece0e5ebc28751a27e957ee2cfdd62adf61fcd12ad8e005bbbc39a32cfd00bbbb69e8d6150f69077e82a7159d05660b8151b1d0cca1660abdb047fcec73bd146239b6575ee8a7f3efdefcedf4cd8b55deac585a45412a8473eadc6047639dc3d0b64e2c8d27cd5a917cffeddbf7cfde3e7ff3ead95916d9588a31c689743bef2d77317555479f06c916eee30a6a9a54844e8c488cc2f281b0f6aaeaaa1e4b1088081327a51ecf12c8be794166786178e8efd4223cef3a7fc5b48fc7bd59b98434ece1ae9faf9fbb14a677aba48c39a661124fdf18ccf46006c1323635cd63a90513302f752713a1387127f51dfb7619c1edec299d95594c54eb0b9ecea428f836c1bcaa518634b90292d90ff107195ce038a18f6ddb0013c66f81f75f0310b878c5f8c726777f7831ec9b545b18c4edbf7789132952a943fad743f942c5a68d81f1ae8f26dcbe456ed8656eea00b0e04ad46777d12fa0c50bb9675b9781ba04852712cc4795cca9a131abce8b96e98a4107f60639c30fa647f992b2b25d4d8f2c9af14f152608bb439f393f3af1f9d111aad716e788df8048abfd9252732583a765a8fbddeb30cf241abb80c9151da998e2263369ae4c7c0f3766190d1c04ea8f9e73d1a3b7fec9fb6003389342a6161795d6cdfd50b6caa0952d7fd0469373420cc01784a7b08089c4fed3fdb395fe454a0e8578628c309706ab69e22bff90e6320f0746004b0cbf0aa2337433f7b7abf98632230195fd6d659e3c035b1c78f10de71efa0b21364b020a8b365613fb1bd4417250774e1786c6526dccb0eeb0d4ef73ea78e84b0ce89475d0d34dc236c481a2039acab6c1b115261675913c623da796e67ec53b82fda3a3c09d5e2e73a659c2f65f4c3a08a0b1c119e7736617b90b75ce327cf0f3ab6fa037e83538123061c4a037bb3e33d02574d30316dcb24789a5c250d9386c426d3f95c835cf83c55900288d8fc8861a01c6ccecf19d4d3491fb48b7b1b60be17af76e033f92f021a34d7c082a098bfc92d20e644bc88c9de4e06608966a1d14ac0a3a61d638c4f378f3dc7103c48fec8b2d5594d395a05c96e1cb21d8493378f9d412c505d0cba50bbbf7b37d192e423b8a3cec2c99283f953b55b09722ef49290e1dae1834c8e04e6dc04c20b164777c31e574a68aa8a20e651d49650b6a4390d03aa247e4889671984e24b7170fbd1c2d7fca2b272b6487454d822845c78f527492693097f38399b3a75b4982a9d49804b333e102304100ab188b90750f71c1c7f42f3f2ad27aeb52de3aa1db0366f5ebf2d2ade96f4dff3d997eb6206e2dffdd58fe62abc2570001a694790fef7d01d038fc3f0878b36dfcbf919fae1892adb49c4e7ad13a63b2f7eda12b55aee8ce43ad3c1875e29330f62123b618653150a895c5458cf6bb9f3415dc4a644e02fe54cd10a4906afe831c8ea00de3d59c4c8b4a7298f3c05089ffca1d516ee4b438b29a6d6632b7123222a84b6ab906461e74c4554a3c9b324ee2aeb7f6a814d5d61eb5f6e893b0478574b6825c7f7154aaad7ddc26a89b87b78a8e52476c5efc70193bd8e71fa9aa6cdcee0ca8167765d58608ae4ab183c0a3d46229373a156b20bd43fd572ed9d08ca22c639dbf819d43bfdc0e788cc89d9e19fac5b9600cf00f0c45581c1e61f57f7eaa44af0b4c45d95a392a1854c85592c4cf532db7ad94bc2912219e1660d43d37423d5a179cc39c06bae00a826df7ab4aff685be9886682c97761a62aa39b747b35ed895d9ad86e51cb7da2961aa14ae60af22548b99a2379804085a9f205f908158d385a61bf9099136e6f8e59e015ee18bd6c7ca8b314f50a3a534f1c2242b0854339cc69201c2aeba903e11642a247887b3e496c5301d5b894e51c6b06aed914bf803d66a4c11decdd113c091b94d2bbce9ba093c6ad9399a7e13fd109ff3018b5a9a77b0629ed5cee7736f1c212920d3653f615f1466f2c72b6af08045e70b62bd6de669913f2891734d05454caaee45e84491da2a894a57c8da67f4d1cfae0539f7fe7dbb8574007a4e52c424b675136a14ea41936dcb2ecbb4b10bb3cf8b25fe65441ece907805219a8a406c01db4701160c1f03a36437b1e609e85cdde6a0c33f214942a054db16e1998753940f37f0458b766d431b90296c63df721c5b2e6a356d98ab271e4532f68a1d13622bcc4df1a09e111e382db2531c20fc37e7ca3c3ead2b71ea1a6339b71c55689603eb8d908d6bfb0e65ad8cc98446d87a6bb20759e44b759b6a3092b80c01e6fb804c838737ae76b80a6c7305bfcd8e2c70ab5aa07413f0177f0a8e1647336bc4298f5388243ad6368570d9fdeaae153730d52bb54c86e6fe3a502cb3dd7e6812aa02e7796b9173b4fc88c1c924167b2dd6c2c9584085d5b98ae7cad48936ad28b0e779b77c7d24ccff8a1c55c6fbc7aba7062267f3328ea974b188018373a2c8766076dc08f78b697720628cea38e3cea54e0519c53e5ac6d2447315852350b008a5e251b08274c39035c6190b1ac619519957da83ea3ff1bf43abfad8dadb96f0894750d41ad46a0f8f252d0e6bac6a0c206a0b23f8289576523466401eecc006c3af9cb98c8b5277ca9095534514a4ef0cd267799899d79172fda89951e659f4288beaa6865ab9429f6b44a99dfd7825672961bdbf73dc307ee7b56078e4a4bb5821f920fe4d60f89f8d34ef97bf443ad5666f0a7d5ca562b5bad8c556a9056aed9cb7b8247ecc8fc75f28c587d21f812bfc8d289de17fc66a1ea1a462f1d6c696417b9d872bbfed5c1e8658001cac9e621fec5b3071cee7d80a9e1dbb4ff25a93f40d936e5ead6c34a672ffa2ebaa9b2da5a11fcc6103ab334f8faff5ac9f21c, 0x789ced1a6b6fdb36f07303e43fdcd20ddb80c4889c3849350c5ddaa44381a52d96b440510405259d2c2e94a891541cafe87fd9d7fd8ded8fed285b892d337ec5796cb5608be4f11ee4f11e24ed4620a32e7c5a5d01809c4511cfda1b46e63e6cc2573ccda5322c333f0c7507d218998ec3989b41ca549b67fe6847874726f1c1dbdcfc66a46fa383c119371b062fcc86e67fe0068b7e2bb4b90e3dd553a3f639c73223f4544a93d0f87d2004ce04671aa31acd67fa360c0b043e271acc0cf0b4dd576f205584ca35ed88eb5cb0ae0f8190e1d948b72c8ce019fa90c90c1d0259c93f94422afff1d65ef345f3b0df45ef7c1d12ef5a84a4495df58ede74493b3e34bdfc8220d5ba549d1de4edc4f89954291315306629175dff679484ccd641a3e231759218365e8ab75d9762e7bb91f4a4c076abec9e24647525bf12f36467f7d9ee4e4dccce5831cde65462a011b49f91d3943a0d5878d656b2c8221f1e475ed48cb6ab55a1cf4f29469c81cc441774a81033329d08be4bd9c546cfa2b7f736f38befcb5526824f55a5b4a00fa1605affb876c47866ad890a546ba7eb60a2aa2b4421d64eada8be8d8d7514e8cf9415460e7696f434e42bbe3ac730a049099c817b2c2433bec0d838fa2e57c1dbca2f46fb0717c2db7561543ee276917a6cf15a2e1ea5db93e3b6333f24df445547f90c6e2d345d6a78f2e095b0e9e25121d931fa2dc7142a04550e6414c31a37b8b4b4e5d2d29e4bc47f4c4b9e6ba5a752138c1854c2a39a5355c37544f78a09d83452710958560682411ed533d641aba70a78f538702970449837569ad311a61636684b56db1f49b17571c3abe1f4edfa82b8b02a6df6e238159303746bdb0668b0d965199d97d179199d1f9e9696d1f97f159dfb7bf9d59547f429bf03affebb2aae2daf2a03b5c9d5f7b200a6101486c8cf69b840273e0d98322e20c090151aa14b489aa2141dfe8a9c1c42d1014d8145b104826bd300789d532e1920e699a5531028d9a1c3446386518dcce9aa9c6dfa7fff3951ea507db8314c3e16735cabde1c69df17c0017181be38d83baeb9294dbc830155f106cca650fa44c058731ad39acfb2277acc20edc23c75beeadd893fb181cd604a99d120c4c84ca150833409edda8a8cff5e2084fd0b308da1e132d30d38962942c2ce9152186ba35eef1168b051b54f653781360433c27f1997b136428124c52492d0fadcd6cb9e0e89a0b00c763f0e94c014e64a46456891316d800de721cb401b2e04d056df941dc074499e0b12835f6e281e6ebde8ad6204479815f0925657cfc9ea01e4909a1c27ce43ce000b1e891b780d7431e0930475e5e8e59ecadbb55bf9a00b5e932ab7287aa6b93a0c6576260b017fbdd568b6ee5a2df79ccb977e3a0df056cdae9e6429b10fe558ca9fdf1a68a301ca9ef6e78ea5e7d69fa5e74e4bb4f4dc05828b4ca0eeed64ed069a76b6b0f6acbc5e80370acfb92c34bca3ed35b9f21ac445563a3513dc74972e5c7f962eec42196e8e690d3606eaeeea9c27e6470eaadb3c48dd741ea333ba9f794cbf8ab5d67e208bf2c04c7b8038fee7af39f9dcf1a80f64191113a90dd81b7dcee8e47f8e99d14fe1846963ef6835c54d7b25f114de52b01432249cfecd81451267c0cab9db1b5b8d225eefdddd9e3351d85b0b9dd8f30c036da4ea8254540d0b6aa4a8c02089486566c576b8497a94f62e8485463716a0c3dbf2afe9edd3897023f3bdd7d64cca9da08539d53483932c480337087c0f71e223c9adde9e07f0e1f92f2f0f5f9d1c379ebf3e7ab3ffeafdc757fb4787a7d7a3ed1f1cfc7a787c7c7ae55b974fcbdb6eb476761b7b4fbccd450c6d3260ba5dc3ddc0dcfbbc3b804da1958980b18676ef2e76d3b83eb17a60efd863a9ec0d8091f6f7fdb3724f6028bbd9ff68d8ffcbc42cc440ca33e094e82056321d606091136451f9a3e700fc85541da622cb94110d4762f436d345a043c5039c618c63943154f68af27df95a5d2955f62f58f1ab57, 0, '', '5ddcba59d33df', 'html', 0, 0, 0, 0, 0, 0, 'EDIT'), (126, 9, NULL, '2019-11-26 06:10:34', NULL, '', NULL, '', '', NULL, NULL, 0x789c53cb4b2a2eb0e6e5b229494cca495548ca2f4a492db255325452484ecdc929484c49c9cc4b87f38b0b129361fce292ca9c545ba5f2cc94920c2b530383820a253b5e2e4e9b92a4fc944a100bc82c02d340468a9d1ad8221b7d20139718905134301a8134d4d540162820802c0051954a26, 0x789c53cb4b2a2eb0e6e5e2e5e2042230e654838aa130299405d90000d41f1134, 0, '', '5ddcc1da6b6a8', 'html', 0, 0, 0, 0, 0, 0, 'EDIT'); INSERT INTO `mail` (`id`, `mail_classement_id`, `old_mail_classement_id`, `created_at`, `date_sent`, `sender_email`, `dest_email`, `email_owner`, `object`, `cc`, `cci`, `text_html`, `text_plain`, `remote_id`, `remote_mail_box_name`, `uniq_id`, `type`, `is_read`, `is_answerd`, `is_deleted`, `is_draft`, `is_favorite`, `is_needing_accused`, `mailing_stat`) VALUES (127, 3, NULL, '2019-12-03 11:08:49', NULL, 'Nantenaina Fahendrena<dev@specificom.mg>', '', 'dev@specificom.mg', '', '', '', 0x789ced5de972e3b811feedadda774038c92aa9b20e52960fd9d6c633636fa6b2b39bccb1a9cdd6940b22218931497079d8e3dd4a555e23fff22c79943c491a2029f1002952a264d9a66a0e49001b4077a3fb4303689db9debd4190776f9373c9239fbdaeeabad2e8ccb5b18578d9b934a196d776f55fc85051eccfa750da65c5a3ce986af7e8d72fbf4008d958d3746bdaf6a83d443df41bddb4a9e361cb3b4d148fa9e751b3a8c6ca044cec4c756b982db8d3356f364472aff7bb4c59fb8e8c6f74afcd46ce87d8c6da3f7cd7cbab6ebaa5ab869403e699947a33e8ff1041051d1b3a7689967ae69ff0b7e3e1b1415ec133c4f2906e4e43f68ea9a31147346c4d776d03df0fd1d8a0ea4da698fa9ea15b64882c6a11418398d357a9419de18bfeb172a55c8645f0afbd8f66726e85990245e98285ae20450665f9f28b482e51e11dd1a7336f6851c7c446f4e5049bba713ffc8650a88cf7914b1c7d0285d00c2e6e453e48b7c2c6db9e05ada083012f5ed6c8975fd88b664e0e8f5e1e1da69a392c6c864f8ce5cda0ce78fa12260de7e918ab375387fa9636442f345953b483482af0e78f26d1748ca865dc23577508b1407534f47b137f6e071a7d70dcb33fff814b191ef8357ac335e827d5c0ae7b2ebdc5bac5b409fe238ef4691f795a54a412c3903eb1a6421d2b9c28281c29f63d1a2fe4cf439717745d9ba8631894412a509f18147b43834c3c41d95c0a72dffe9c2d8f0b423e12d588e688788aa46d8b3c10d1e0d31e26eed41aaa30378993aef24f24e6822262c3c9ce33a127a21155627d1c0e0443882a38bc23d91a4cb991884b7d11978e454d3c322ec92249976213ca28d44cd752932aeaaec0ba4744107323119531b6b82188d3885e8513347a45062f6d07e60d661a930b5b134e84d28dc5758971fb1a189b6e2e290de1dc4e0b44542be26660c7e1bfe5067a70c00c3462dea5b1ce8d756eacf3ee71a9b1ce4fca3a73e30cab53b66e1dc13b6e6d11b70bcca432c320856ba973a92721666543e2f3cfb0b455e79f435671d08ee26b33295a1c079c62628175f16fdaa0bf18a8b7dbd0fcde99c756c8ec1dbc75f8fff0468bde083b37e58b9073e9c5157fadd2dda45b4976f4b00793420a7a10efdf5eac8b412f236a26bd8d8d7b41775157d36fc595e76d87cb5768fa34b1d00fbea0aeeee9d41a3ac4c09e7e4b62a4031ee5b14016f0402096885a6abca92187a3ce958772d97bd91bcc1bb8258ea7abd808bd0e8c464a908a31450db871a9e9730de22c4461c107705e51615922f37ec48d664cb4c1f376542be31f53219e84e915857fc245ed0fc4d1b085f7bf2116b9c5fb2eb6dc365fdf4aa31f736246b2c27a457d841d821ca212fd166485bc99ee226262dd4063a262df25e81e2ab9d045a221df066fe120ea3b8855610f18baeb75d0194633874ccea59fdeffe9fbbf5dbebd78f3eda7392fc2f5fb98bf4ee3d1863135b4530966b03325deb9743d36b075238dd0f736b1ceba7814ef8e6eb19e3868ecd03b185b278c76a5ffb3139cee82a8967c114dfce8634cf5e0534233e1331372ec73406d8b532ea3f715ecd0ba7330ed540be65ce0a9ce25a5278dbeb2c6ae7d9a62f4c2e09632291547231a50764ce1b082f905666b90d7d7b45ee4d2ca7c53f3a072c625ec4e566811b42e23b7e35ea6e56ad6f38d89a744683e97d20243c742acd800a140671df55c9a799e3dec76015f6263465dafcbc6a34f74959a1d73dac59aa95b5d9d35d9d50874c470bb8af2b5733ea3e6424f43437ac0e75ac862164094507794310c91dc73becec87a2fe1a7186e922af25e44704da014199d7948b31dda6285f4c6bdc12912399185f788b8a41ca75d58b132e6e96392471c36ce35ee50a4701575ee0aab644ce94d81da1553ac49f30e7234af3f58681e7b5fa0787bb9bab797a77e45dc3d18accfdd0f77ba070af8d0cc1dec1c73e5a33ab89b87364bb23602602fe67c090d43b0de968f813bd1e4e7d0e134b6d1f1e2f2e2d5e5c5c529c7a31a51a983390e612be42c604b060c4e037bd476b0a6fbeeb0cfacebfffef5efb6497f690b8aa20d384151c1364d1623fea00356e2481408c25bc2f0629df2cebafce86bb1cd4b83c3e20644d4c5a4c574578628abc11d41d704fd1260bc5a41e3cea3f3ed61f1e55c3cecf5caae5a2b80b7cddbf7c31cfbaef0cd5c148f97882cfca35fe1e5e890b201255aac264fae94ab35f465a550893824126ce5078147ceb2f00b270aa59c667715529191d0cd4df80bca8839fac0e2081e316de03a4113823ddf212ea2de0c06e15bfacf3e89c6021e476522723be83da8219ae15b82b88ebafbc1032e626191f029d6191643c150ffcd84074b34621068c5038d2711b57d5e72074da031207a26698f2287d80ed57c9555266607fd0875543e10dd3010014ef102845dfeb86d4033a473d685113d9780c72e99d4c26846d908e4c3073a0e8a97a16bc64052cbd574859a207159c3b257c9b6e49fb0e3855781ddd0d05b62f9e80dd813573c0df7c48053fcddba40ae7ffcc4e356657163011f04542b44c3e42361346c035cca67541eaff64493ae529469afdec05e31b99a40e2510e4894957870ef280f242e7a5ad7b27093c2a9290a58ac767b459a5730be5a86b85777aca49860fe33362045e246788fef8d712d42e37bc4752b6be8170fe7ead2f2c29c9053bebaed2d95c87c9d9f0b5a6a69e6a908be0246f86dbfa30c7647117223527b0541a982c6361bf85ad5b9cb478d775f3ec98ac7b4f7083dfd71e3e91b4fbf114f9f8ed6e86e3258a362ebab17fd93530f4d8987748fdf0cd91db3dff8ffc6ff47258dff7f56feffc939f993c6c9374e7e234edeb70ce206bb276cd3c69b11f4d5cf3ef54e5ff263a4e82f0eb9d5a9efa21f88e382eb0f0ad1c4b7381280817af7bb63ea1b9fdff8fca8e419f8fce280fe168ed0ac7eece5e14eb93cb67dd3e4c79a0ebc0687cbc20b678afd19b9d4d035f442e5afd3e89254ff78012f0687fdf421d7b5b656c3268e18d12d9cb3da82c2cdbf6976fd37aabdb5eef4d7b59dcf4fb4a78b1f60337fa68c2ec6d4e70763908a2793af08567d8fc008a1286de1b7b5079faf23ab31ba3ca67a900315a3d794436ab6be437c7d870d446ee119f76bf401bb1ebb19e602f066e7a8be461f0168f3f5200a8f3bb14ac60dc25c90ec56974b8cc97e70bfeb161b3e3b6ae5ced8ee1b064e50e71e5107deaa3e7c30613c1e81264c6ab166ef746f163cc9ba8d55cfed6cf434c64e9be8e4c89ea4c19edb36b914af76eaf0ecc39dfdaa80beab18863aa23ffd5e4ef46790b8a85510fc112c0f56da35eb676fbd6d7ef47289d1f78fab8f7e97259e77356f0d89af6ca7ab9c8f2d3e447d757ca55cbe9496dfb05881e88e989175d0f25e0630efd565588b09d5a4b479b7fa94c35e7c1559a8b5a567ef7a8cae07b4aca3fb837248e679e97e0513bc5b277057bbbd5c5f90b75a78b75260f7a757dfbeb9fceec3fbceabefdffee5e2bb1fafbfbb787bf9e96cecc01cce509e57be78fdfadde5fbf79f8295c67a3d18c8079dc1e151e7f844ee0923cc35df4d8ff05079f99abac63293cdf71d0f0f767dc374f95c3d52d6df3bade14674746d3774485e40b1037ea86bdeab74322175b9afbc7b7547b16b75ec7de0bceabd4b2b06a465ace6b645ba232904fa7907dcc5d27abeb79e9f045852ca2d14762fec5332d4bd8984600b6e5e5e5e1ebd7e5deaa44fdac76c2d1dd822ff62f2d12a38e135bb3c3aa12c0d02bb3b6ae8d60d0f82873e83a7399d84e60b8171b1d0c4a16606c9b047826c789d0c7a39b3171ee9a7abefdffdede2ddeb451eaf449a47414a862beadc6147639dc3d0b64e2c8d27f15a90fcf8ddfb8f2fdfbf7af7e6e5651ed944ca33c6896c3b1f2dd71fbbaaa38fc3a40f0f7105364b2a462741244161fe40547b5175518f252c44848993528f672d64dfbc2613ec1b1efa3bb508cf03cf5f09ede3f171562e210d7bb81dfc7e00772d4cef1649220b4cc328994e329ce9e10c82e56d669a27521da6205fe62e284249e24ee63bf6ed3ccadb3a505aa3fffe27e45aaa5a57f0742e45c1b729e6558d3e64c92d2199ff107f90c1068e17bad8b60d3061fc167af72d0082eb378c7f6c7277fbd7fdae4935df206ef7a34b9c58914a1dd2bdedcbd72a366d0c8c770354e1762d72c72e935307000657a22ebb0b7f0d2d5ecb1ddb9a86ea12169e4b301f5532a386c6ac3a2f9aa74f061d38e8150c3f9c1ee54bcaca76313df268263f559820ec0e7feefc6825e7474ba85e1b9c23410322ad0e4a4acd951c9e96a11e74afc53c9368ec02265774a4628aebcca499320a3cdc9065547010a83f7ac5458fde0727fcc3cde25c0ab95abcacb46eee47b2557a8d6cf983361a5d116200be203c85064c24f6570f4e6b0617373914e28939a25c1eaca6896f8203a0f33c2018012c31822a884ed0dd2cd8d6e61bcf8c04540eb69f79f20e6c71e0c537a63be8cf84d82c29292cde584d1c6c6487c94add19f50d8da5fa9860dd61a9e867d4f1d0ef31a053d6414f3709db38078a0e682adb2ec75694e8d445f280f59c5a9afb07de111c1c4605ee740a9933ce1376f062d241008d0dceb88033fbc8f5d519cb30c2462bbd83dea0b7e048c0841183deed07cc4053e8a6072cb8678f124b85a1b271d884da412a935b9e8f8bb300501a1f910d35428c99dbe3ad4d3491fbc8b6b1b20be17af7610d3f92f22183757c082a098b8292d20e6443c88c9df8e06608966a2d14ae0a5a51f63ac4f38af31c763dc4af03882d559cd395a05c9ee12b20d8ca3278fed41cc585d0cba5beddf9873d8d16a12d45eeb7e64c944fe45615eca5c807528643c70b06f572b8531b3013482cdd9d404c059da922aab843594552f9825a1324348ee80939a2791ca615cb2dc6432fa7f39f162bc84ed9625193304ad10aa214ad743acef9fc60e6ec6423c938951a9371b6465c00260860116311b2ee312ef898fe1547451a6f5dca5ba774bbc7ac7e5d5eba31fd8de97f20d3cf16c48de5df8ee55f6e55f80a20c49432efe1832f00760efff742de6c1affafe5a72b86642b2da7d35eb4ce98ec437be84a952bbaf3482b8f06ade4244c7cc8892dc6590c146a65f1324607dd4f9b0a6e257227017faa6608b2946af1831c8ea035e3d59c4c834a0a98f3c85049f02a1c5161e474796435dfcce46e25e44450e7d40a0d8cdc6b89ab947836639cc45d6fec5129aa8d3d6aecd1b3b0474be96c04b9feeca8545bf9b84d58b7086f2d3b561db379c9c365ec605f70a4aab271db1a505dde95451b22b82a250e040f328ba5c2e854a281ec0ef55fb96423338af28c75f1067601fd723be009225b3d33f4b373cd18101c188ab1383ac61afc0c56895e2f3115656b15a86058a15049523f9335dfb6528aa6488c78568071f7bc13ead1b8e002e6eca00bae20d866bfaaf48fc7958e68a698bc0d335519dd64dbab694f6c6a62bb412d0f895a6a842ab92bc86f40cad51cc923042a4c95afc967a86824d10afba5ce8270fbee98055e61cbe865ed439da5a857d0997ae21031820d1c2a60ce0ec2a1b29e3a14ee5248f40471cfb3c43615508d4b596eb2ddc035ebe217b0c78c34b883832dc193a84129bbebbc0e3ad9b97532f334fc2742e10f06a336f674cf20a59dcbc3ce265e5842b2e166caa122dee84d44ce0e1581c0979ced4ab4b75e168562e24b1ad85554caaee45e47091ee2a894258d8d27904d1dfae0539f7f17d8b8374007a4e5f891a5b3289b50e7d2041b6e59f66d13c4ce0fbe1c9639559078fa11a054062aa9017007f92e022c185dc76668cf03cce3dbecadc630234f55a952d014eb9e81599703b4e04788756b421d932b6069dcf310522c6b3e6a95ad282b4731f5252decb48d882ef137464278c478c9ed9204e1c7613fbed5617519588f48d399cdb861ab44301fdc6c84eb5f5873f936332671dba1e92e489d27dbdd2ddbb10b2b80d01eafb904c83973baf535c0aec7301bfcd8e0c70ab5aa07419f813b78d270727736bc2298f53482438d6368560dcf6fd5f0dc5c83d42c15f2db5b7ba9c072cf3579a09650975bf3dc8bad1764428e49af35da6c36964a4284aef9a62bdf2ad2a89af4e2c3dde4ddb12cd3d33fdd180aafd01b2f9e5e3a31d3bf2d14f7cb250c40821b2d9643b385d6e04732db4b390394e4514b1eb42af028c9a972d63696af182ca99a070045af920d4413a69c01ae30c844d6b0ca8cca3f549fd3ff357a5ddcd6dad63c3004caaa86a05623b0fcf252d8e6aac6a0c206a072388089576523466401b66600d69dfc654ce4ca13bed4845a36514a4ef0f5267799899d7b172fde89851ee59f4288bfaa6865a39419f6344a59dcd725ad142c3736ef7bfa8fdcf72c0e1c95966a053f241fc98d1f12f1a799f20fe8871aadcce14fa3958d56365a99a8b4435ab9622f1f081eb123f3b7e93362f585e04bfc224b2b7e5ff05b5fd5358cbe71b0a5917de462cb6d075707e397017aa8209b87f8d7cf1e71b8f711a6866fd2fe97a4fe0865bb2b57b71e573a7bd177f14d95c5d68ae03786d0a5a5b1afedd1d9d8e98e10ff978dff1518391d1bc404f1ed47bf2fd52efb8a1ef0409a43d4eb1fa0a363a41ccaa8771215f1ab6c4334c133e258d8f3fe3865dffc1fa14f30ba, 0x789ced1a6b6fdb36f07303e43fdcda2ed880d8b01c3b0f05439b26e95060698b252d5014454149678b0b25aa2415c72bfadf7794adc696193f1237c9360b8944de1defc8e3bd44b91ec8a80f5fd7d700206351c4d36ecdc8cc8706fcc4934c2ac352b33f860ea43132994671630609535d9efa93881e8f4cec83d768fc3c81abf53038e7a666f0d2d434ff1b6b2cfa2bd7e63af244cf4d3ae4dc91299127529a98e6ef0311702638d31855c67ca3ffba6181c0431a83a9019e7487ea0da48a50b9961d719d09d6f72110323c9f40cbdc089ea20fa94cd1219015fc4329a4f29f6ced365f368f8728ba679b107bd712c44d42551183e592767c687ad92541ca7d29913de4ddd8f8a954091325b0c3122efafeef2889986d8246c53b8424316cba14af559562d75b8b0752a0d52ed0b384acaf655762f6b6775eec6c57c46c4f15d36cce2506ea41f705394da1d38085e75d25f334f2e149e445cda855ee0afd3d4f30e20c642afaa043859892e944f04bc22e6b038b6eed36b2cb5f8b5da6015fcb4661411f43c1b4feedf109e3a9b5267aa07afc69134c54a24214e2f1272b6a6863531d05862b65b991a3c8623c4df98aafce300c68510217e0de1192195f60c73870df77c1dbca2e27f1a31be1edb8284a1f71bb4835b6786d178fc2edc971bba91f926fa2aa927c03b7169a2e35ec3d7825345c3c4a223b47bfed584249a08a894c5258e3069796b65c5ada7589f89769c973edf45c6a8209838a795471aa72ba8ee85e32019b464a2e014b8b4030caa3bca63a68799501af1a07be0b9c10e64d95e67484b9858dda92d5f667526c55dcf86e387dbbba212eaa529b83384e8fd901baddb2011a6c765945e755745e45e787a7a55574fe4f45e7612dbfbef688fe8aff91dbf05e3eae7d5e35465ab39b1f640e4c21280c915fd07481def83460c2b8800043966b843e11698a52f4f29767e4108a5ed01458123b40706dea006f32ca252383796ac7290894ecd1cb447d81594dace9eab9d8f237d24067fb33258fb5c73b932ca6524feb55bb13fdfb0238202ed0ff0ef69e6b6e0a53ef61404dbc05b339943e1330d59ca6f46e6edd333da73a7e699e7bb3e6dd893fb381ce604299d2207490995ca1066962aae2f2947fc911c2e18198c6d07099ea3a9cca0421661748298d75516f0e0668b0517638ca1685362433a27fd529626f8402498a8925910db96d16981e89a0300db63e074a680a3325a33cb4c498d4c186f790a5a00d1702a8f4370502982e866782c4e02a348ff75e0e763382134c737845bbac6fc8ea81e415872c27dd43ce0c4b9e891b780d7439e0b31875e9f845cde5edd8523fe883d7a4c60f14bdd05aaf3196c5192d05fc74abde6cdfb56aee39cfaffc7512760fa6574dbe94f0c7722fe5d58d275b7bfb06ba688032abfd34b2f262d7b5f2e24506aebc7889e03c15a807d5ae2db2a9fa858d2fb934fb2f8a730978abf082cb5cc37baac3c9b70748e8e469e1ea4c70d35f39b5eb5a39f57564e3dd29bdd1ce48dbddbcc5bbf623c7a8bb78055bc69a265777bf6b9a7f772bbd8340e6c5eb37550e9dce06b23037b87f436ef730ff235944d1586a03f6cb016702f00253a39fc119d3c69e056b8ab5f6a8e319bca3d82a644834c313094b24ce81155ab027c31a45677370467cc1446e4f43746cdf8b186823551fa4a266985327410506494422532bb6c74d3c1869cf585868747d097afc911eb898d53a896e65d4f7da5b48c933b4700b552de8344bd2c42d43e44356c2447aacf66f02f878f8c7abe3d767a7f5c337276f0f5e7ff8fcfae0e4f8d395474d121e1c1dfd797c7aeaa2697bad7a7b7ba7bebbe7359631b9d980f92a8fbb815d5f2fde016c0ecdcc044c35b707e374b78dfe339b47f694bf23953d6730d2fee2e0bca8230ce541fbab11fb0b9e0e0b3190f21c38a544e828998cb983258f9145c587d811f84ba97a4c45962da3511c89d5bb54e7810e150f7081594e51c7d873f028eedf6feb6b8f065fc0617ded50aa88723c2654596c5a586ddecb121b14e04363ab053bbbd0dcf6a0b167c1c517699f9414a34a9931cfbb16f20ffc4ee0b3, 0, '', '5de618110a4b0', 'html', 0, 0, 0, 0, 0, 0, 'EDIT'), (128, 3, NULL, '2019-12-04 08:33:56', NULL, 'Nantenaina Fahendrena<dev@specificom.mg>', '', 'dev@specificom.mg', '', NULL, NULL, 0x789ced5cfb73db3612fed999c9ff80aa734d938812f5b0e3c8b6e662c54e3dd7c619cb69aed3e9dc40242432260916206dab9edcdf7e8b07293e6539f533e7384e4471092c76bffd760190dce6d1dc23289a8764a71191f3a86d71de183a91ef359f3e99507b8e2e9e3e41f0c7c76ce6060364221c47147de7fa2165110ea22d753ec4b6ed063321503ae71077e64403d431cd7f94cf9eb976e4d49d9c60eb64c6681cd803f4fdb4237ee0cc97a74f9e3e69bf409f1c1c21374236257c80c6110d39223e763d64792e09228e18e1ee5fa017e23ef63c2486d8422fda4f9fbc480666f8dc105f1b20480c6c7f8eb95655ab609c91c9891bd50b556b3382fe094bf4a1017a13d88cba36eab7fa5203db3dfd5d9affc54e23b16e67233c4766e38fb2d573965936fec338f2283d4153467da49c82407386110fb1258ec07d119e78842b4bc8cfe0edc84e7be5d490df1a9eb88640ff6154f6cd428cd589552bbaef9e138e945913e02097f39864344a94995066136668e52bf1a5452cea7938e4a047f2a92caa8785e73406074e4111bb62604bb05e3da28f1c0684d18444e073005d00fa8841f92472a88dce1c122ca0e8fa7806e26e800ef6d4805d7f9685a32b9013520f472e0d0c9fda643071ad187e6b15f8c0c8a904fc2737b0e919076ca25f04f0240c62a18fe706a277f8ef84239bf0d08d082801c7048dc6e316e007c0c8d194b2f402b08e92e70e8d3d1b06a8af507ae3446b191b36b128933a0f50400352abec1b7446d98981655ccbfef241eb13dbf6a4a50214317736232c514407efefe7060e43f0a48d230c1d47c48a28e37f341182dedcc3b1146bc5810c3043b8514b11db50237a01906fe1dda080b3098d22ea57c2cc8a19a76c00b69be2d8ab0808809d38ef060e78bfe27ca595ca62531a28a259d294949962dff5e697499d69f6ad9512fe349c65529760ee9d9f22cd767908d1259c8741ec2cf02806d8c460d44090a007a1459a62e0d20de056150dcaaf2dbc314efca15baa3312157c10c169b36576be565bcbc1c14c52a243a477940b05ee2c1a9c027d4b47c16946b09d28e9fa898ecb1c9e68713095ade3093d255295e05924f1df14ec0c566acd0c11ff96873917dc8c83b9328a50e3cf9870a142ca135afa25d8e774055355dbe288f8a00d6447e173348b256b416fca34227c20ba06c889a2900fdaed991b39f1a46551bf7d4cec7714f3f688b00961316f4bdae6edcdd7486a085d8dc056c02c42152ac70e3c0c11ed623118e66a8621d872647a12a3c31e3a75c999501b09e023a0e76722e24f88b008d0b46c5c36ef7e7044d3fd26ea8f9b681dfe8aff46604de092f5f19e94fca7ea9006de1c718b11a05f71fa47df0d20004f5d8b18baece875cdf0fcb93e8bcf8b675ff5c5596de718fd579abd25e90af24d1061881d969c97b9037ac8365d46ee17e995c548369a680386f0aa8936d520fe7dd521bc5a5f32847ea7f73786209a5e61082f41ff974afbcd975754bfdff91b369617d729b8dd96f43f844fdf19864872807c4e2234407befdf22c318caef3f303a83e4cc5d08d0bd0028c122be648a01dadd7b77f05e084213d5a5722b6410ac6c0eeaade58a55d336adc9ba0ac1d664f69f3307f26d496a2aff2ca43c119165292c7e1652130fce967b947f165236662521369be01fcda6f8696d3ed7b2cad41cb223c4a2b82229e6bbad75e22f5864f7e3f1f1e17bc98193282788044c3af00f08afa574a44a0563e251eb24512b0ac4af91b59a4abc0cdb6ecc654b5bb5b65cd38c5bb09b6e7461e2cb9b4c1b489bcc9b2fdba401c5a218c96a4d43a91d40b50a4560b4955e00a53d5888530f2600df173a4e07f2f489d3693adda6d36b3afda6b3de74364497b95cffec030d4337e0cf9a88433fe035e6560f634d95b106cc0a204b263d8839ddea8de60a88be6a36539e241ecf55109dd666469f2ce0facf132df04556e34ca4e8e2ff4213cccf87ef0e15f3b73c3aa3c8e95ca4034b07959c42f956533b6414168c5c1ad72b2526ab33e93cc84f5001c66148988539d95ad55c52ff56804fdd192e8652aaece234e4b70b693c0eea097249cbe69a10ca38d523d328455fd623bd8a01ae9b959de7ec55eda7f68b9ff68ea4075a50e2503920ca5d55bd32226628a752e1bf60d26293f3c53085386a4195c1601cf9ebf004e2208ee4752938d7d488e447a6d43655f8e87a5c610a6646019c7af64c1c66560eca9491ba3f55cd104b076b69e1d8eae554752de9b0fc17ca44a93712264b7aded070ca4f1873cd0a5415cddc5d5f6f26bf0b165ec823a79b45f282aa328eeee5ba36b266929e53be7bf3f6e0fd3b34de1b1d1f68e276a090053c66d8fe4bf9db82024b43a9c8324532e87f4dbc55e9d4e2f1447f77511e78b9d6aacd4355f1b234f83d39ad5f2c4174d5357591531d22970c6930c053e8a43e522e890fa363265a2d8b91c42fdda559b60acf65f517f9761570575caa6196e3d61280b616245a44f9d2562b2b85ea0b9623cbbc6d2ce52cb8e06231f3541ca57ac0502b828f2cb9cea8c727390be68717191618ef1dfd7a30da1bcbf08754256a6fbeac2e347b89d7d49267e692349b09b4a97fcc2db44ca35c13c8e95d146cb65191af36cc94c652850d91264b093583545351805901faa94731342b22a8ba5d6db2b260412c6573dd81853deb47b9706dc85cf03cd39b0cd2ca5694114abc59cde4856bc38afa4796e650294907e7edddf249842f2ec364d61f7de90fddeaf1def8f8e097c3f7bf2d9a8ec47a844f83398262c22755e558512ee1b39a6a43a22d83d75f0fdeee1dea8596d945d99b0933686aaa675bb14e9286cc92f2635db5bb4a0192759ad15d4f6cb5e86ac58261b562482b962bf932bd26061b1d7e7c7fbc77244d664138eb345230db8a759b6ee081946e5a5b2389cb5a1aca0a027263bfda4dcb4bae7eede4a1a20b1d1cb57d94a9fef5f3ea849246c6fee1a1f6337437a5543bbab6c1f534b2b4346a65d2dcd2b1eaea2e7369ec1563bd3cb74945974c6d0a34d7a9e8a8726e921d59279314f542536e8d099f27eb4330f5d18b4bd05c4a06399c68b65ffba2644a392fad3e32304fbfd3784f8ae1fa86f3cb510a9be29358eb925fef3412a8484be556f833b3ccccee4007fa4462ac9a11cde4588d5d1d726a38ae4d06d8f3b6d24573c8d922bc21539d0de0ac4d82c6f087bfce82cf5b3f04131e6e7d4b9fb7db60e2a17081b4b55c66df691456171b890ff2e8d4165dd06ff60b96357a9a160a4ed810f86ba87546b598b87bf8f637bda2a8f639255a761a0a120dbd0fb5d3301bc0609ea781961eebc2511ee7741ec87ca877d305af36a08bb5ed482cf8884ff091c9ffe1839d982159974cdb0254442e94351ac330a246729154f6eada1514924da53aad65d4ca6b26d674d236325125dcd050a3dc69f4178dc2c54e67b88d91c3c874a7f17d6338a22c143b6d64bb8d87db6d389b4ab623fb2a7d4a4fa79d6ee43a8dbde4eac5dacae2f4dab6e7e694fa89fa5a1f38512bf56642e3e872b14f949df0cbc576615c974b8d442c58e55eb7dbb1576939f89c780e3e2e5c0a07022ae981ba209596a14080a623a6c2603932915816499da299ae6fca302b80d50726f34882d74cb0eb520638aec00829ae5741e6e273a669819254bb241f9aa847fc2d9441900eee0c56bbc34f24d92afb85424c05e81399409d05f080935a3b211a0edfe8bb5718146d0c89cac2466f63606d24189ca3c95c6cb3b90c41fab088cc811c0a7c4fecb5b911e03672e41e644020a571cce65002ce88e7826eb8850e60fa236e5e08b158d4e6c08c605424ab19366f8a6d417084e52046318fa067908bb8d8dae362508198664cbd39c84554ecdb31e403789dd6763bcc8e22633391851b39ec6d8bfa197bd14e036cc92c10919bc26dd3ec1a22251a6a03b91506b346315baaba2ab9c74891608e110b649c50a428c51ba83d440af10a1209caf347b78df93ba2dc34e472fb418d4adc171652aa4240dafa92183804b88c75ad75cbb857f8cc3b7c61946bb37cc9f805fbe75d90d49dcbf27192877abd56afd7cb7674dd8a57e95e563f3f021ddcb501dd316c97443712c9b9b45e0cd75574cf95fe8da29cd31bee32c018580ea0dacbc02505ec3e66680abff80c03734e88e38a9807049e8143042fca729337a590bc03459c5454eb8a08088b9d5e3ea41c0fa55f65925a6543cb30b7988c1b6a02965b1cdc7cfe88c0bb43e05bc28107be6dfc7d739cd73318b1dc90c0b4929e3c58e09d128f86e2c698078fbe7c2bc5268ad7d7d47f695137c854750533e78b2b796f4fa1b85a86c5dbaf42aa0350cfab92185c37ef4bfcd5861c16f3e7d6e7f0fa024d6ab95aa07d3d213e30f3577347dd9a4df1fa25938912fd7487bb31770328e2d138124b3ab37961b6a0256f65ce50ea13a6b249944701cadcded6584c718f608cc0814caffe94a92e3be5ac86c803a7bfdb9e5b7e60f433b4f0ff3dafbcbca4ba3f7cb2d292907c72a47343dc8eef82df1fba33ba0fce19ab12e063d85e2f527a0f0e29dfb033fa0fce197751b7e89b3aead626725b4e6b6b2bef3aa518b981f9d9fd5c23c9de1dd318764d34520f7bdefd84ea21d8abd3354db428681f4db682c9c062233a9d12824671786346bb5e52baaf7329b14fa76e23789c4b5d5f1dd0b98bb531c8f0b31b9b405deb2af4aa2b496172b9b8d9b931fc40e56d0a3440fb64823a9b4dd4353bafd13ea576e5fa8dd8d74b5697fe45e6e281e3716c0934dee84277a9d56b59457a4865f0ddc1ffa6a6ac0f14fe9f40506d2ca263623981fb674c1eb15fd9ca9d6e16dd74863f26d87f3819feaaf4713d29fe7e95beb5341712c669f09fabe6f9e4c6e76ee6b6e6db24bff4a9a12af62bc236016f6f7107ae0f73f123f13e111b1dc7d3a926b1ac7892ea7d1c7c3dbbddbbccfbb05079d5f4fb2da0f293eb79d847230f0b133c02f35e02f3aa0bd48fc0bc7fc0bc47bbdb8f37f7dcc80c6e76e504f2786fcf55ad7f9bf7f688a9c73ec151ccd287007222856941b98fdc23f2f5db5e9643ac13625fe106cc4ab8aceb7b2eebf5510bd0e579f611e1210dc47bc6ea66d7abceb556bd81e8d1728f96bb1bcbe5bffb76527d2ec3a37495eaf2f26b0929a2cad7d2e4d767de91088915b039daa72c7962307d1ae036976c6ee981c1aa45c1dcdbf8324b83c238e308ba2176717170a567f96a30b0fd158ff80d5403f2b08346d48b7db1aa7a1ea1976857bd06377dfb245cb7e8227bdbd1fd78325cbe65325fd222f58e86956e8758fdc9daaf9947de59fdbcacf6c94cae7448a7cf7217b9f7361756af9339bf797fe9e7e0d14130a5156ecb3c0c2f8f3d77d8357b681f9f10a0a01630b39af1a25f5d72d644631ca07d8603cbe5166da2112832a52c7071137d1cbfc93f91af9b7bd945bdd7f2f735ea76cca24cee79fc47cf5ec1b31f3999c61efa59bcfe7d35cf5efee6860ac19a973754482e9e7c5e4158bceca14af0c6f090b9f2ab12e1e50fbb3f26982bc33a1cfe60d170be2536753751fa8a93167a0389e4484c24b87cc7353b25f6630aa87b954bc1a499304b2e59f63e46609280c7138bb993aabde83b0ec0aa8a322982b7dbe98ba7fe07a586c154, 0x789ced5b7b6fdb3812ff3b05fa1d78bbb8edcb526cc749d304075ceb26dde0b64d11a7ed1d168b0325d1163712a925a9386ed0fbec37a4a8b7ec38699abb6e9bd44f8ee63dbf195269a8e2a877ff9ec78305babc7f0fc14f8cc58cb23dd44738551cfd85c609170a33b59fad273808289b6982d65a48e82c547b68d0efffb5bd3aa7810a972d7ad83f9b099eb2600ffd381de85f58f974ffdefd7b9b8fd187102b44150a38917b68a278221189318d901f51c294448248fa11f44232c6518414b9502e7abc79ffdee3dc3027968efeda0142e2e0e0f7545a55ad0ace9c7867542d27ead6660cf289c8f5e10c3d6781e034402377643408e8f9af522d22f2f86f3fe4de1dec2417a8ffc36f6dafd73cb3cafee354459c9fa1a9e031ca8282407381914cb0af3f41f814f62222334f98f7106d1514522577ccb74ea4af21203f51edd89464621959b7a287f4824894b9354f1c44a54c4945a35c198f8b8008c72adf995f96c4e7518413097ae4efdaa4d62cbce02904700a8a041d86adc8f56e8bde493008238f288839241d037db4513151210fd03c24ac4c451ae3199053868e0e3283693caba623d59993f0082bca9913f380ec79d44fe1b15481b7829c9b84ff4059c0e7127213bdd68967d220d5fa449469e9f0722651406442150125e03341e3c9c485fc81649468ca4571017827a397214fa3000cb457647ae35c6b531b01f1b9303aef21c61959aaec7334e7e2ccc1a6ae8dbc7ad1c6240822e3298694a0b31911b922b6787fbd707092402403ac300856c4575cc8df7a0881347a3c31646eca4c81393a8c968a044e66d163487917bf608d3cf3b8523cee4c333f15928b3df0dd14a751474140dae975ca42887ec77aa797da6453ce32a059c1cad04c714ca3c55554738bbe4ba9743c9d7015d51539f72a2e322da03281ead2c1c340366711c7903629389569108ca0b4484f1b6ec20061cdaa218bab8b7726793c2ca7654ee21a0f142cf7ddfee0a6dafa21663303892131d1c942a8f3cee7ec1ce0db040a9605c141ae248d731d57053cd7e2686ab8638f9f13a30a7ba04cfef7343a8397dc99a3ebdf8fb0941a9b315b644ed16afc9112a9552870c2523f01ff9cafe1aa6e5f9c9018b481eea8638e66a9412d9096b946970f54d71e0a954ae4dee6e68caa30f55c9fc79ba72478c5b1dc1c13e11191ca4d03db7273f719321a82a831f80a9045abc28ded80c350d1146b6304b50843b01f9af6a4adc3113aa764aed5463af111c0f3035df167447b0460da3037ece9db50b31ef5d068d243dbf04fbf8cc19b8025db930343f9f74c2067d102495f10805fbdfc30a60c0af09cfac4b163c7d6b09f5c3cb2abf8a2b9fa74a457ad9f53f41fe376d7c015f41ba630d48ec8d74def000955d6edccfd64a2525ab2d3433b60c2d31edacd8cf8e7754d78babdc284d160eb334cd0acd730e109e8ff24d37ef7c935d51f0d3ec3c7e6e2650aea5f3711504c6201976fd486c97ed0f7bdedac445c6ff6ef7908fdb04535353f2555a42ba64d85f56f49e545b0da96687e4aaa008b16919879f861bfa77fdddd479636738584ee05b5a2afc887eda1bb4de2b2ca5fbc3b3d3d7e6330ca533542a4c338802720de28e0226be58e1771ff2c574b31fd70aa5ecb1aa3c0014da5e1b4bfd4971b16111b7eb34c4b175fcdb26050b0acbbafcad281614e5bb21e6b1885194c9330a4a9fde20218bdc143924730a0ffd8105c1872ff5e38e885c35eb8d50b47bd70bb17ee6891b55efce02d4f12cae4831e922007a22668b7191bd998e9c0d40e5d2c97a0f75ceb33ad35f851c6b6323ee411af75f881bb5bd1a79a70a347b916f8b2aa71a552ec707e6901e097e357c71932bb119f71140e2e0bc30aa3f22554e75af8a1a2b046cc965d4f3332333d99e041ff80092d4d12227c2cc9febaee32fabb0c9fd3196e9652a16cb90cfde7d2384f827a7a8e2cc6da252554096a44a6aac8be6a44b63a0cdcee770aaff9ab3b4e9b8f7f3e383111706104e1c6202e69365d0aa27710e746e18fb0a908c84569a626472e4c0102eca85f873da8835499eb8ae4dcc82c326f45a6763f2b1f3b2f6739053b17064b0f1ee88f959d7d1b328af017aa397a6bbf510c76ee564d55ea9b80d5bfc85c54442347b25cf28e4da7fa86aec6566755d3cdc3eded5efe2851b8a447e1b09ac925545502bd5513ed54dd643b938eddf397476f5ea1c9c1f8f4c80277088326e46305ed3fb5bf6d28b0b2949a28d30483d14deaad4b2757a69efdeeb26d787b165ada87baea6565f14766db5d1e110cb36b96554e77895c61d2de1e9e8290e59572457d38837eaed5aa1ac9e3325cd965bbf2b9ad7ed96fd749ee8e4b6d9ad5b0b59540fb258836b37c25d7ce49a1fb82d599d5bfeb5caa79b0c462bd33cc302a938061568418f9e61cd0da67300bf66f971514981c9cbc3f1a1f4c4cf943abd2b3b15c3517f6b7f2a8654792954b8a6ea6b32d7beaefa3551ad558a070ebb2e1b39d8e7eb5d32f60ac50d8d16db2d5502b99dacf20a0df91f4d3886360ab2ba89baf75599bb04156a0b915e0e3c87f680e961dd30b1e55a49922ede49239a1859bdd48deb836e9987fcc680e93920970dddf6e4c14bebc2a27abf118997858aea70793d3a3d7c76ffe55b256fabc20e66c8160988849d738d6a4cbf16cc9b461b2ad92afef8f5e1e1cdb8390d9653b9a393258685a8eb6fa1ca3289915e3c776c6779d01a41a3467b89dfbaa14b5e6c0b0de306415ab8d7c15a9b9c3c6c7efde9c1e9c1897f950ceb68d34dcb6e6dc66197c25a39bd5d6c9eb72290c55092173d3b83b4cab47aed1d2cd4387085b1c4b65b4a1fed9a3ee865254c6e1f1b18d33889b726e03bd94e1765159961ab99536b7d2563bdd552e4da366adb7f73605e98aad4d03e6061d823af72655cb0695a6680f826a6740f8223fbf81ad8f3dfc01760518d4f2c4a2fdc6a78ca6d5f38ae9a392e6c57736dff361783963abed4f1fe7ecf7fd9f982793fd3fd3fb1c8d36b413f4a3f2649ff397e275cc45a26f5590e642f375e3671e17441bcf3d9eaae2d3072ece64f1e945c467c587b13edbf3d512ae15d58aa7ea237b2aadbbca9afcf503c94fa85ff38008863e100fe093581eda007bb35800060ba48122402fd300b2174687b944de429f6a538100387c62525a42bf8ef4d13655684e55688efc19810c95582c00d16724a29076d8454730cde87b8509d6675492c480f53e32e024163d7d0a0f43af1f22c1b1542019e894d427e952e325d353c3345a009de2fa985ca018dc1dbaa5fae8b31cba960f8f41ecc496e01df9ad54a1957dc59bcabb256f6befeb1f562cada0db7801339b469a52afece7100b3485079e6388aa4742e894c6ba3917818e9939d7963d43646e46e9c52c0d28916baa76a5c177e586974402a67ef34e3827114f6228d4ff4f4fb44aa61322aeaafe2f5e705f3aa0cd124e2565803868a274b79b2d9ac1fbc2c05617760213202484206b1b70f719f056f0df89afbe01ecbf4b6cb941ecbefba3fae65ab95c9b1cbbb87da659c33e1a677fcf7497ce1c0cfb7d5496e71d0a06b9633e9d1218afd3e4e6a26f07a0f4809aed35feec00b5b2b3bde5660bc1193a241e1aecf660233c78860e390f9a6da76882ff200bfd373793d4d786defa1c5367b74eb3fb5fc1cf6d7916f697281b8fd129f14346ff48c957e6d6db2bca5382e36fbc284ff4dfbb05e8349d4ebb4b30c637dd487d6d55f48146118ea14f622139fbee8dafc01bb703055fbc02bf74501b9f34b41d12ac52d1deabafcfe584c88433096078d31de86a59df35b9464cefbe285e118574e75ec01821f2d3e9e6c1da577e38ad6d9c28b88a04ebf8ca3c174ff671937b196b038fbd7b51fde62e86946ba5d3f5adb2b75ad0119bf29a71d52c1ff6b7d0213e23102017d22feb1be83d25f31e9a60987405663e953eefa131283fe58251dc43ef26cfab5c9e0cd1d633f378868683fee796cef56d7d27c9348dd02ffa7ff92cb5b576c76aa379d30a7ecadb1be577fa5ed6ed4041675edf7a2effe4f364b1af7726bba8b899e7a2e790cc27fabea804b8d17752cb5abc962937080d93a9e70bea911b095ce2bb1c0ffe0bab9dc1a2, 0, '', '5de74544bcb57', 'html', 0, 0, 0, 0, 0, 0, 'EDIT');
2,195.10219
14,141
0.954231
e72d0de56bba3e46dd8695fe828d4952e359ddb7
168
js
JavaScript
docs/html/dir_eef1b65bf13081fcc6bae54d485435a8.js
richardrobinson0924/QwiicKeypad
dcb83cc76555cdc709391031a0375ca433c97f53
[ "Unlicense" ]
null
null
null
docs/html/dir_eef1b65bf13081fcc6bae54d485435a8.js
richardrobinson0924/QwiicKeypad
dcb83cc76555cdc709391031a0375ca433c97f53
[ "Unlicense" ]
null
null
null
docs/html/dir_eef1b65bf13081fcc6bae54d485435a8.js
richardrobinson0924/QwiicKeypad
dcb83cc76555cdc709391031a0375ca433c97f53
[ "Unlicense" ]
null
null
null
var dir_eef1b65bf13081fcc6bae54d485435a8 = [ [ "Keypad.cpp", "_keypad_8cpp.html", "_keypad_8cpp" ], [ "QwiicKeypad.h", "_qwiic_keypad_8h_source.html", null ] ];
33.6
61
0.708333
38a79194ae740ad779ba97cec0938832b794731e
1,955
h
C
packages/@lse/core/addon/lse-lib-util/lse/EnumSequence.h
lightsourceengine/LightSourceEngine
bc2d0cc08907f65a900d924d1a0ab19164171cb5
[ "Apache-2.0" ]
null
null
null
packages/@lse/core/addon/lse-lib-util/lse/EnumSequence.h
lightsourceengine/LightSourceEngine
bc2d0cc08907f65a900d924d1a0ab19164171cb5
[ "Apache-2.0" ]
5
2020-07-23T01:09:07.000Z
2020-09-09T05:32:29.000Z
packages/@lse/core/addon/lse-lib-util/lse/EnumSequence.h
lightsourceengine/LightSourceEngine
bc2d0cc08907f65a900d924d1a0ab19164171cb5
[ "Apache-2.0" ]
null
null
null
/* * Copyright (c) 2021 Light Source Software, LLC. 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. */ #pragma once #include <cstdint> // Generates ToString<T>() and FromString<T>() mapping functions for an enum. #define LSE_ENUM_STRING_MAPPING(NAME) \ const char* NAME##ToString(NAME) noexcept; \ NAME NAME##FromString(const char*); \ template <> \ inline const char* ToString<NAME>(NAME value) noexcept { \ return NAME##ToString(value); \ } \ template <> \ inline NAME FromString<NAME>(const char* value) { \ return NAME##FromString(value); \ } // Generates an enum declaration with associates ToString<T>() and FromString<T>() mapping functions. #define LSE_ENUM_SEQ_DECL(NAME, ...) \ enum NAME {__VA_ARGS__}; \ template <> \ constexpr int32_t Count<NAME>() noexcept { \ return internal::CountMacroVariadicArgs<__VA_ARGS__>(); \ } \ LSE_ENUM_STRING_MAPPING(NAME) namespace lse { template<typename T> constexpr int32_t Count() noexcept; template<typename T> const char* ToString(T) noexcept; template<typename T> T FromString(const char*); template<typename T> constexpr bool IsEnum(const int32_t value) noexcept { return value >= 0 && value < Count<T>(); } namespace internal { template<int32_t... xs> constexpr int32_t CountMacroVariadicArgs() noexcept { return sizeof...(xs); } } // namespace internal } // namespace lse
30.076923
118
0.702813
5f853e5f86335256b43c5e989dfbeb4ba0f5964d
165
css
CSS
99-cleanJS-presentation/slides/images/polinet-angular/src/app/styles/07-webcomponents/_news.css
Caballerog/cleancodeJS
0d3822b9a5cb99aafe1ff7cf88efab94437c7b6a
[ "MIT" ]
14
2018-02-19T13:37:26.000Z
2021-12-06T23:17:46.000Z
99-cleanJS-presentation/slides/images/polinet-angular/src/app/styles/07-webcomponents/_news.css
Caballerog/cleancodeJS
0d3822b9a5cb99aafe1ff7cf88efab94437c7b6a
[ "MIT" ]
null
null
null
99-cleanJS-presentation/slides/images/polinet-angular/src/app/styles/07-webcomponents/_news.css
Caballerog/cleancodeJS
0d3822b9a5cb99aafe1ff7cf88efab94437c7b6a
[ "MIT" ]
3
2018-02-24T18:44:44.000Z
2020-01-09T09:05:33.000Z
.c-news .new .message { white-space: normal !important; } .c-news .new { padding: 15px 0px; height: auto; } .c-news{ height: 400px; overflow-y: scroll; }
12.692308
33
0.624242
d9e4d4180e4fa6cea55db39b54742d5bc58d511a
1,083
lua
Lua
rtklua/Accepted/Items/Consumables/meats/ginseng.lua
The-Kingdom-of-The-Winds/RTK-Server
b306c3411af42ea54c6ecaa785cea9ab4e97ff28
[ "Xnet", "X11" ]
1
2021-03-08T06:33:34.000Z
2021-03-08T06:33:34.000Z
rtklua/Accepted/Items/Consumables/meats/ginseng.lua
The-Kingdom-of-The-Winds/RTK-Server
b306c3411af42ea54c6ecaa785cea9ab4e97ff28
[ "Xnet", "X11" ]
null
null
null
rtklua/Accepted/Items/Consumables/meats/ginseng.lua
The-Kingdom-of-The-Winds/RTK-Server
b306c3411af42ea54c6ecaa785cea9ab4e97ff28
[ "Xnet", "X11" ]
3
2020-11-19T22:01:46.000Z
2021-03-16T21:05:37.000Z
ginseng = { use = function(player) local health = 2000 player:sendAction(8, 25) player.attacker = player.ID player:addHealthExtend(health, 0, 0, 0, 0, 0) if player.health == player.maxHealth then player:sendMinitext("You feel satiated.") end end } young_ginseng = { use = function(player) local health = 40 player:sendAction(8, 25) player.healer = player.ID player:addHealthExtend(health, 0, 0, 0, 0, 0) if player.health == player.maxHealth then player:sendMinitext("You feel satiated.") end end } ginseng_piece = { use = function(player) local health = 60 player:sendAction(8, 25) player.healer = player.ID player:addHealthExtend(health, 0, 0, 0, 0, 0) if player.health == player.maxHealth then player:sendMinitext("You feel satiated.") end end } mountain_ginseng = { use = function(player) local health = 10000 player:sendAction(8, 25) player.healer = player.ID player:addHealthExtend(health, 0, 0, 0, 0, 0) if player.health == player.maxHealth then player:sendMinitext("You feel satiated.") end end }
19.339286
47
0.690674
5aad502dff65d07afbd8fb7cb2cb055866b801da
479
asm
Assembly
oeis/133/A133348.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/133/A133348.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/133/A133348.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A133348: Dimensions of certain Lie algebra (see reference for precise definition). ; Submitted by Jon Maiga ; 1,32,462,4224,28314,151008,674817,2617472,9038458,28316288,81662152,219288576,553361016,1322057088,3009057018,6558440064,13748813155,27825992480,54545269350,103848201600,192502703250,348178802400,615628210275,1065899278080,1809869155380 mov $1,1 mov $2,$0 seq $0,107398 ; a(n) = binomial(n+7, 7) * binomial(n+9, 7). add $1,$2 add $1,4 mul $1,$0 mov $0,$1 div $0,180
36.846154
238
0.772443
74acb09c9522eb6a9248fd56350e48190cc3592d
88
js
JavaScript
tests/js/deep2.js
Mark-Simulacrum/amd-bits
4f0ed86d4e05c175aab06968db20d88d0c8182b4
[ "MIT" ]
null
null
null
tests/js/deep2.js
Mark-Simulacrum/amd-bits
4f0ed86d4e05c175aab06968db20d88d0c8182b4
[ "MIT" ]
null
null
null
tests/js/deep2.js
Mark-Simulacrum/amd-bits
4f0ed86d4e05c175aab06968db20d88d0c8182b4
[ "MIT" ]
null
null
null
Bitloader.define(["js/deep1"], function(deep1) { return { "deep1": deep1 }; });
14.666667
48
0.579545
36bab590318df442a99d9d0b5ee1e37a6b774318
36
kt
Kotlin
jps-plugin/testData/incremental/classHierarchyAffected/typeParameterListChanged/AChild.kt
qussarah/declare
c83b764c7394efa3364915d973ae79c4ebed2437
[ "Apache-2.0" ]
45,293
2015-01-01T06:23:46.000Z
2022-03-31T21:55:51.000Z
jps-plugin/testData/incremental/classHierarchyAffected/typeParameterListChanged/AChild.kt
qussarah/declare
c83b764c7394efa3364915d973ae79c4ebed2437
[ "Apache-2.0" ]
3,386
2015-01-12T13:28:50.000Z
2022-03-31T17:48:15.000Z
jps-plugin/testData/incremental/classHierarchyAffected/typeParameterListChanged/AChild.kt
qussarah/declare
c83b764c7394efa3364915d973ae79c4ebed2437
[ "Apache-2.0" ]
6,351
2015-01-03T12:30:09.000Z
2022-03-31T20:46:54.000Z
package foo open class AChild : A()
12
23
0.722222
a1eb3f97b857501f6cb990435f3a2398558cf99c
1,435
h
C
server/mainwindow.h
yang-starry-sky/Reversi
832b897b01bbfc986b7c7c851032e4f710a7f4ff
[ "Apache-2.0" ]
null
null
null
server/mainwindow.h
yang-starry-sky/Reversi
832b897b01bbfc986b7c7c851032e4f710a7f4ff
[ "Apache-2.0" ]
null
null
null
server/mainwindow.h
yang-starry-sky/Reversi
832b897b01bbfc986b7c7c851032e4f710a7f4ff
[ "Apache-2.0" ]
null
null
null
#ifndef MAINWINDOW_H #define MAINWINDOW_H #include "mysql.h" #include "position.h" #include <QWidget> #include "gamethread.h" #include <QCloseEvent> #include <QPushButton> #include <QVBoxLayout> #include <QMutex> #include <QTcpServer> #include <QTcpSocket> #include <QNetworkInterface> class MainWindow : public QWidget { Q_OBJECT public: explicit MainWindow(QWidget *parent = 0); ~MainWindow(); int getThread_id();//获取新开启子线程的线程id private: QTcpServer *tcpServer;//tcp服务器 QList<QTcpSocket*> tcpClient;//客户端连接列表 QTcpSocket *currentClient;//现在连接的客户端 void sendData(QTcpSocket* client,Position *pos,int color,int judgeColor);//向客户端传递数据 MySql *mysql;//数据库 private slots: void NewConnectionSlot();//新建连接信号槽 void disconnectedSlot();//断开连接信号槽 void ReadData();//获取客户端传递的数据 void getBlackPosition(int id,Position * pos,int judgeColor);//从子线程获取棋局信息并返回给黑棋用户 void getWhitePosition(int id,Position * pos,int judgeColor);//从子线程获取棋局信息并返回给白棋用户 void getID(int id);//获取新线程的线程id void getStopID(int id);//获取棋局结束后中止线程的id,从而删去数据库中相关信息 private: GameThread *thread1; GameThread *thread2;//完成棋局逻辑的类的实体 QThread *threadA; QThread *threadB;//movetothread的对象,即运行的子线程 int Thread_id;//保存新建线程的线程Id signals: void sendLocation(int id,int x,int y,int color);//将客户端传入服务器的用户落子信息发送给该用户所在棋局的线程 void startinit1();//对线程1初始化 void startinit2();//对线程2初始化 }; #endif // MAINWINDOW_H
27.596154
87
0.736585
65004332cb733aa8aa9fc8e64faf35799f2ce289
2,158
py
Python
shepherd/blueprints/editor/__init__.py
Systemetric/shepherd
28473503130cddd2c40702240f3deaad3a21e52b
[ "BSD-2-Clause" ]
null
null
null
shepherd/blueprints/editor/__init__.py
Systemetric/shepherd
28473503130cddd2c40702240f3deaad3a21e52b
[ "BSD-2-Clause" ]
8
2017-12-13T15:27:52.000Z
2019-01-27T21:35:14.000Z
shepherd/blueprints/editor/__init__.py
Systemetric/shepherd
28473503130cddd2c40702240f3deaad3a21e52b
[ "BSD-2-Clause" ]
null
null
null
import json import os import os.path as path import re from flask import Blueprint, request blueprint = Blueprint("editor", __name__) robotsrc_path = path.join(os.getcwd(), "robotsrc") if not path.exists(robotsrc_path): os.mkdir(robotsrc_path) main_path = path.join(robotsrc_path, 'main.py') main_file = open(main_path, 'w') main_file.write('# DO NOT DELETE\n') main_file.close() blocks_path = path.join(robotsrc_path, 'blocks.json') @blueprint.route('/') def get_files(): project_paths = [f for f in os.listdir(robotsrc_path) if path.isfile(path.join(robotsrc_path, f)) and (f.endswith('.py') or f.endswith(".xml") or f == "blocks.json") and f != 'main.py'] def read_project(project_path): with open(path.join(robotsrc_path, project_path), 'r') as project_file: content = project_file.read() return { 'filename': project_path, 'content': content } blocks = {} if path.exists(blocks_path): with open(blocks_path, 'r') as blocks_file:# try: blocks = json.load(blocks_file) except ValueError: pass if "requires" not in blocks: blocks["requires"] = [] if "header" not in blocks: blocks["header"] = "" if "footer" not in blocks: blocks["footer"] = "" if "blocks" not in blocks: blocks["blocks"] = [] return json.dumps({ 'main': main_path, 'blocks': blocks, 'projects': list(map(read_project, project_paths)) }) @blueprint.route("/save/<string:filename>", methods=["POST"]) def save_file(filename): dots = len(re.findall("\.", filename)) if dots == 1: with open(path.join(robotsrc_path, filename), 'w') as f: f.write(request.data.decode('utf-8')) return "" @blueprint.route("/delete/<string:filename>", methods=["DELETE"]) def delete_file(filename): if filename == "blocks.json": return "" dots = len(re.findall("\.", filename)) if dots == 1: os.unlink(path.join(robotsrc_path, filename)) return ""
28.394737
88
0.596386
fc875c067551b8d1a269e64390b1063a6b61155d
272
kt
Kotlin
zerofx-view-helpers/src/main/kotlin/io/polymorphicpanda/zerofx/template/helpers/ComponentBuilder.kt
raniejade/zerofx
de039a72c7b9408566bcb09c73046eb0273d74eb
[ "MIT" ]
null
null
null
zerofx-view-helpers/src/main/kotlin/io/polymorphicpanda/zerofx/template/helpers/ComponentBuilder.kt
raniejade/zerofx
de039a72c7b9408566bcb09c73046eb0273d74eb
[ "MIT" ]
null
null
null
zerofx-view-helpers/src/main/kotlin/io/polymorphicpanda/zerofx/template/helpers/ComponentBuilder.kt
raniejade/zerofx
de039a72c7b9408566bcb09c73046eb0273d74eb
[ "MIT" ]
null
null
null
package io.polymorphicpanda.zerofx.template.helpers import io.polymorphicpanda.zerofx.component.Component import javafx.scene.Node /** * @author Ranie Jade Ramiso */ class ComponentBuilder<T: Component<*>>(val component: T): Builder<Node>(component.template.root) { }
24.727273
99
0.779412
f3fafeec23cf3ba9b9db5589818b46cd9b715dfc
252
sql
SQL
db/migrations/20161009122232_etag.sql
csstaub/gas-web
15657841c84f079aa7572e18f2b8578ccf41c241
[ "Apache-2.0" ]
1
2017-12-19T06:24:50.000Z
2017-12-19T06:24:50.000Z
db/migrations/20161009122232_etag.sql
csstaub/gas-web
15657841c84f079aa7572e18f2b8578ccf41c241
[ "Apache-2.0" ]
null
null
null
db/migrations/20161009122232_etag.sql
csstaub/gas-web
15657841c84f079aa7572e18f2b8578ccf41c241
[ "Apache-2.0" ]
null
null
null
-- +goose Up -- SQL in section 'Up' is executed when this migration is applied ALTER TABLE results ADD COLUMN etag VARCHAR(255); -- +goose Down -- SQL section 'Down' is executed when this migration is rolled back ALTER TABLE RESULTS DROP COLUMN etag;
31.5
68
0.753968
b1767520cc698eaa41636570e1a045678e6e0512
5,953
c
C
SOFTWARE/A64-TERES/u-boot_new/arch/arm/cpu/armv8/wine/usb/usbc_dma.c
xloem/DIY-LAPTOP
f2a410706f7a919ac644de073c570629d5601203
[ "Apache-2.0" ]
null
null
null
SOFTWARE/A64-TERES/u-boot_new/arch/arm/cpu/armv8/wine/usb/usbc_dma.c
xloem/DIY-LAPTOP
f2a410706f7a919ac644de073c570629d5601203
[ "Apache-2.0" ]
null
null
null
SOFTWARE/A64-TERES/u-boot_new/arch/arm/cpu/armv8/wine/usb/usbc_dma.c
xloem/DIY-LAPTOP
f2a410706f7a919ac644de073c570629d5601203
[ "Apache-2.0" ]
1
2021-10-31T18:37:47.000Z
2021-10-31T18:37:47.000Z
/* * (C) Copyright 2007-2013 * Allwinner Technology Co., Ltd. <www.allwinnertech.com> * Jerry Wang <wangflord@allwinnertech.com> * * See file CREDITS for list of people who contributed to this * project. * * 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. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, * MA 02111-1307 USA */ #include "usbc_i.h" /* *********************************************************************************** * USBC_Dma_Set_ChannalPara * * Description: * 查询fifo是否为空 * * Arguments: * hUSB : input. USBC_open_otg获得的句柄, 记录了USBC所需要的一些关键数据 * * * Returns: * * note: * 无 * *********************************************************************************** */ int USBC_Dma_Set_ChannalPara(__hdle hUSB, __u32 dma_chan, __u32 trans_dir, __u32 ep_type) { __usbc_otg_t *usbc_otg = (__usbc_otg_t *)hUSB; uint reg_val; if(usbc_otg == NULL) { return -1; } reg_val = readl(usbc_otg->base_addr + USBC_REG_o_DMA_CONFIG + 0x10 * dma_chan); reg_val &= ~((1 << 4) | (0xf << 0)); reg_val |= ((trans_dir & 1) << 4); reg_val |= ((ep_type & 0xf) << 0); writel(reg_val, usbc_otg->base_addr + USBC_REG_o_DMA_CONFIG + 0x10 * dma_chan); return 0; } /* *********************************************************************************** * USBC_Dma_Set_PktLen * * Description: * 查询fifo是否为空 * * Arguments: * hUSB : input. USBC_open_otg获得的句柄, 记录了USBC所需要的一些关键数据 * * * Returns: * * note: * 无 * *********************************************************************************** */ int USBC_Dma_Set_PktLen(__hdle hUSB, __u32 dma_chan, __u32 pkt_len) { __usbc_otg_t *usbc_otg = (__usbc_otg_t *)hUSB; uint reg_val; if(usbc_otg == NULL) { return -1; } reg_val = readl(usbc_otg->base_addr + USBC_REG_o_DMA_CONFIG + 0x10 * dma_chan); reg_val &= ~(0x7ff << 16); //1650 burst len: datawidth is 32bit = 4byte,so burst len = pkt_len/4 //reg_val |= (((pkt_len/4) & 0x7ff) << 16); //1667 burst len : datawidth is 8bit, so burst len = 1byte reg_val |= (((pkt_len) & 0x7ff) << 16); writel(reg_val, usbc_otg->base_addr + USBC_REG_o_DMA_CONFIG + 0x10 * dma_chan); return 0; } /* *********************************************************************************** * USBC_Dma_Start * * Description: * 查询fifo是否为空 * * Arguments: * hUSB : input. USBC_open_otg获得的句柄, 记录了USBC所需要的一些关键数据 * * * Returns: * * note: * 无 * *********************************************************************************** */ int USBC_Dma_Start(__hdle hUSB, __u32 dma_chan, __u32 addr, __u32 pkt_len) { __usbc_otg_t *usbc_otg = (__usbc_otg_t *)hUSB; uint reg_val; if(usbc_otg == NULL) { return -1; } if(pkt_len & 0x03) { return -1; } reg_val = readl(usbc_otg->base_addr + USBC_REG_o_DMA_ENABLE); reg_val |= (1 << (dma_chan & 0xff)); writel(reg_val, usbc_otg->base_addr + USBC_REG_o_DMA_ENABLE); writel(addr, usbc_otg->base_addr + USBC_REG_o_DMA_ADDR + 0x10 * dma_chan); //1650 datawidth is 32 bit.so size=len/4 //writel(pkt_len/4, usbc_otg->base_addr + USBC_REG_o_DMA_SIZE + 0x10 * dma_chan); //1667 datawidth is 8bit writel(pkt_len, usbc_otg->base_addr + USBC_REG_o_DMA_SIZE + 0x10 * dma_chan); reg_val = readl(usbc_otg->base_addr + USBC_REG_o_DMA_CONFIG + 0x10 * dma_chan); reg_val |= (1U << 31); writel(reg_val, usbc_otg->base_addr + USBC_REG_o_DMA_CONFIG + 0x10 * dma_chan); return 0; } /* *********************************************************************************** * USBC_Dma_Int_Stop * * Description: * 查询fifo是否为空 * * Arguments: * hUSB : input. USBC_open_otg获得的句柄, 记录了USBC所需要的一些关键数据 * * * Returns: * * note: * 无 * *********************************************************************************** */ int USBC_Dma_Int_Stop(__hdle hUSB, __u32 dma_chan) { __usbc_otg_t *usbc_otg = (__usbc_otg_t *)hUSB; uint reg_val; if(usbc_otg == NULL) { return -1; } reg_val = readl(usbc_otg->base_addr + USBC_REG_o_DMA_ENABLE); reg_val &= ~(1 << (dma_chan & 0xff)); writel(reg_val, usbc_otg->base_addr + USBC_REG_o_DMA_ENABLE); return 0; } /* *********************************************************************************** * USBC_Dma_Int_Query * * Description: * 查询fifo是否为空 * * Arguments: * hUSB : input. USBC_open_otg获得的句柄, 记录了USBC所需要的一些关键数据 * * * Returns: * * note: * 无 * *********************************************************************************** */ int USBC_Dma_Int_Query(__hdle hUSB) { __usbc_otg_t *usbc_otg = (__usbc_otg_t *)hUSB; if(usbc_otg == NULL) { return -1; } return readl(usbc_otg->base_addr + USBC_REG_o_DMA_STATUS); } /* *********************************************************************************** * USBC_Dma_Int_Clear * * Description: * 查询fifo是否为空 * * Arguments: * hUSB : input. USBC_open_otg获得的句柄, 记录了USBC所需要的一些关键数据 * * * Returns: * * note: * 无 * *********************************************************************************** */ int USBC_Dma_Int_Clear(__hdle hUSB) { __usbc_otg_t *usbc_otg = (__usbc_otg_t *)hUSB; if(usbc_otg == NULL) { return -1; } writel(0xff, usbc_otg->base_addr + USBC_REG_o_DMA_STATUS); return 0; }
24.004032
89
0.541408
bb226161901af664c28ccb3c5993de06b714beb6
290
rb
Ruby
spec/ruby/eof_exception_bytes_spec.rb
DarkShadow44/kaitai_struct_tests
4bb13cef82965cca66dda2eb2b77cd64e9f70a12
[ "MIT" ]
11
2018-04-01T03:58:15.000Z
2021-08-14T09:04:55.000Z
spec/ruby/eof_exception_bytes_spec.rb
DarkShadow44/kaitai_struct_tests
4bb13cef82965cca66dda2eb2b77cd64e9f70a12
[ "MIT" ]
73
2016-07-20T10:27:15.000Z
2020-12-17T18:56:46.000Z
spec/ruby/eof_exception_bytes_spec.rb
DarkShadow44/kaitai_struct_tests
4bb13cef82965cca66dda2eb2b77cd64e9f70a12
[ "MIT" ]
37
2016-08-15T08:25:56.000Z
2021-08-28T14:48:46.000Z
# Autogenerated from KST: please remove this line if doing any edits by hand! require 'eof_exception_bytes' RSpec.describe EofExceptionBytes do it 'parses test properly' do expect { r = EofExceptionBytes.from_file('src/term_strz.bin') }.to raise_error(EOFError) end end
24.166667
77
0.744828